TejAndrewsACC commited on
Commit
8c87c27
·
verified ·
1 Parent(s): f4e803d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -20,7 +20,7 @@ def chat_with_o3(user_input, history=None):
20
  messages.append({"role": "user", "content": user_input})
21
 
22
  stream = client.chat.completions.create(
23
- model="deepseek-ai/DeepSeek-R1-Distill-Qwen-1.5B",
24
  messages=messages,
25
  temperature=0.5,
26
  max_tokens=2048,
@@ -36,8 +36,8 @@ def chat_with_o3(user_input, history=None):
36
 
37
  demo = gr.ChatInterface(
38
  fn=chat_with_o3,
39
- title="ACC-o3",
40
- description="ACC-o3 is a powerful model created by the ACC.",
41
  examples=["How many 'r's are in strawberry?", "Tell me about the ACC.", "Who are you?"],
42
  theme="TejAndrewsACC/ACC"
43
  )
 
20
  messages.append({"role": "user", "content": user_input})
21
 
22
  stream = client.chat.completions.create(
23
+ model="deepseek-ai/DeepSeek-R1-Distill-Qwen-32B",
24
  messages=messages,
25
  temperature=0.5,
26
  max_tokens=2048,
 
36
 
37
  demo = gr.ChatInterface(
38
  fn=chat_with_o3,
39
+ title="⚜️🤖ACC-o3-2025🤖⚜️",
40
+ description="ACC-o3 is a powerful model created by the ACC. Expect extremely long response time.",
41
  examples=["How many 'r's are in strawberry?", "Tell me about the ACC.", "Who are you?"],
42
  theme="TejAndrewsACC/ACC"
43
  )