Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -1,81 +1,56 @@
|
|
1 |
import streamlit as st
|
2 |
import openai
|
3 |
-
import os
|
4 |
|
5 |
-
#
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
|
|
|
|
12 |
|
13 |
-
# Function to
|
14 |
-
def
|
15 |
-
openai.api_key = api_key
|
16 |
try:
|
17 |
-
|
18 |
-
model=
|
19 |
messages=[{"role": "user", "content": prompt}]
|
20 |
)
|
21 |
-
return
|
22 |
-
except openai.
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
except openai.ServiceUnavailableError as e:
|
32 |
-
st.error(f"OpenAI Service Unavailable Error with {model_name}: {e}")
|
33 |
-
return None
|
34 |
-
except Exception as e: # Catch any other exception
|
35 |
-
st.error(f"An unexpected error occurred with {model_name}: {e}")
|
36 |
return None
|
37 |
|
38 |
-
#
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
# Define model priority
|
61 |
-
models = ["gpt-4", "gpt-3.5-turbo"] # Add more models as needed
|
62 |
-
|
63 |
-
# Get API key
|
64 |
-
api_key = get_api_key()
|
65 |
-
if not api_key:
|
66 |
-
return
|
67 |
-
|
68 |
-
response = None
|
69 |
-
for model in models:
|
70 |
-
response = generate_response(prompt, model, api_key)
|
71 |
-
if response:
|
72 |
-
break # If a response is generated, break out of loop.
|
73 |
|
74 |
-
|
75 |
-
|
76 |
-
st.session_state.messages.append({"role": "assistant", "content": response})
|
77 |
-
with st.chat_message("assistant"):
|
78 |
-
st.markdown(response)
|
79 |
-
|
80 |
-
if __name__ == "__main__":
|
81 |
-
main()
|
|
|
1 |
import streamlit as st
|
2 |
import openai
|
|
|
3 |
|
4 |
+
# Set up the OpenAI API key
|
5 |
+
openai.api_key = st.secrets['API_KEY']
|
6 |
+
|
7 |
+
# Define the models in order of preference
|
8 |
+
MODELS = ["gpt-4", "gpt-3.5-turbo", "gpt-3.5-turbo-16k"]
|
9 |
+
|
10 |
+
# Initialize session state to store conversation history
|
11 |
+
if "conversation" not in st.session_state:
|
12 |
+
st.session_state.conversation = []
|
13 |
|
14 |
+
# Function to get a response from the OpenAI API
|
15 |
+
def get_chat_response(prompt, model_index=0):
|
|
|
16 |
try:
|
17 |
+
response = openai.ChatCompletion.create(
|
18 |
+
model=MODELS[model_index],
|
19 |
messages=[{"role": "user", "content": prompt}]
|
20 |
)
|
21 |
+
return response.choices[0].message['content']
|
22 |
+
except openai.error.RateLimitError:
|
23 |
+
if model_index + 1 < len(MODELS):
|
24 |
+
st.warning(f"Quota exceeded for {MODELS[model_index]}. Switching to {MODELS[model_index + 1]}.")
|
25 |
+
return get_chat_response(prompt, model_index + 1)
|
26 |
+
else:
|
27 |
+
st.error("All models have exceeded their quota. Please try again later.")
|
28 |
+
return None
|
29 |
+
except Exception as e:
|
30 |
+
st.error(f"An error occurred: {e}")
|
|
|
|
|
|
|
|
|
|
|
31 |
return None
|
32 |
|
33 |
+
# Streamlit UI
|
34 |
+
st.title("ChatGPT with Model Fallback")
|
35 |
+
|
36 |
+
# Display previous conversation
|
37 |
+
st.write("### Conversation History")
|
38 |
+
for message in st.session_state.conversation:
|
39 |
+
st.write(f"**{message['role']}**: {message['content']}")
|
40 |
+
|
41 |
+
# User input
|
42 |
+
user_input = st.text_input("You: ", "")
|
43 |
+
|
44 |
+
if user_input:
|
45 |
+
# Add user input to conversation history
|
46 |
+
st.session_state.conversation.append({"role": "User", "content": user_input})
|
47 |
+
|
48 |
+
# Get response from the model
|
49 |
+
response = get_chat_response(user_input)
|
50 |
+
|
51 |
+
if response:
|
52 |
+
# Add model response to conversation history
|
53 |
+
st.session_state.conversation.append({"role": "Assistant", "content": response})
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
54 |
|
55 |
+
# Display the response
|
56 |
+
st.write(f"**Assistant**: {response}")
|
|
|
|
|
|
|
|
|
|
|
|