Geinji commited on
Commit
22caee5
·
verified ·
1 Parent(s): 649b106

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +12 -9
app.py CHANGED
@@ -1,7 +1,13 @@
 
1
  import requests
 
 
 
 
2
 
3
- def get_groq_response(prompt, api_key):
4
- url = "https://api.groq.com/inference" # Replace with actual Groq API endpoint
 
5
  headers = {"Authorization": f"Bearer {api_key}", "Content-Type": "application/json"}
6
  data = {"input": prompt}
7
 
@@ -11,11 +17,8 @@ def get_groq_response(prompt, api_key):
11
  else:
12
  return f"Error: {response.status_code}, {response.text}"
13
 
14
-
15
- import streamlit as st
16
-
17
  st.title("Groq API Chatbot")
18
- api_key = st.text_input("Enter Groq API Key", type="password")
19
 
20
  if "conversation" not in st.session_state:
21
  st.session_state.conversation = []
@@ -23,11 +26,11 @@ if "conversation" not in st.session_state:
23
  user_input = st.text_input("You: ", "")
24
 
25
  if st.button("Send"):
26
- if user_input and api_key:
27
  st.session_state.conversation.append(f"You: {user_input}")
28
 
29
- # Get the response from Groq API
30
- response = get_groq_response(user_input, api_key)
31
  st.session_state.conversation.append(f"Bot: {response}")
32
 
33
  # Display the conversation history
 
1
+ import streamlit as st
2
  import requests
3
+ import os
4
+
5
+ # Retrieve API key from environment variables
6
+ api_key = st.secrets["groq_api_key"]
7
 
8
+ # Function to interact with Groq API
9
+ def get_groq_response(prompt):
10
+ url = "https://api.groq.com/inference" # Replace with the actual Groq API endpoint
11
  headers = {"Authorization": f"Bearer {api_key}", "Content-Type": "application/json"}
12
  data = {"input": prompt}
13
 
 
17
  else:
18
  return f"Error: {response.status_code}, {response.text}"
19
 
20
+ # Streamlit app code
 
 
21
  st.title("Groq API Chatbot")
 
22
 
23
  if "conversation" not in st.session_state:
24
  st.session_state.conversation = []
 
26
  user_input = st.text_input("You: ", "")
27
 
28
  if st.button("Send"):
29
+ if user_input:
30
  st.session_state.conversation.append(f"You: {user_input}")
31
 
32
+ # Get response from Groq API
33
+ response = get_groq_response(user_input)
34
  st.session_state.conversation.append(f"Bot: {response}")
35
 
36
  # Display the conversation history