umangchaudhry commited on
Commit
25fbfb3
·
1 Parent(s): 942860c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -4
app.py CHANGED
@@ -46,6 +46,9 @@ def respond(message, chat_history):
46
  return "", chat_history
47
 
48
  with gr.Blocks() as demo:
 
 
 
49
  with gr.Tab("OpenAI API Key Submission"):
50
  api_input = gr.Textbox(label = "API Key",
51
  placeholder = "Please provide your OpenAI API key here.")
@@ -67,9 +70,5 @@ with gr.Blocks() as demo:
67
  api_check_button.click(get_api_key, outputs=api_print)
68
  msg.submit(respond, [msg, chatbot], [msg, chatbot])
69
  clear.click(lambda: None, None, chatbot, queue=False)
70
-
71
- title = "ChatGPT Powered Coding Assistant"
72
- description = "This is a Gradio app powered by ChatGPT. You can submit your OpenAI API key and use the chatbot to get assistance for your coding questions. tab. \n2. 1. Enter your OpenAI API key in the 'OpenAI API Key Submission' tab.\n2. Click 'Submit' to set your API key.\n3. Go to the 'Coding Assistant' tab. Check that your key was set correctly and then provide your prompt.\n4."
73
-
74
 
75
  demo.launch()
 
46
  return "", chat_history
47
 
48
  with gr.Blocks() as demo:
49
+
50
+ gr.Markdown("This Gradio app is powered by ChatGPT and LangChain. You can submit your OpenAI API key and use the chatbot to get assistance for your coding questions. This chatbot can also provide assistance coding with LangChain. tab.\n2. 1. Enter your OpenAI API key in the 'OpenAI API Key Submission' tab.\n2. Click 'Submit' to set your API key.\n3. Go to the 'Coding Assistant' tab.\n4.")
51
+
52
  with gr.Tab("OpenAI API Key Submission"):
53
  api_input = gr.Textbox(label = "API Key",
54
  placeholder = "Please provide your OpenAI API key here.")
 
70
  api_check_button.click(get_api_key, outputs=api_print)
71
  msg.submit(respond, [msg, chatbot], [msg, chatbot])
72
  clear.click(lambda: None, None, chatbot, queue=False)
 
 
 
 
73
 
74
  demo.launch()