Spaces:
Runtime error
Runtime error
Dagfinn1962
commited on
Commit
•
d6e41d6
1
Parent(s):
b8aa4ab
Update app.py
Browse files
app.py
CHANGED
@@ -113,9 +113,9 @@ def call_inf_server(prompt, openai_key):
|
|
113 |
return response
|
114 |
|
115 |
with gr.Blocks(theme=gr.themes.Glass(primary_hue=gr.themes.colors.blue, secondary_hue=gr.themes.colors.lime)) as demo:
|
116 |
-
|
117 |
with gr.Row():
|
118 |
-
|
119 |
# to do: change to openaikey input for public release
|
120 |
openai_key = gr.Textbox(
|
121 |
label="OpenAI Key",
|
|
|
113 |
return response
|
114 |
|
115 |
with gr.Blocks(theme=gr.themes.Glass(primary_hue=gr.themes.colors.blue, secondary_hue=gr.themes.colors.lime)) as demo:
|
116 |
+
conversation = Chat()
|
117 |
with gr.Row():
|
118 |
+
with gr.Column():
|
119 |
# to do: change to openaikey input for public release
|
120 |
openai_key = gr.Textbox(
|
121 |
label="OpenAI Key",
|