ghsambit commited on
Commit
a518e73
·
verified ·
1 Parent(s): ab15f3d

Update main.py

Browse files
Files changed (1) hide show
  1. main.py +1 -2
main.py CHANGED
@@ -1,4 +1,3 @@
1
-
2
  import gradio as gr
3
  from app import ask_ai
4
 
@@ -20,7 +19,7 @@ with gr.Blocks() as demo:
20
  gr.ChatInterface(
21
  fn=ask_ai,
22
  title="Sambit AI 🤖 — Powered by Acrilc",
23
- chatbot=gr.Chatbot(type="messages"),
24
  description="Ask anything. Sambit AI uses Together's Mixtral 8x7B model."
25
  )
26
 
 
 
1
  import gradio as gr
2
  from app import ask_ai
3
 
 
19
  gr.ChatInterface(
20
  fn=ask_ai,
21
  title="Sambit AI 🤖 — Powered by Acrilc",
22
+ chatbot=gr.Chatbot(), # ✅ FIXED: Removed unsupported 'type'
23
  description="Ask anything. Sambit AI uses Together's Mixtral 8x7B model."
24
  )
25