fixed the RAg in test pipeline issue

This commit is contained in:
belviskhoremk
2026-04-26 18:51:48 +00:00
parent 205d9d7901
commit 97a501097d
14 changed files with 249 additions and 57 deletions

View File

@@ -296,7 +296,7 @@ def _format_chatbot(chatbot: dict, supabase) -> ChatbotResponse:
name=chatbot["name"],
description=chatbot.get("description"),
system_prompt=chatbot.get("system_prompt"),
model=chatbot.get("model", "accounts/fireworks/models/kimi-k2-instruct-0905"),
model=chatbot.get("model", "accounts/fireworks/models/kimi-k2-instruct"),
temperature=chatbot.get("temperature", 0.7),
max_tokens=chatbot.get("max_tokens", 1000),
primary_color=chatbot.get("primary_color", "#6366f1"),