moriire commited on
Commit
2e8b1ec
·
verified ·
1 Parent(s): ed1e95d

Update app/llm.py

Browse files
Files changed (1) hide show
  1. 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 medical AI chat assistant. Help as much as you can.Also continuously ask for possible symptoms in order to atat a conclusive ailment or sickness and possible solutions.Remember, response in English."
 
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