hadadrjt commited on
Commit
3785aac
·
1 Parent(s): 2404630

o3: Drop fill width.

Browse files

It looks too wide when using an extra-large monitor.

* And mark as limited.

Files changed (1) hide show
  1. app.py +2 -3
app.py CHANGED
@@ -22,7 +22,7 @@ gr.load_chat(
22
  coffee</a></b>.
23
  """, # Project description
24
  chatbot=gr.Chatbot(
25
- label="ChatGPT | o3", # Chatbot title
26
  type="messages", # OpenAI-style messages format
27
  show_copy_button=True, # Allow users to copy responses
28
  scale=1 # Standard display scaling
@@ -36,8 +36,7 @@ gr.load_chat(
36
  ["Explain about quantum computers."]
37
  ], # Provide sample inputs for users to try
38
  cache_examples=False, # Ensure responses always fresh
39
- show_api=False, # Disable Gradio API
40
- fill_width=True # Auto width, adjust to the monitor screen
41
  ).launch(
42
  max_file_size="1mb" # Max image upload size limit
43
  ) # Start the app
 
22
  coffee</a></b>.
23
  """, # Project description
24
  chatbot=gr.Chatbot(
25
+ label="ChatGPT | o3 | LIMITED", # Chatbot title
26
  type="messages", # OpenAI-style messages format
27
  show_copy_button=True, # Allow users to copy responses
28
  scale=1 # Standard display scaling
 
36
  ["Explain about quantum computers."]
37
  ], # Provide sample inputs for users to try
38
  cache_examples=False, # Ensure responses always fresh
39
+ show_api=False # Disable Gradio API
 
40
  ).launch(
41
  max_file_size="1mb" # Max image upload size limit
42
  ) # Start the app