fixed bugs

This commit is contained in:
belviskhoremk
2026-02-22 23:46:16 +00:00
parent 88ca23adde
commit 6fc607e32c
7 changed files with 195 additions and 10 deletions

View File

@@ -98,7 +98,7 @@ class ChatbotCreate(BaseModel):
name: str = Field(min_length=2, max_length=100)
description: Optional[str] = None
system_prompt: Optional[str] = None
model: str = "accounts/fireworks/models/llama-v3p1-70b-instruct"
model: str = "accounts/fireworks/models/kimi-k2-instruct-0905"
temperature: float = Field(default=0.7, ge=0.0, le=2.0)
max_tokens: int = Field(default=1000, ge=100, le=8000)
primary_color: str = "#6366f1"