Update app.py
Browse files
app.py
CHANGED
@@ -79,8 +79,8 @@ async def chat(chatm:ChatModel):
|
|
79 |
st = time()
|
80 |
output = llm_chat.create_chat_completion(
|
81 |
messages = chatm.question,
|
82 |
-
temperature=
|
83 |
-
seed=
|
84 |
#stream=True
|
85 |
)
|
86 |
#print(output)
|
|
|
79 |
st = time()
|
80 |
output = llm_chat.create_chat_completion(
|
81 |
messages = chatm.question,
|
82 |
+
temperature = chatm.temperature,
|
83 |
+
seed = chatm.seed,
|
84 |
#stream=True
|
85 |
)
|
86 |
#print(output)
|