Dagfinn1962 commited on
Commit
7651b2f
1 Parent(s): d57b019

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +9 -2
app.py CHANGED
@@ -112,9 +112,16 @@ def call_inf_server(prompt, openai_key):
112
 
113
 
114
  with gr.Blocks(
115
- theme=gr.themes.Soft(),
116
- css=".disclaimer {font-variant-caps: all-small-caps;}",
 
 
 
 
 
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.