A powerful AI agent for browser-based interactions powered by Fireworks AI models. Navigate the web, extract content, analyze websites, and provide intelligent feedback based on what it sees. Features web navigation, content extraction, SEO analysis, and an interactive UI leveraging high-performance vision and language models.
A powerful AI agent for browser-based interactions powered by Fireworks AI models. This project is inspired by OpenManus but leverages Fireworks AI’s high-performance vision and language models for enhanced capabilities.
Fireworks Manus is an AI agent that can navigate the web, extract content, analyze websites, and provide intelligent feedback based on what it sees. Using Fireworks AI’s state-of-the-art models, it can understand web content both visually and textually, making it ideal for tasks like SEO analysis, content research, and web automation.
git clone https://github.com/shubcodes/fireworksai-browseruse.git
cd fireworksai-browseruse
python -m venv venv
source venv/bin/activate # On Windows: venv\Scripts\activate
pip install -r requirements.txt
playwright install
cp config/config.example.toml config/config.toml
config/config.toml
to add your Fireworks AI API keys:# Global LLM configuration
[llm]
model = "accounts/fireworks/models/deepseek-v3" # Or your preferred Fireworks model
base_url = "https://api.fireworks.ai/inference/v1"
api_key = "your-fireworks-api-key" # Replace with your actual API key
max_tokens = 4096
temperature = 0.0
# Vision model configuration
[llm.vision]
model = "accounts/fireworks/models/firellava-13b" # Fireworks vision model
base_url = "https://api.fireworks.ai/inference/v1"
api_key = "your-fireworks-api-key" # Replace with your actual API key
./start_server.sh
./start_frontend.sh
http://localhost:8000
in your browserBasic Web Navigation
go to https://example.com
scroll down
extract the text from this page
SEO Analysis
go to https://example.com and tell me how to improve its SEO
extract the meta tags from this page
how can I optimize this page for search engines?
Content Research
summarize the main points on this page
go to these two websites and tell me their differences
find all pricing information on this page
Fireworks AI models offer exceptional inference speed and quality, making Fireworks Manus significantly more responsive than alternatives. The optimized models provide:
Fireworks AI offers high-performance models at competitive price points, allowing you to run sophisticated AI agents without excessive API costs.
Unlike general AI assistants, Fireworks Manus is specifically designed for browser-based interactions, making it ideal for:
Fireworks Manus consists of:
playwright install --with-deps
to install all required dependenciesContributions are welcome! Please feel free to submit pull requests or open issues to improve Fireworks Manus.
MIT License
Copyright © 2025 manna_and_poem (Original OpenManus Project)
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the “Software”), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
Fireworks Manus is not affiliated with Fireworks AI or OpenManus. It is an independent project leveraging these technologies.