tommy24 commited on
Commit
e478c1b
·
1 Parent(s): efb55bd

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +9 -6
app.py CHANGED
@@ -636,12 +636,15 @@ def classify(platform, UserInput, Images, Textbox2, Textbox3):
636
  "Authorization": f"Bearer {auth}"
637
  }
638
 
639
- response = requests.post(host, headers=headers, json={
640
- "messages": messages,
641
- "model": model_llm
642
- }).json()
643
-
644
- reply = response["choices"][0]["message"]["content"]
 
 
 
645
  output.append({"Mode": "Chat", "content": reply})
646
 
647
  return output
 
636
  "Authorization": f"Bearer {auth}"
637
  }
638
 
639
+ try:
640
+ response = requests.post(host, headers=headers, json={
641
+ "messages": messages,
642
+ "model": model_llm
643
+ }).json()
644
+
645
+ reply = response["choices"][0]["message"]["content"]
646
+ except:
647
+ reply = "Maximum messages: 15. Please clear your history and Try Again!"
648
  output.append({"Mode": "Chat", "content": reply})
649
 
650
  return output