Spaces:
Runtime error
Runtime error
update the layout - height and width
Browse files
app.py
CHANGED
@@ -102,8 +102,8 @@ Assistant: <utterance>
|
|
102 |
In this app, you can explore the outputs of a gpt-3.5-turbo LLM.
|
103 |
"""
|
104 |
|
105 |
-
with gr.Blocks(css = """#col_container {width:
|
106 |
-
#chatbot {height:
|
107 |
gr.HTML(title)
|
108 |
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>''')
|
109 |
with gr.Column(elem_id = "col_container"):
|
|
|
102 |
In this app, you can explore the outputs of a gpt-3.5-turbo LLM.
|
103 |
"""
|
104 |
|
105 |
+
with gr.Blocks(css = """#col_container {width: 1000px; margin-left: auto; margin-right: auto;}
|
106 |
+
#chatbot {height: 800px; overflow: auto;}""") as demo:
|
107 |
gr.HTML(title)
|
108 |
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>''')
|
109 |
with gr.Column(elem_id = "col_container"):
|