Paul-Louis Pröve commited on
Commit
b597732
·
1 Parent(s): fddb270
Files changed (2) hide show
  1. .gitignore +1 -0
  2. app.py +1 -0
.gitignore CHANGED
@@ -1 +1,2 @@
1
  .env
 
 
1
  .env
2
+ *.pyc
app.py CHANGED
@@ -10,6 +10,7 @@ openai.api_key = os.getenv("OPENAI_API_KEY")
10
  CSS = """
11
  .contain { display: flex; flex-direction: column; }
12
  .gradio-container { height: 100vh !important; }
 
13
  #component-0 { height: 100% !important; }
14
  #component-1 { height: 100% !important; }
15
  #chatbot { flex-grow: 1 !important; overflow: auto;}
 
10
  CSS = """
11
  .contain { display: flex; flex-direction: column; }
12
  .gradio-container { height: 100vh !important; }
13
+ .main { height: 100vh !important; }
14
  #component-0 { height: 100% !important; }
15
  #component-1 { height: 100% !important; }
16
  #chatbot { flex-grow: 1 !important; overflow: auto;}