Spaces:
Running
Running
File size: 8,198 Bytes
6a0e448 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 |
import asyncio
import base64
from io import BytesIO
import streamlit as st
from PIL import Image
from proxy_lite import Runner, RunnerConfig
def get_user_config(config_expander):
config = {
"environment": {
"name": "webbrowser",
"annotate_image": True,
"screenshot_delay": 2.0,
"include_html": False,
"viewport_width": 1280,
"viewport_height": 1920,
"include_poi_text": True,
"homepage": "https://dwd000006jia1mae.lightning.force.com/lightning/setup/AccountForecastSettings/home",
"keep_original_image": False,
"headless": False, # without proxies headless mode often results in getting bot blocked
},
"solver": {
"name": "simple",
"agent": {
"name": "proxy_lite",
"client": {
"name": "convergence",
"model_id": "convergence-ai/proxy-lite-3b",
"api_base": "https://convergence-ai-demo-api.hf.space/v1",
},
},
},
"local_view": False,
"verbose": True,
"task_timeout": 1800, # 30 minutes
"action_timeout": 300,
"environment_timeout": 120,
}
with config_expander:
st.subheader("Environment Settings")
col1, col2 = st.columns(2)
with col1:
config["environment"]["include_html"] = st.checkbox(
"Include HTML",
value=config["environment"]["include_html"],
help="Include HTML in observations",
)
config["environment"]["include_poi_text"] = st.checkbox(
"Include POI Text",
value=config["environment"]["include_poi_text"],
help="Include points of interest text in observations",
)
config["environment"]["homepage"] = st.text_input(
"Homepage",
value=config["environment"]["homepage"],
help="Homepage to start from",
)
with col2:
config["solver"]["agent"]["client"]["api_base"] = st.text_input(
"VLLM Server URL",
value=config["solver"]["agent"]["client"]["api_base"],
help="URL of a vllm server running proxy-lite",
)
config["environment"]["screenshot_delay"] = st.slider(
"Screenshot Delay (seconds)",
min_value=0.5,
max_value=10.0,
value=config["environment"]["screenshot_delay"],
step=0.5,
help="Delay before taking screenshots",
)
st.subheader("Advanced Settings")
config["task_timeout"] = st.number_input(
"Task Timeout (seconds)",
min_value=60,
max_value=3600,
step=60,
value=config["task_timeout"],
help="Maximum time allowed for task completion",
)
config["action_timeout"] = st.number_input(
"Action Timeout (seconds)",
min_value=10,
max_value=300,
step=10,
value=config["action_timeout"],
help="Maximum time allowed for an action to complete",
)
config["environment_timeout"] = st.number_input(
"Environment Timeout (seconds)",
min_value=10,
max_value=300,
step=10,
value=config["environment_timeout"],
help="Maximum time allowed for environment to respond",
)
return config
async def run_task_async(
task: str,
status_placeholder,
action_placeholder,
environment_placeholder,
image_placeholder,
history_placeholder,
config: dict,
):
try:
config = RunnerConfig.from_dict(config)
except Exception as e:
st.error(f"Error loading RunnerConfig: {e!s}")
return
print(config)
runner = Runner(config=config)
# Add the spinning animation using HTML
status_placeholder.markdown(
"""
<style>
@keyframes spin {
0% { content: "β‘"; }
25% { content: "β‘."; }
50% { content: "β‘.."; }
75% { content: "β‘..."; }
}
.spinner::before {
content: "β‘";
animation: spin 2s linear infinite;
display: inline-block;
}
</style>
<div><b>Resolving your task </b><span class="spinner"></span></div>
""",
unsafe_allow_html=True,
)
all_steps = []
all_screenshots = []
all_soms = []
async for run in runner.run_generator(task):
# Update status with latest step
if run.actions:
latest_step = run.actions[-1].text
latest_step += "".join(
[
f'<tool_call>{{"name": {tool_call.function["name"]}, "arguments": {tool_call.function["arguments"]}}}</tool_call>' # noqa: E501
for tool_call in run.actions[-1].tool_calls
]
)
action_placeholder.write(f"β‘ **Latest Step:** {latest_step}")
all_steps.append(latest_step)
# Update image if available
if run.observations and run.observations[-1].state.image:
environment_placeholder.write("π **Environment:**")
image_bytes = base64.b64decode(run.observations[-1].state.image)
image = Image.open(BytesIO(image_bytes))
image_placeholder.image(image, use_container_width=True)
all_screenshots.append(image)
som = run.observations[-1].state.text
all_soms.append(som)
# Update history
with history_placeholder, st.expander("π **History**"):
for idx, (action, img, som) in enumerate(zip(all_steps, all_screenshots, all_soms, strict=False)):
st.write(f"**Step {idx + 1}**")
st.image(img, use_container_width=True)
st.markdown(som)
st.write(action)
action_placeholder.write(" ")
status_placeholder.write(f"β¨ **Result:** {latest_step}")
def main():
st.title("β‘ Proxy-Lite")
def img_to_base64(image_path):
with open(image_path, "rb") as img_file:
return base64.b64encode(img_file.read()).decode("utf-8")
st.markdown("Powered by **Proxy-Lite**", unsafe_allow_html=True)
if "config_expanded" not in st.session_state:
st.session_state.config_expanded = False
if "settings_expanded" not in st.session_state:
st.session_state.settings_expanded = False
config_expander = st.expander("βοΈ Proxy-Lite Configuration", expanded=st.session_state.config_expanded)
config = get_user_config(config_expander)
with st.form(key="run_task_form"):
task = st.text_input(
"Submit a task",
key="task_input",
help="Enter a task to be completed",
)
submit_button = st.form_submit_button("Submit a task", type="primary", use_container_width=True)
if submit_button:
st.session_state.config_expanded = False
if task:
# Create placeholders for dynamic updates
status_placeholder = st.empty()
st.write(" ")
action_placeholder = st.empty()
environment_placeholder = st.empty()
image_placeholder = st.empty()
history_placeholder = st.empty()
# Run the async task
asyncio.run(
run_task_async(
task,
status_placeholder,
action_placeholder,
environment_placeholder,
image_placeholder,
history_placeholder,
config,
),
)
st.success("Task completed!", icon="β¨")
else:
st.error("Please give a task first!")
if __name__ == "__main__":
main()
|