Update app/llm.py
Browse files- app/llm.py +2 -1
app/llm.py
CHANGED
|
@@ -111,7 +111,8 @@ async def generate(gen:GenModel):#, user: schemas.BaseUser = fastapi.Depends(cur
|
|
| 111 |
],
|
| 112 |
temperature = gen.temperature,
|
| 113 |
seed= gen.seed,
|
| 114 |
-
|
|
|
|
| 115 |
#echo=True
|
| 116 |
)
|
| 117 |
"""
|
|
|
|
| 111 |
],
|
| 112 |
temperature = gen.temperature,
|
| 113 |
seed= gen.seed,
|
| 114 |
+
chat_format="llama-2",
|
| 115 |
+
stream=True,
|
| 116 |
#echo=True
|
| 117 |
)
|
| 118 |
"""
|