saneowl commited on
Commit
0b81ef5
·
verified ·
1 Parent(s): 69f09c6

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -20,7 +20,7 @@ def get_ai_response(message, history):
20
  messages.append({"role": "user", "content": message})
21
 
22
  payload = {
23
- "model": "RekaAI/reka-flash-3",
24
  "messages": messages,
25
  "stream": False,
26
  "max_tokens": 10000,
@@ -89,10 +89,10 @@ summary { cursor: pointer; color: #70a9e6; }
89
  .reasoning-content { padding: 10px; margin-top: 5px; background-color: #404040; border-radius: 5px; }
90
  """
91
 
92
- with gr.Blocks(css=custom_css, title="Reka Flash 3") as demo:
93
  with gr.Column():
94
- gr.Markdown("## Reka Flash 3")
95
- gr.Markdown("This assistant shows reasoning in collapsible sections.")
96
  chatbot = gr.Chatbot(elem_id="chatbot", render_markdown=False, bubble_full_width=True)
97
  with gr.Row():
98
  message = gr.Textbox(placeholder="Type your message...", show_label=False, container=False)
 
20
  messages.append({"role": "user", "content": message})
21
 
22
  payload = {
23
+ "model": "unsloth/Mistral-Small-24B-Instruct-2501",
24
  "messages": messages,
25
  "stream": False,
26
  "max_tokens": 10000,
 
89
  .reasoning-content { padding: 10px; margin-top: 5px; background-color: #404040; border-radius: 5px; }
90
  """
91
 
92
+ with gr.Blocks(css=custom_css, title="Mistral Small 24B-Instruct 2501 Demo") as demo:
93
  with gr.Column():
94
+ gr.Markdown("#Mistral Small 24B-Instruct 2501 Demo#")
95
+ gr.Markdown("")
96
  chatbot = gr.Chatbot(elem_id="chatbot", render_markdown=False, bubble_full_width=True)
97
  with gr.Row():
98
  message = gr.Textbox(placeholder="Type your message...", show_label=False, container=False)