Update app/llm.py
Browse files- app/llm.py +2 -1
app/llm.py
CHANGED
@@ -22,7 +22,8 @@ class GenModel(BaseModel):
|
|
22 |
|
23 |
class ChatModel(BaseModel):
|
24 |
question: list
|
25 |
-
system: str = "You are a helpful
|
|
|
26 |
temperature: float = 0.8
|
27 |
seed: int = 101
|
28 |
mirostat_mode: int=2
|
|
|
22 |
|
23 |
class ChatModel(BaseModel):
|
24 |
question: list
|
25 |
+
system: str = f"You are a helpful AI assistant. You are chatting with a {user.username}. Help as much as you can.
|
26 |
+
#Also continuously ask for possible symptoms in order to atat a conclusive ailment or sickness and possible solutions.Remember, response in English."
|
27 |
temperature: float = 0.8
|
28 |
seed: int = 101
|
29 |
mirostat_mode: int=2
|