mirror of
https://github.com/QuivrHQ/quivr.git
synced 2024-12-23 23:22:15 +03:00
436e49a5e7
# Description - Chat Module - External Api Secrets Interface, exposed through brain service
35 lines
626 B
Python
35 lines
626 B
Python
from dataclasses import dataclass
|
|
from typing import Optional
|
|
from uuid import UUID
|
|
|
|
from pydantic import BaseModel
|
|
|
|
|
|
class CreateChatHistory(BaseModel):
|
|
chat_id: UUID
|
|
user_message: str
|
|
assistant: str
|
|
prompt_id: Optional[UUID]
|
|
brain_id: Optional[UUID]
|
|
|
|
|
|
class QuestionAndAnswer(BaseModel):
|
|
question: str
|
|
answer: str
|
|
|
|
|
|
@dataclass
|
|
class CreateChatProperties:
|
|
name: str
|
|
|
|
def __init__(self, name: str):
|
|
self.name = name
|
|
|
|
|
|
@dataclass
|
|
class ChatUpdatableProperties:
|
|
chat_name: Optional[str] = None
|
|
|
|
def __init__(self, chat_name: Optional[str]):
|
|
self.chat_name = chat_name
|