Spaces:
Runtime error
Runtime error
Commit
·
8d68e7b
1
Parent(s):
703f5fa
Update app.py
Browse files
app.py
CHANGED
@@ -20,7 +20,7 @@ def get_api_key():
|
|
20 |
api_key = os.getenv("OPENAI_API_KEY")
|
21 |
return api_key
|
22 |
|
23 |
-
def respond(message, chat_history):
|
24 |
|
25 |
# Get embeddings
|
26 |
embeddings = OpenAIEmbeddings()
|
@@ -37,7 +37,7 @@ def respond(message, chat_history):
|
|
37 |
chat_history = [(chat_history[0][0], chat_history[0][1])]
|
38 |
|
39 |
# Create ChatOpenAI and ConversationalRetrievalChain
|
40 |
-
model = ChatOpenAI(model=
|
41 |
qa = ConversationalRetrievalChain.from_llm(model, retriever)
|
42 |
|
43 |
bot_message = qa({"question": message, "chat_history": chat_history})
|
@@ -64,6 +64,9 @@ with gr.Blocks() as demo:
|
|
64 |
|
65 |
with gr.Tab("Coding Assistant"):
|
66 |
api_check_button = gr.Button("Get API Key")
|
|
|
|
|
|
|
67 |
api_print = gr.Textbox(label = "OpenAI API Key - Please ensure the API Key is set correctly")
|
68 |
chatbot = gr.Chatbot(label="ChatGPT Powered Coding Assistant")
|
69 |
msg = gr.Textbox(label="User Prompt", placeholder="Your Query Here")
|
@@ -72,7 +75,7 @@ with gr.Blocks() as demo:
|
|
72 |
api_submit_button.click(set_api_key, inputs=api_input, outputs=api_key_status)
|
73 |
api_reset_button.click(reset_api_key, outputs=api_key_status)
|
74 |
api_check_button.click(get_api_key, outputs=api_print)
|
75 |
-
msg.submit(respond, [msg, chatbot], [msg, chatbot])
|
76 |
clear.click(lambda: None, None, chatbot, queue=False)
|
77 |
|
78 |
demo.launch()
|
|
|
20 |
api_key = os.getenv("OPENAI_API_KEY")
|
21 |
return api_key
|
22 |
|
23 |
+
def respond(message, chat_history, model_type):
|
24 |
|
25 |
# Get embeddings
|
26 |
embeddings = OpenAIEmbeddings()
|
|
|
37 |
chat_history = [(chat_history[0][0], chat_history[0][1])]
|
38 |
|
39 |
# Create ChatOpenAI and ConversationalRetrievalChain
|
40 |
+
model = ChatOpenAI(model=model_type)
|
41 |
qa = ConversationalRetrievalChain.from_llm(model, retriever)
|
42 |
|
43 |
bot_message = qa({"question": message, "chat_history": chat_history})
|
|
|
64 |
|
65 |
with gr.Tab("Coding Assistant"):
|
66 |
api_check_button = gr.Button("Get API Key")
|
67 |
+
model_selection = gr.Dropdown(
|
68 |
+
["gpt-3.5-turbo", "gpt-4"], label="Model Selection", info="Please ensure you provide the API Key that corresponds to the Model you select!"
|
69 |
+
),
|
70 |
api_print = gr.Textbox(label = "OpenAI API Key - Please ensure the API Key is set correctly")
|
71 |
chatbot = gr.Chatbot(label="ChatGPT Powered Coding Assistant")
|
72 |
msg = gr.Textbox(label="User Prompt", placeholder="Your Query Here")
|
|
|
75 |
api_submit_button.click(set_api_key, inputs=api_input, outputs=api_key_status)
|
76 |
api_reset_button.click(reset_api_key, outputs=api_key_status)
|
77 |
api_check_button.click(get_api_key, outputs=api_print)
|
78 |
+
msg.submit(respond, [msg, chatbot, model_selection], [msg, chatbot])
|
79 |
clear.click(lambda: None, None, chatbot, queue=False)
|
80 |
|
81 |
demo.launch()
|