Skip to content

Commit a7d1625

Browse files
Update webui.py
1 parent 31f56b5 commit a7d1625

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

webui.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -294,7 +294,7 @@ def create_ui(theme_name="Ocean"):
294294
with gr.TabItem("🔧 LLM Configuration", id=2):
295295
with gr.Group():
296296
llm_provider = gr.Dropdown(
297-
["anthropic", "openai", "gemini", "azure_openai", "deepseek"],
297+
["anthropic", "openai", "gemini", "azure_openai", "deepseek", "ollama"],
298298
label="LLM Provider",
299299
value="gemini",
300300
info="Select your preferred language model provider"
@@ -457,7 +457,7 @@ def main():
457457
parser = argparse.ArgumentParser(description="Gradio UI for Browser Agent")
458458
parser.add_argument("--ip", type=str, default="127.0.0.1", help="IP address to bind to")
459459
parser.add_argument("--port", type=int, default=7788, help="Port to listen on")
460-
parser.add_argument("--theme", type=str, default="Citrus", choices=theme_map.keys(), help="Theme to use for the UI")
460+
parser.add_argument("--theme", type=str, default="Ocean", choices=theme_map.keys(), help="Theme to use for the UI")
461461
args = parser.parse_args()
462462

463463
# Create the UI with the specified theme

0 commit comments

Comments
 (0)