Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -2,23 +2,55 @@ import os
|
|
2 |
import streamlit as st
|
3 |
from groq import Groq
|
4 |
|
5 |
-
client = Groq(
|
6 |
-
api_key=os.environ.get("GROQ_API_KEY"),
|
7 |
-
)
|
8 |
|
9 |
-
|
10 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
11 |
messages=[
|
12 |
{
|
13 |
"role": "user",
|
14 |
-
"content":
|
15 |
}
|
16 |
],
|
17 |
model="mixtral-8x7b-32768",
|
18 |
)
|
19 |
-
|
20 |
-
|
21 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
22 |
|
23 |
|
24 |
|
|
|
2 |
import streamlit as st
|
3 |
from groq import Groq
|
4 |
|
|
|
|
|
|
|
5 |
|
6 |
+
def make_call(api):
|
7 |
+
"""Calls the Groq API (assuming API key auth) and handles potential errors."""
|
8 |
+
try:
|
9 |
+
client = Groq(
|
10 |
+
api_key=api,
|
11 |
+
) # Configure the model with the API key
|
12 |
+
query = st.text_input("Enter your query")
|
13 |
+
prmptquery= f"give the answer of given query in context to bhagwat geeta: {query}"
|
14 |
+
chat_completion = client.chat.completions.create(
|
15 |
messages=[
|
16 |
{
|
17 |
"role": "user",
|
18 |
+
"content": prmptquery,
|
19 |
}
|
20 |
],
|
21 |
model="mixtral-8x7b-32768",
|
22 |
)
|
23 |
+
# print(response.text) # Return the response for further processing
|
24 |
+
return chat_completion.choices[0].message.content
|
25 |
+
except Exception as e:
|
26 |
+
print(f"API call failed for key {api_key}: {e}")
|
27 |
+
return None # Indicate failur
|
28 |
+
|
29 |
+
apis = [
|
30 |
+
api1 = os.environ.get("GROQ_API_KEY"),
|
31 |
+
# api1 = os.environ.get("GROQ_API_KEY"),
|
32 |
+
# api1 = os.environ.get("GROQ_API_KEY"),
|
33 |
+
# api1 = os.environ.get("GROQ_API_KEY"),
|
34 |
+
# api1 = os.environ.get("GROQ_API_KEY"),
|
35 |
+
# api1 = os.environ.get("GROQ_API_KEY"),
|
36 |
+
]
|
37 |
+
|
38 |
+
# Loop indefinitely
|
39 |
+
data = None
|
40 |
+
while True: # Loop indefinitely
|
41 |
+
for api in apis:
|
42 |
+
data = make_call(api)
|
43 |
+
if data: # Check for a successful response
|
44 |
+
st.write(chat_completion.choices[0].message.content)
|
45 |
+
break # Exit both the for loop and while loop
|
46 |
+
else:
|
47 |
+
st.write(f"Failed to retrieve data from key {api_key}.")
|
48 |
+
if data: # If a successful response was found, break the outer while loop
|
49 |
+
break
|
50 |
+
|
51 |
+
|
52 |
+
|
53 |
+
# print(chat_completion)
|
54 |
|
55 |
|
56 |
|