Spaces:
Runtime error
Runtime error
Dagfinn1962
commited on
Commit
•
7651b2f
1
Parent(s):
d57b019
Update app.py
Browse files
app.py
CHANGED
@@ -112,9 +112,16 @@ def call_inf_server(prompt, openai_key):
|
|
112 |
|
113 |
|
114 |
with gr.Blocks(
|
115 |
-
theme=gr.themes.
|
116 |
-
|
|
|
|
|
|
|
|
|
|
|
117 |
) as demo:
|
|
|
|
|
118 |
gr.Markdown(
|
119 |
"""<h1><center>Chat with gpt-3.5-turbo</center></h1>
|
120 |
This is a lightweight demo of gpt-3.5-turbo conversation completion. It was designed as a template for in-context learning applications to be built on top of.
|
|
|
112 |
|
113 |
|
114 |
with gr.Blocks(
|
115 |
+
theme=gr.themes.Glass(
|
116 |
+
primary_hue="lime",
|
117 |
+
secondary_hue="emerald",
|
118 |
+
neutral_hue="zinc",
|
119 |
+
|
120 |
+
),
|
121 |
+
|
122 |
) as demo:
|
123 |
+
|
124 |
+
|
125 |
gr.Markdown(
|
126 |
"""<h1><center>Chat with gpt-3.5-turbo</center></h1>
|
127 |
This is a lightweight demo of gpt-3.5-turbo conversation completion. It was designed as a template for in-context learning applications to be built on top of.
|