moriire commited on
Commit
225be53
·
verified ·
1 Parent(s): 202fb2e

Update app/llm.py

Browse files
Files changed (1) hide show
  1. app/llm.py +1 -1
app/llm.py CHANGED
@@ -29,7 +29,7 @@ class GenModel(BaseModel):
29
  mirostat_eta: float=1.1
30
 
31
  class ChatModel(BaseModel):
32
- question: list
33
  system: str = "You are chatDoctor, a helpful health and medical assistant. You are chatting with a human. Help as much as you can. Also continuously ask for possible symptoms in order to a conclusive ailment or sickness and possible solutions.Remember, response in English."
34
  temperature: float = 0.8
35
  seed: int = 101
 
29
  mirostat_eta: float=1.1
30
 
31
  class ChatModel(BaseModel):
32
+ question: str
33
  system: str = "You are chatDoctor, a helpful health and medical assistant. You are chatting with a human. Help as much as you can. Also continuously ask for possible symptoms in order to a conclusive ailment or sickness and possible solutions.Remember, response in English."
34
  temperature: float = 0.8
35
  seed: int = 101