pablocst commited on
Commit
c76d068
·
1 Parent(s): 828d72d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -106,13 +106,13 @@ In this app, you can explore the outputs of a gpt-3.5-turbo LLM.
106
 
107
  with gr.Blocks(css = """#col_container {width: 1000px; margin-left: auto; margin-right: auto;}
108
  #chatbot {height: 520px; overflow: auto;}
109
- #text_input {height: 100px; margin-left: auto; margin-right: auto;""") as demo:
110
  gr.HTML(title)
111
  gr.HTML('''<center><a href="https://huggingface.co/spaces/ysharma/ChatGPTwithAPI?duplicate=true"><img src="https://bit.ly/3gLdBN6" alt="Duplicate Space"></a>Duplicate the Space and run securely with your OpenAI API Key</center>''')
112
  with gr.Column(elem_id = "col_container"):
113
  openai_api_key = gr.Textbox(type='password', label="Enter your OpenAI API key here")
114
  chatbot = gr.Chatbot(elem_id = "chatbot") #c
115
- with gr.Column(elem_id = "text_input"):
116
  inputs = gr.Textbox(placeholder = "Hi there!", label= "Type an input and press Enter") #t
117
  state = gr.State([]) #s
118
  b1 = gr.Button()
 
106
 
107
  with gr.Blocks(css = """#col_container {width: 1000px; margin-left: auto; margin-right: auto;}
108
  #chatbot {height: 520px; overflow: auto;}
109
+ #texto textarea {height: 100px;""") as demo:
110
  gr.HTML(title)
111
  gr.HTML('''<center><a href="https://huggingface.co/spaces/ysharma/ChatGPTwithAPI?duplicate=true"><img src="https://bit.ly/3gLdBN6" alt="Duplicate Space"></a>Duplicate the Space and run securely with your OpenAI API Key</center>''')
112
  with gr.Column(elem_id = "col_container"):
113
  openai_api_key = gr.Textbox(type='password', label="Enter your OpenAI API key here")
114
  chatbot = gr.Chatbot(elem_id = "chatbot") #c
115
+ with gr.Column(elem_id = "texto"):
116
  inputs = gr.Textbox(placeholder = "Hi there!", label= "Type an input and press Enter") #t
117
  state = gr.State([]) #s
118
  b1 = gr.Button()