├── .gitattributes ├── .gitignore ├── .python-version ├── LICENSE ├── README.md ├── agent-chat.png ├── agent-tools.png ├── app ├── __init__.py ├── agent │ ├── __init__.py │ ├── base.py │ ├── browser.py │ ├── cot.py │ ├── manus.py │ ├── mcp.py │ ├── planning.py │ ├── react.py │ ├── swe.py │ └── toolcall.py ├── bedrock.py ├── config.py ├── exceptions.py ├── flow │ ├── __init__.py │ ├── base.py │ ├── flow_factory.py │ └── planning.py ├── llm.py ├── logger.py ├── prompt │ ├── __init__.py │ ├── browser.py │ ├── cot.py │ ├── manus.py │ ├── mcp.py │ ├── planning.py │ ├── swe.py │ └── toolcall.py ├── sandbox │ ├── __init__.py │ ├── client.py │ └── core │ │ ├── exceptions.py │ │ ├── manager.py │ │ ├── sandbox.py │ │ └── terminal.py ├── schema.py ├── tool │ ├── __init__.py │ ├── base.py │ ├── bash.py │ ├── browser_use_tool.py │ ├── create_chat_completion.py │ ├── file_operators.py │ ├── file_saver.py │ ├── mcp.py │ ├── planning.py │ ├── python_execute.py │ ├── search │ │ ├── __init__.py │ │ ├── baidu_search.py │ │ ├── base.py │ │ ├── bing_search.py │ │ ├── duckduckgo_search.py │ │ └── google_search.py │ ├── str_replace_editor.py │ ├── terminal.py │ ├── terminate.py │ ├── tool_collection.py │ └── web_search.py └── ui │ ├── __init__.py │ └── server.py ├── config ├── .gitignore └── config.example.toml ├── frontend ├── fw-manus-ui │ ├── .gitignore │ ├── README.md │ ├── eslint.config.js │ ├── index.html │ ├── package-lock.json │ ├── package.json │ ├── public │ │ └── vite.svg │ ├── src │ │ ├── App.css │ │ ├── App.tsx │ │ ├── assets │ │ │ └── react.svg │ │ ├── index.css │ │ ├── main.tsx │ │ ├── theme.ts │ │ └── vite-env.d.ts │ ├── tsconfig.app.json │ ├── tsconfig.json │ ├── tsconfig.node.json │ └── vite.config.ts └── openmanus-ui │ └── .vite │ └── deps │ ├── _metadata.json │ └── package.json ├── main.py ├── requirements.txt ├── start_frontend.sh └── start_server.sh /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubcodes/fireworksai-browseruse/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubcodes/fireworksai-browseruse/HEAD/.gitignore -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | ml_project 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubcodes/fireworksai-browseruse/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubcodes/fireworksai-browseruse/HEAD/README.md -------------------------------------------------------------------------------- /agent-chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubcodes/fireworksai-browseruse/HEAD/agent-chat.png -------------------------------------------------------------------------------- /agent-tools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubcodes/fireworksai-browseruse/HEAD/agent-tools.png -------------------------------------------------------------------------------- /app/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubcodes/fireworksai-browseruse/HEAD/app/__init__.py -------------------------------------------------------------------------------- /app/agent/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubcodes/fireworksai-browseruse/HEAD/app/agent/__init__.py -------------------------------------------------------------------------------- /app/agent/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubcodes/fireworksai-browseruse/HEAD/app/agent/base.py -------------------------------------------------------------------------------- /app/agent/browser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubcodes/fireworksai-browseruse/HEAD/app/agent/browser.py -------------------------------------------------------------------------------- /app/agent/cot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubcodes/fireworksai-browseruse/HEAD/app/agent/cot.py -------------------------------------------------------------------------------- /app/agent/manus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubcodes/fireworksai-browseruse/HEAD/app/agent/manus.py -------------------------------------------------------------------------------- /app/agent/mcp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubcodes/fireworksai-browseruse/HEAD/app/agent/mcp.py -------------------------------------------------------------------------------- /app/agent/planning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubcodes/fireworksai-browseruse/HEAD/app/agent/planning.py -------------------------------------------------------------------------------- /app/agent/react.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubcodes/fireworksai-browseruse/HEAD/app/agent/react.py -------------------------------------------------------------------------------- /app/agent/swe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubcodes/fireworksai-browseruse/HEAD/app/agent/swe.py -------------------------------------------------------------------------------- /app/agent/toolcall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubcodes/fireworksai-browseruse/HEAD/app/agent/toolcall.py -------------------------------------------------------------------------------- /app/bedrock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubcodes/fireworksai-browseruse/HEAD/app/bedrock.py -------------------------------------------------------------------------------- /app/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubcodes/fireworksai-browseruse/HEAD/app/config.py -------------------------------------------------------------------------------- /app/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubcodes/fireworksai-browseruse/HEAD/app/exceptions.py -------------------------------------------------------------------------------- /app/flow/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/flow/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubcodes/fireworksai-browseruse/HEAD/app/flow/base.py -------------------------------------------------------------------------------- /app/flow/flow_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubcodes/fireworksai-browseruse/HEAD/app/flow/flow_factory.py -------------------------------------------------------------------------------- /app/flow/planning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubcodes/fireworksai-browseruse/HEAD/app/flow/planning.py -------------------------------------------------------------------------------- /app/llm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubcodes/fireworksai-browseruse/HEAD/app/llm.py -------------------------------------------------------------------------------- /app/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubcodes/fireworksai-browseruse/HEAD/app/logger.py -------------------------------------------------------------------------------- /app/prompt/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/prompt/browser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubcodes/fireworksai-browseruse/HEAD/app/prompt/browser.py -------------------------------------------------------------------------------- /app/prompt/cot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubcodes/fireworksai-browseruse/HEAD/app/prompt/cot.py -------------------------------------------------------------------------------- /app/prompt/manus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubcodes/fireworksai-browseruse/HEAD/app/prompt/manus.py -------------------------------------------------------------------------------- /app/prompt/mcp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubcodes/fireworksai-browseruse/HEAD/app/prompt/mcp.py -------------------------------------------------------------------------------- /app/prompt/planning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubcodes/fireworksai-browseruse/HEAD/app/prompt/planning.py -------------------------------------------------------------------------------- /app/prompt/swe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubcodes/fireworksai-browseruse/HEAD/app/prompt/swe.py -------------------------------------------------------------------------------- /app/prompt/toolcall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubcodes/fireworksai-browseruse/HEAD/app/prompt/toolcall.py -------------------------------------------------------------------------------- /app/sandbox/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubcodes/fireworksai-browseruse/HEAD/app/sandbox/__init__.py -------------------------------------------------------------------------------- /app/sandbox/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubcodes/fireworksai-browseruse/HEAD/app/sandbox/client.py -------------------------------------------------------------------------------- /app/sandbox/core/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubcodes/fireworksai-browseruse/HEAD/app/sandbox/core/exceptions.py -------------------------------------------------------------------------------- /app/sandbox/core/manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubcodes/fireworksai-browseruse/HEAD/app/sandbox/core/manager.py -------------------------------------------------------------------------------- /app/sandbox/core/sandbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubcodes/fireworksai-browseruse/HEAD/app/sandbox/core/sandbox.py -------------------------------------------------------------------------------- /app/sandbox/core/terminal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubcodes/fireworksai-browseruse/HEAD/app/sandbox/core/terminal.py -------------------------------------------------------------------------------- /app/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubcodes/fireworksai-browseruse/HEAD/app/schema.py -------------------------------------------------------------------------------- /app/tool/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubcodes/fireworksai-browseruse/HEAD/app/tool/__init__.py -------------------------------------------------------------------------------- /app/tool/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubcodes/fireworksai-browseruse/HEAD/app/tool/base.py -------------------------------------------------------------------------------- /app/tool/bash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubcodes/fireworksai-browseruse/HEAD/app/tool/bash.py -------------------------------------------------------------------------------- /app/tool/browser_use_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubcodes/fireworksai-browseruse/HEAD/app/tool/browser_use_tool.py -------------------------------------------------------------------------------- /app/tool/create_chat_completion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubcodes/fireworksai-browseruse/HEAD/app/tool/create_chat_completion.py -------------------------------------------------------------------------------- /app/tool/file_operators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubcodes/fireworksai-browseruse/HEAD/app/tool/file_operators.py -------------------------------------------------------------------------------- /app/tool/file_saver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubcodes/fireworksai-browseruse/HEAD/app/tool/file_saver.py -------------------------------------------------------------------------------- /app/tool/mcp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubcodes/fireworksai-browseruse/HEAD/app/tool/mcp.py -------------------------------------------------------------------------------- /app/tool/planning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubcodes/fireworksai-browseruse/HEAD/app/tool/planning.py -------------------------------------------------------------------------------- /app/tool/python_execute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubcodes/fireworksai-browseruse/HEAD/app/tool/python_execute.py -------------------------------------------------------------------------------- /app/tool/search/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubcodes/fireworksai-browseruse/HEAD/app/tool/search/__init__.py -------------------------------------------------------------------------------- /app/tool/search/baidu_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubcodes/fireworksai-browseruse/HEAD/app/tool/search/baidu_search.py -------------------------------------------------------------------------------- /app/tool/search/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubcodes/fireworksai-browseruse/HEAD/app/tool/search/base.py -------------------------------------------------------------------------------- /app/tool/search/bing_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubcodes/fireworksai-browseruse/HEAD/app/tool/search/bing_search.py -------------------------------------------------------------------------------- /app/tool/search/duckduckgo_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubcodes/fireworksai-browseruse/HEAD/app/tool/search/duckduckgo_search.py -------------------------------------------------------------------------------- /app/tool/search/google_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubcodes/fireworksai-browseruse/HEAD/app/tool/search/google_search.py -------------------------------------------------------------------------------- /app/tool/str_replace_editor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubcodes/fireworksai-browseruse/HEAD/app/tool/str_replace_editor.py -------------------------------------------------------------------------------- /app/tool/terminal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubcodes/fireworksai-browseruse/HEAD/app/tool/terminal.py -------------------------------------------------------------------------------- /app/tool/terminate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubcodes/fireworksai-browseruse/HEAD/app/tool/terminate.py -------------------------------------------------------------------------------- /app/tool/tool_collection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubcodes/fireworksai-browseruse/HEAD/app/tool/tool_collection.py -------------------------------------------------------------------------------- /app/tool/web_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubcodes/fireworksai-browseruse/HEAD/app/tool/web_search.py -------------------------------------------------------------------------------- /app/ui/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubcodes/fireworksai-browseruse/HEAD/app/ui/__init__.py -------------------------------------------------------------------------------- /app/ui/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubcodes/fireworksai-browseruse/HEAD/app/ui/server.py -------------------------------------------------------------------------------- /config/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubcodes/fireworksai-browseruse/HEAD/config/.gitignore -------------------------------------------------------------------------------- /config/config.example.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubcodes/fireworksai-browseruse/HEAD/config/config.example.toml -------------------------------------------------------------------------------- /frontend/fw-manus-ui/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubcodes/fireworksai-browseruse/HEAD/frontend/fw-manus-ui/.gitignore -------------------------------------------------------------------------------- /frontend/fw-manus-ui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubcodes/fireworksai-browseruse/HEAD/frontend/fw-manus-ui/README.md -------------------------------------------------------------------------------- /frontend/fw-manus-ui/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubcodes/fireworksai-browseruse/HEAD/frontend/fw-manus-ui/eslint.config.js -------------------------------------------------------------------------------- /frontend/fw-manus-ui/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubcodes/fireworksai-browseruse/HEAD/frontend/fw-manus-ui/index.html -------------------------------------------------------------------------------- /frontend/fw-manus-ui/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubcodes/fireworksai-browseruse/HEAD/frontend/fw-manus-ui/package-lock.json -------------------------------------------------------------------------------- /frontend/fw-manus-ui/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubcodes/fireworksai-browseruse/HEAD/frontend/fw-manus-ui/package.json -------------------------------------------------------------------------------- /frontend/fw-manus-ui/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubcodes/fireworksai-browseruse/HEAD/frontend/fw-manus-ui/public/vite.svg -------------------------------------------------------------------------------- /frontend/fw-manus-ui/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubcodes/fireworksai-browseruse/HEAD/frontend/fw-manus-ui/src/App.css -------------------------------------------------------------------------------- /frontend/fw-manus-ui/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubcodes/fireworksai-browseruse/HEAD/frontend/fw-manus-ui/src/App.tsx -------------------------------------------------------------------------------- /frontend/fw-manus-ui/src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubcodes/fireworksai-browseruse/HEAD/frontend/fw-manus-ui/src/assets/react.svg -------------------------------------------------------------------------------- /frontend/fw-manus-ui/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubcodes/fireworksai-browseruse/HEAD/frontend/fw-manus-ui/src/index.css -------------------------------------------------------------------------------- /frontend/fw-manus-ui/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubcodes/fireworksai-browseruse/HEAD/frontend/fw-manus-ui/src/main.tsx -------------------------------------------------------------------------------- /frontend/fw-manus-ui/src/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubcodes/fireworksai-browseruse/HEAD/frontend/fw-manus-ui/src/theme.ts -------------------------------------------------------------------------------- /frontend/fw-manus-ui/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /frontend/fw-manus-ui/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubcodes/fireworksai-browseruse/HEAD/frontend/fw-manus-ui/tsconfig.app.json -------------------------------------------------------------------------------- /frontend/fw-manus-ui/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubcodes/fireworksai-browseruse/HEAD/frontend/fw-manus-ui/tsconfig.json -------------------------------------------------------------------------------- /frontend/fw-manus-ui/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubcodes/fireworksai-browseruse/HEAD/frontend/fw-manus-ui/tsconfig.node.json -------------------------------------------------------------------------------- /frontend/fw-manus-ui/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubcodes/fireworksai-browseruse/HEAD/frontend/fw-manus-ui/vite.config.ts -------------------------------------------------------------------------------- /frontend/openmanus-ui/.vite/deps/_metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubcodes/fireworksai-browseruse/HEAD/frontend/openmanus-ui/.vite/deps/_metadata.json -------------------------------------------------------------------------------- /frontend/openmanus-ui/.vite/deps/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "module" 3 | } 4 | -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubcodes/fireworksai-browseruse/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubcodes/fireworksai-browseruse/HEAD/requirements.txt -------------------------------------------------------------------------------- /start_frontend.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubcodes/fireworksai-browseruse/HEAD/start_frontend.sh -------------------------------------------------------------------------------- /start_server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubcodes/fireworksai-browseruse/HEAD/start_server.sh --------------------------------------------------------------------------------