mirror of
https://github.com/StanGirard/quivr.git
synced 2024-12-18 16:11:45 +03:00
74da7dde2d
* 📝 add env variable for crawl * 🐛 make CharQuestion with optional attributes * 💡 make chatQustion config optional
25 lines
606 B
Python
25 lines
606 B
Python
from typing import List, Optional, Tuple
|
|
from uuid import UUID
|
|
|
|
from pydantic import BaseModel
|
|
|
|
|
|
class ChatMessage(BaseModel):
|
|
model: str = "gpt-3.5-turbo-16k"
|
|
question: str
|
|
# A list of tuples where each tuple is (speaker, text)
|
|
history: List[Tuple[str, str]]
|
|
temperature: float = 0.0
|
|
max_tokens: int = 256
|
|
use_summarization: bool = False
|
|
chat_id: Optional[UUID] = None
|
|
chat_name: Optional[str] = None
|
|
|
|
|
|
class ChatQuestion(BaseModel):
|
|
question: str
|
|
model: Optional[str]
|
|
temperature: Optional[float]
|
|
max_tokens: Optional[int]
|
|
brain_id: Optional[UUID]
|