moriire commited on
Commit
b16963c
·
verified ·
1 Parent(s): 185d061

Update app/llm.py

Browse files
Files changed (1) hide show
  1. 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
- return pred
 
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: