Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -1,3 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
import streamlit as st
|
2 |
|
3 |
st.title("Groq API Chatbot")
|
|
|
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 |
+
|
8 |
+
response = requests.post(url, headers=headers, json=data)
|
9 |
+
if response.status_code == 200:
|
10 |
+
return response.json().get("output", "No response")
|
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")
|