new options
Browse files- src/proxy_lite/app.py +7 -1
src/proxy_lite/app.py
CHANGED
|
@@ -29,7 +29,8 @@ def get_user_config(config_expander):
|
|
| 29 |
"client": {
|
| 30 |
"name": "convergence",
|
| 31 |
"model_id": "convergence-ai/subset-distill-tools-7b-15-02-2025",
|
| 32 |
-
"
|
|
|
|
| 33 |
},
|
| 34 |
},
|
| 35 |
},
|
|
@@ -62,6 +63,11 @@ def get_user_config(config_expander):
|
|
| 62 |
)
|
| 63 |
|
| 64 |
with col2:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 65 |
config["environment"]["screenshot_delay"] = st.slider(
|
| 66 |
"Screenshot Delay (seconds)",
|
| 67 |
min_value=0.5,
|
|
|
|
| 29 |
"client": {
|
| 30 |
"name": "convergence",
|
| 31 |
"model_id": "convergence-ai/subset-distill-tools-7b-15-02-2025",
|
| 32 |
+
"model_id": "convergence-ai/proxy-lite",
|
| 33 |
+
"api_base": "https://convergence-ai-demo-api.hf.space/v1",
|
| 34 |
},
|
| 35 |
},
|
| 36 |
},
|
|
|
|
| 63 |
)
|
| 64 |
|
| 65 |
with col2:
|
| 66 |
+
config["environment"]["homepage"] = st.text_input(
|
| 67 |
+
"VLLM Server URL",
|
| 68 |
+
value=config["solver"]["agent"]["client"]["api_base"],
|
| 69 |
+
help="URL of a vllm server running proxy-lite",
|
| 70 |
+
)
|
| 71 |
config["environment"]["screenshot_delay"] = st.slider(
|
| 72 |
"Screenshot Delay (seconds)",
|
| 73 |
min_value=0.5,
|