umangchaudhry commited on
Commit
ddda9ec
·
1 Parent(s): bb4a3df

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +14 -4
app.py CHANGED
@@ -20,7 +20,15 @@ def get_api_key():
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,7 +45,7 @@ def respond(message, chat_history, model_type):
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})
@@ -67,15 +75,17 @@ with gr.Blocks() as demo:
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")
73
  clear = gr.Button("Clear")
74
 
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, inputs = [msg, chatbot, model_selection], outputs = [msg, chatbot])
79
  clear.click(lambda: None, None, chatbot, queue=False)
80
 
81
  demo.launch()
 
20
  api_key = os.getenv("OPENAI_API_KEY")
21
  return api_key
22
 
23
+ def set_model(model):
24
+ os.environ["model_type"] = model
25
+ return f"Your API Key has been set to: {model}"
26
+
27
+ def get_model():
28
+ model = os.getenv("model_type")
29
+ return model
30
+
31
+ def respond(message, chat_history):
32
 
33
  # Get embeddings
34
  embeddings = OpenAIEmbeddings()
 
45
  chat_history = [(chat_history[0][0], chat_history[0][1])]
46
 
47
  # Create ChatOpenAI and ConversationalRetrievalChain
48
+ model = ChatOpenAI(model=get_model())
49
  qa = ConversationalRetrievalChain.from_llm(model, retriever)
50
 
51
  bot_message = qa({"question": message, "chat_history": chat_history})
 
75
  model_selection = gr.Dropdown(
76
  ["gpt-3.5-turbo", "gpt-4"], label="Model Selection", info="Please ensure you provide the API Key that corresponds to the Model you select!"
77
  ),
78
+ model_submit_button = gr.Button("Submit Model Selection")
79
  api_print = gr.Textbox(label = "OpenAI API Key - Please ensure the API Key is set correctly")
80
  chatbot = gr.Chatbot(label="ChatGPT Powered Coding Assistant")
81
  msg = gr.Textbox(label="User Prompt", placeholder="Your Query Here")
82
  clear = gr.Button("Clear")
83
 
84
+ api_submit_button.click(set_api_key, inputs=model_selection)
85
+ model_submit_button.click(set_model, inputs=api_input, outputs=api_key_status)
86
  api_reset_button.click(reset_api_key, outputs=api_key_status)
87
  api_check_button.click(get_api_key, outputs=api_print)
88
+ msg.submit(respond, inputs = [msg, chatbot], outputs = [msg, chatbot])
89
  clear.click(lambda: None, None, chatbot, queue=False)
90
 
91
  demo.launch()