Skip to content
Merged
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
56b235d
upd: add futurex evaluation support.
JubSteven Sep 18, 2025
287a7bc
upd: support multiple eval for futurex and add relavent doc.
JubSteven Sep 18, 2025
bf43b37
upd: fix bugs with doc for futurex.
JubSteven Sep 18, 2025
d1e1637
debug: fix wrong calling path.
JubSteven Sep 18, 2025
eb6f302
add preparation for finsearchcomp.
JubSteven Sep 24, 2025
4dabaee
update a premature version of finsearchcomp benchmark.
JubSteven Sep 24, 2025
5ea9b61
Resolve merge conflicts in FutureX utility files
JubSteven Sep 24, 2025
c086e41
clean redundent code in merging.
JubSteven Sep 24, 2025
d6a8715
upd: modify yaml to use Mirothinker as the main agent, add check prog…
JubSteven Sep 25, 2025
e7163d3
upd: check_progress function for finsearchcomp now consider globe and…
JubSteven Sep 25, 2025
b0e494f
Merge remote-tracking branch 'upstream/miroflow-v0.3' into explorations
JubSteven Sep 25, 2025
256ba2c
upd: add docs and shell script for multiple runs.
JubSteven Sep 25, 2025
835e590
fix: check_finsearchcomp_progress not displaying results from greater…
JubSteven Sep 25, 2025
5ffc269
Merge remote-tracking branch 'upstream/miroflow-v0.3' into explorations
JubSteven Sep 25, 2025
4918ee2
Merge branch 'miroflow-v0.3' into explorations
JubSteven Sep 25, 2025
72e9bb6
fix: catch ContextLimitError in more observed cases.
JubSteven Sep 25, 2025
e589468
initialize open source tools for audio, vision and reasoning.
JubSteven Oct 1, 2025
948d856
Merge remote-tracking branch 'upstream/miroflow-v0.3' into explorations
JubSteven Oct 1, 2025
15a7ef9
upd: docs for open-source tools.
JubSteven Oct 2, 2025
bf786ca
fix wrong date.
JubSteven Oct 2, 2025
82cb4bf
fix bug with os vision_mcp_server loading images from sandbox paths.
JubSteven Oct 8, 2025
e47cc5c
Merge remote-tracking branch 'upstream/miroflow-v0.3' into explorations
JubSteven Oct 8, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/tool/mcp_servers/vision_mcp_server_os.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,8 @@ async def visual_question_answering(image_path_or_url: str, question: str) -> st
)
else:
return f"Failed to fetch image from URL: {image_path_or_url}"
elif "home/user" in image_path_or_url:
return "The visual_question_answering tool cannot access to sandbox file, please use the local path provided by original instruction"
else:
messages_for_llm[0]["content"][0]["image_url"]["url"] = image_path_or_url

Expand Down