Update app/llm.py
Browse files- app/llm.py +2 -1
app/llm.py
CHANGED
@@ -89,7 +89,8 @@ async def chat(chatm:ChatModel):#, user: schemas.BaseUser = fastapi.Depends(curr
|
|
89 |
question = chatm.question,
|
90 |
context = chatm.system,
|
91 |
pred = onnx_qa(question, context)
|
92 |
-
|
|
|
93 |
"""
|
94 |
#chatm.system = chatm.system.format("")#user.email)
|
95 |
try:
|
|
|
89 |
question = chatm.question,
|
90 |
context = chatm.system,
|
91 |
pred = onnx_qa(question, context)
|
92 |
+
print("pred")
|
93 |
+
return ""
|
94 |
"""
|
95 |
#chatm.system = chatm.system.format("")#user.email)
|
96 |
try:
|