adrish commited on
Commit
9bc16b3
·
1 Parent(s): fd5c14b

Fix set_page_config issue

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -144,11 +144,11 @@ def call_hf_inference(
144
  # ---------------------
145
 
146
  def main():
147
- if not authenticate():
148
- st.stop() # or just `return` to end early
149
-
150
  st.set_page_config(page_title="CVI-GPT", layout="centered")
151
  st.title("CVI-GPT: Conversational Interface")
 
 
 
152
 
153
  # ---------------------
154
  # Sidebar: Model & Params
 
144
  # ---------------------
145
 
146
  def main():
 
 
 
147
  st.set_page_config(page_title="CVI-GPT", layout="centered")
148
  st.title("CVI-GPT: Conversational Interface")
149
+
150
+ if not authenticate():
151
+ st.stop() # or just `return` to end early
152
 
153
  # ---------------------
154
  # Sidebar: Model & Params