bentobytes commited on
Commit
02eb8d3
·
1 Parent(s): e779338

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -7,8 +7,9 @@ from dotenv import load_dotenv
7
  load_dotenv()
8
 
9
  openai_api_key=os.getenv('OPENAI_API_KEY')
 
10
 
11
- with gr.Blocks() as demo:
12
  with gr.Row():
13
  collection_name = gr.components.Textbox(
14
  label='Document name')
 
7
  load_dotenv()
8
 
9
  openai_api_key=os.getenv('OPENAI_API_KEY')
10
+ theme = gr.themes.Base()
11
 
12
+ with gr.Blocks(theme=theme) as demo:
13
  with gr.Row():
14
  collection_name = gr.components.Textbox(
15
  label='Document name')