Geinji commited on
Commit
82e6fd4
·
verified ·
1 Parent(s): 8b5f49e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +19 -2
app.py CHANGED
@@ -1,4 +1,21 @@
1
  import streamlit as st
2
 
3
- x = st.slider('Select a value')
4
- st.write(x, 'squared is', x * x)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  import streamlit as st
2
 
3
+ st.title("Groq API Chatbot")
4
+ api_key = st.text_input("Enter Groq API Key", type="password")
5
+
6
+ if "conversation" not in st.session_state:
7
+ st.session_state.conversation = []
8
+
9
+ user_input = st.text_input("You: ", "")
10
+
11
+ if st.button("Send"):
12
+ if user_input and api_key:
13
+ st.session_state.conversation.append(f"You: {user_input}")
14
+
15
+ # Get the response from Groq API
16
+ response = get_groq_response(user_input, api_key)
17
+ st.session_state.conversation.append(f"Bot: {response}")
18
+
19
+ # Display the conversation history
20
+ for message in st.session_state.conversation:
21
+ st.write(message)