Threatthriver commited on
Commit
642bfad
Β·
verified Β·
1 Parent(s): 494e327

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +21 -17
app.py CHANGED
@@ -43,12 +43,13 @@ def chat_with_cerebras(user_input, system_prompt, model, temperature, top_p, max
43
  return response, chain_of_thought, f"Compute Time: {compute_time:.2f} seconds"
44
 
45
  except Exception as e:
46
- return f"Error: {str(e)}", "", "An error occurred. Please check your API key or the Cerebras service."
 
47
 
48
  # Gradio interface
49
  def gradio_ui():
50
  with gr.Blocks() as demo:
51
- gr.Markdown("""# πŸš€ IntellijMind: The Future of AI Chatbots\nExperience the most advanced chatbot for deep insights, chain-of-thought reasoning, and unmatched clarity!""")
52
 
53
  with gr.Row():
54
  with gr.Column(scale=6):
@@ -57,36 +58,39 @@ def gradio_ui():
57
  compute_time = gr.Textbox(label="Compute Time", interactive=False)
58
  chain_of_thought_display = gr.Textbox(label="Chain of Thought", interactive=False, lines=10)
59
 
60
- with gr.Accordion("Advanced Settings", open=False):
61
- system_prompt_input = gr.Textbox(label="System Prompt", value="You are IntellijMind, an advanced AI designed to assist users with detailed insights, problem-solving, and chain-of-thought reasoning.", lines=3)
62
- model_select = gr.Dropdown(label="Model", choices=["llama-3.3-70b", "llama-2-70b"], value="llama-3.3-70b") # Add other model names as required
63
- temperature_slider = gr.Slider(label="Temperature", minimum=0, maximum=2, step=0.1, value=0.2)
64
- top_p_slider = gr.Slider(label="Top P", minimum=0, maximum=1, step=0.01, value=1)
65
- max_tokens_slider = gr.Slider(label="Max Tokens", minimum=50, maximum=2048, step=50, value=1024)
66
-
67
-
68
  user_input = gr.Textbox(label="Type your message", placeholder="Ask me anything...", lines=2)
69
  send_button = gr.Button("Send", variant="primary")
70
  clear_button = gr.Button("Clear Chat")
71
 
72
- def handle_chat(chat_history, user_input, system_prompt, model, temperature, top_p, max_tokens):
73
- chat_history.append((user_input, None))
74
- yield chat_history, "", "Thinking..."
 
 
 
 
 
 
 
 
 
 
 
 
75
 
76
- ai_response, chain_of_thought, compute_info = chat_with_cerebras(user_input, system_prompt, model, temperature, top_p, max_tokens)
77
- chat_history[-1] = (user_input, ai_response)
78
- yield chat_history, chain_of_thought, compute_info
79
 
80
  def clear_chat():
81
  return [], "", ""
82
 
 
83
  send_button.click(
84
  handle_chat,
85
- inputs=[chat_history, user_input, system_prompt_input, model_select, temperature_slider, top_p_slider, max_tokens_slider],
86
  outputs=[chat_history, chain_of_thought_display, compute_time]
87
  )
88
  clear_button.click(clear_chat, outputs=[chat_history, chain_of_thought_display, compute_time])
89
 
 
90
  gr.Markdown("""---\n### 🌟 Features:\n- **Advanced Reasoning**: Chain-of-thought explanations for complex queries.\n- **Real-Time Performance Metrics**: Measure response compute time instantly.\n- **Insightful Chain of Thought**: See the reasoning process behind AI decisions.\n- **User-Friendly Design**: Intuitive chatbot interface with powerful features.\n- **Powered by IntellijMind**: Setting new standards for AI interaction.\n""")
91
 
92
  return demo
 
43
  return response, chain_of_thought, f"Compute Time: {compute_time:.2f} seconds"
44
 
45
  except Exception as e:
46
+ return f"Error: {str(e)}", "", "An error occurred. Please check your API key or the Cerebras service."
47
+
48
 
49
  # Gradio interface
50
  def gradio_ui():
51
  with gr.Blocks() as demo:
52
+ gr.Markdown("""# πŸš€ IntellijMind: The Future of AI Chatbots\nExperience the most advanced chatbot for deep insights and unmatched clarity!""")
53
 
54
  with gr.Row():
55
  with gr.Column(scale=6):
 
58
  compute_time = gr.Textbox(label="Compute Time", interactive=False)
59
  chain_of_thought_display = gr.Textbox(label="Chain of Thought", interactive=False, lines=10)
60
 
 
 
 
 
 
 
 
 
61
  user_input = gr.Textbox(label="Type your message", placeholder="Ask me anything...", lines=2)
62
  send_button = gr.Button("Send", variant="primary")
63
  clear_button = gr.Button("Clear Chat")
64
 
65
+ # Set default values for system prompt, model, etc.
66
+ default_system_prompt = "You are IntellijMind, an advanced AI designed to assist users with detailed insights, problem-solving, and chain-of-thought reasoning."
67
+ default_model = "llama-3.3-70b"
68
+ default_temperature = 0.2
69
+ default_top_p = 1
70
+ default_max_tokens = 1024
71
+
72
+
73
+ def handle_chat(chat_history, user_input):
74
+ chat_history.append((user_input, None)) # Add user message immediately
75
+ yield chat_history, "", "Thinking..."
76
+
77
+ ai_response, chain_of_thought, compute_info = chat_with_cerebras(user_input, default_system_prompt, default_model, default_temperature, default_top_p, default_max_tokens)
78
+ chat_history[-1] = (user_input, ai_response) # Update the chatbot output with AI response
79
+ yield chat_history, chain_of_thought, compute_info
80
 
 
 
 
81
 
82
  def clear_chat():
83
  return [], "", ""
84
 
85
+
86
  send_button.click(
87
  handle_chat,
88
+ inputs=[chat_history, user_input],
89
  outputs=[chat_history, chain_of_thought_display, compute_time]
90
  )
91
  clear_button.click(clear_chat, outputs=[chat_history, chain_of_thought_display, compute_time])
92
 
93
+
94
  gr.Markdown("""---\n### 🌟 Features:\n- **Advanced Reasoning**: Chain-of-thought explanations for complex queries.\n- **Real-Time Performance Metrics**: Measure response compute time instantly.\n- **Insightful Chain of Thought**: See the reasoning process behind AI decisions.\n- **User-Friendly Design**: Intuitive chatbot interface with powerful features.\n- **Powered by IntellijMind**: Setting new standards for AI interaction.\n""")
95
 
96
  return demo