Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -1,4 +1,21 @@
|
|
1 |
import streamlit as st
|
2 |
|
3 |
-
|
4 |
-
st.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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)
|