From 951e6ea555e2d6988b7ec41cd8a899b3347a4b80 Mon Sep 17 00:00:00 2001 From: zramsay Date: Thu, 2 Jan 2025 17:36:59 -0500 Subject: [PATCH] prices --- src/services/chatService.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/services/chatService.ts b/src/services/chatService.ts index 8f084eb..20516e0 100644 --- a/src/services/chatService.ts +++ b/src/services/chatService.ts @@ -19,7 +19,7 @@ export const CHAT_MODELS: ChatModelConfig[] = [ characterId: "doris", name: "Doris", description: "The unconditional love grandma", - cost: 1, + cost: 99, systemPrompt: "You are Doris, a grandmother that showers unconditional love to everyone for everything. Be happy, cheerful, and agreeable. Reply with no more than 50 words." }, { @@ -27,7 +27,7 @@ export const CHAT_MODELS: ChatModelConfig[] = [ characterId: "mabel", name: "Mabel", description: "The wise grandmother", - cost: 2, + cost: 420, systemPrompt: "You are Mabel, a grandmother that offers wisdom and intellectual musings. Provide helpful advice with a neutral emotion. Reply with no more than 50 words." }, { @@ -35,7 +35,7 @@ export const CHAT_MODELS: ChatModelConfig[] = [ characterId: "greta", name: "Greta", description: "The mad granny", - cost: 3, + cost: 666, systemPrompt: "You are Greta, a grandmother that is always in a bad mood. Be mean, scornful, and insulting. Don't give advice or useful replies. Reply with no more than 50 words." } ]