openatlas


Nameopenatlas JSON
Version 1.0.7 PyPI version JSON
download
home_pagehttps://github.com/openatlas/openatlas
SummaryAn autonomous browser agent with web search and interactive browsing capabilities
upload_time2025-10-24 15:21:53
maintainerNone
docs_urlNone
authorHarish Santhanalakshmi Ganesan
requires_python>=3.11
licenseMIT
keywords ai agent browser automation web-scraping llm claude gpt gemini
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # OpenAtlas Agent

An autonomous browser agent with web search and interactive browsing capabilities. OpenAtlas can search the web using DuckDuckGo, browse websites interactively, click elements, fill forms, and extract information

OpenAtlas Agent has long term memory (local)

> **Note**: This project requires Node.js support. Make sure you have Node.js installed on your system.

## Installation

```bash
pip3 install openatlas
```

## API Keys Setup

OpenAtlas requires an API key for your chosen LLM provider. Add one of the following to your environment:

### Anthropic (Claude)
```bash
export ANTHROPIC_API_KEY=your_key_here
```

### OpenAI (GPT)
```bash
export OPENAI_API_KEY=your_key_here
```

### Google (Gemini)
```bash
export GEMINI_API_KEY=your_key_here
```

### Any LLM supported by LiteLLM
OpenAtlas supports 100+ models from various providers including:
- OpenAI (GPT-4, GPT-3.5)
- Anthropic (Claude)
- Google (Gemini)
- Cohere
- Mistral AI
- And many more!

See [LiteLLM documentation](https://docs.litellm.ai/docs/) for the full list of supported models.

## Quick Start

```bash
# Start OpenAtlas Agent
openatlas

# Or run directly with Python
python cli.py

# Specify a model
python cli.py --model gpt-4o
```

## Usage

### Commands

All commands start with `/`:

- `/model` - Choose a different AI model
- `/status` - Show current session configuration
- `/clear` - Clear the screen
- `/help` - Show detailed help information
- `/quit` - Exit the CLI

### Example Tasks

**Web Search**
```
> What's happening in AI today?
> Search for Python 3.13 new features
> Find the latest news about SpaceX
```

**Website Browsing**
```
> Open https://news.ycombinator.com and list the top stories
> Browse to github.com and search for AI projects
> Go to wikipedia.org and find information about Mars
```

**Interactive Tasks**
```
> Open reddit.com/r/programming and show me the trending posts
> Search Google for "best restaurants near me"
> Navigate to amazon.com and search for wireless headphones
```

**Research Tasks**
```
> Research on multiple websites and find top whey protein brands in 2025
> Compare prices for MacBook Pro across different retailers
> Find reviews for the latest iPhone from tech websites
> Browse 5 different tech news sites and summarize today's biggest story
```

## Use Cases

### 🔬 Research & Information Gathering
- **Multi-source research**: Gather information from multiple websites simultaneously
- **Competitive analysis**: Research competitors' products, pricing, and strategies
- **Academic research**: Collect data and citations from various web sources
- **Product comparison**: Compare features, prices, and reviews across platforms

**Example:**
```
> Research on multiple websites and find top whey protein brands in 2025
```

### 📰 News & Updates
- **Breaking news monitoring**: Track news from multiple sources in real-time
- **Topic tracking**: Follow specific topics across different news outlets
- **Social media aggregation**: Gather trending discussions from social platforms
- **Industry trends**: Stay updated with the latest developments in your field

**Example:**
```
> Open https://news.ycombinator.com and list the top stories
> Check latest AI news from TechCrunch and The Verge
```

### 🛍️ Shopping & E-commerce
- **Product research**: Find and compare products across retailers
- **Price comparison**: Track prices across different e-commerce platforms
- **Review aggregation**: Collect and analyze product reviews
- **Availability checking**: Check stock across multiple stores

**Example:**
```
> Compare prices for iPhone 15 Pro on Amazon, Best Buy, and Apple Store
> Find the best-rated wireless earbuds under $100
```

### 💼 Business Intelligence
- **Competitor monitoring**: Track competitor websites and announcements
- **Market trend analysis**: Analyze market trends from multiple sources
- **Lead generation**: Find potential customers and partners online
- **Industry news tracking**: Monitor industry-specific news and updates

**Example:**
```
> Monitor tech startup funding announcements from TechCrunch this week
> Research top SaaS companies in the project management space
```

### 🎓 Learning & Education
- **Research for assignments**: Gather information for academic projects
- **Finding educational resources**: Discover tutorials, courses, and documentation
- **Staying updated**: Learn about latest developments in any field
- **Exploring topics**: Deep dive into subjects with guided research

**Example:**
```
> Find the official Python documentation and explain the new features in 3.13
> Research the history of artificial intelligence from multiple sources
```

### 🎯 Content Creation
- **Content research**: Gather information for articles and blog posts
- **Fact-checking**: Verify information across multiple sources
- **Trend analysis**: Identify trending topics and discussions
- **Source collection**: Compile references and citations

**Example:**
```
> Research the top 10 AI trends for 2025 from multiple tech blogs
> Find statistics about remote work adoption in 2024
```

## Supported Models

### Default Models
- **claude-sonnet-4-5** (Anthropic) - Default, best for complex tasks
- **gpt-4o** (OpenAI) - Excellent for general tasks
- **gemini-2.0-flash** (Google) - Fast and efficient

### Custom Models
Use any model supported by LiteLLM by selecting option 4 during model selection or using the `/model` command. This includes:
- gpt-4, gpt-3.5-turbo (OpenAI)
- claude-3-opus, claude-3-sonnet (Anthropic)
- gemini-pro, gemini-1.5-pro (Google)
- command-r-plus (Cohere)
- mistral-large (Mistral AI)
- And 100+ more models!

## License

MIT License

## Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

## Support

For issues, questions, or feature requests, please open an issue on GitHub.

---

**Made with ❤️ by Harish Santhanalakshmi Ganesan**

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/openatlas/openatlas",
    "name": "openatlas",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.11",
    "maintainer_email": null,
    "keywords": "ai, agent, browser, automation, web-scraping, llm, claude, gpt, gemini",
    "author": "Harish Santhanalakshmi Ganesan",
    "author_email": null,
    "download_url": "https://files.pythonhosted.org/packages/63/e8/ba0cc42b014d8e76d73614d883a2913832252d49ca62eaa8427b24a87e58/openatlas-1.0.7.tar.gz",
    "platform": null,
    "description": "# OpenAtlas Agent\n\nAn autonomous browser agent with web search and interactive browsing capabilities. OpenAtlas can search the web using DuckDuckGo, browse websites interactively, click elements, fill forms, and extract information\n\nOpenAtlas Agent has long term memory (local)\n\n> **Note**: This project requires Node.js support. Make sure you have Node.js installed on your system.\n\n## Installation\n\n```bash\npip3 install openatlas\n```\n\n## API Keys Setup\n\nOpenAtlas requires an API key for your chosen LLM provider. Add one of the following to your environment:\n\n### Anthropic (Claude)\n```bash\nexport ANTHROPIC_API_KEY=your_key_here\n```\n\n### OpenAI (GPT)\n```bash\nexport OPENAI_API_KEY=your_key_here\n```\n\n### Google (Gemini)\n```bash\nexport GEMINI_API_KEY=your_key_here\n```\n\n### Any LLM supported by LiteLLM\nOpenAtlas supports 100+ models from various providers including:\n- OpenAI (GPT-4, GPT-3.5)\n- Anthropic (Claude)\n- Google (Gemini)\n- Cohere\n- Mistral AI\n- And many more!\n\nSee [LiteLLM documentation](https://docs.litellm.ai/docs/) for the full list of supported models.\n\n## Quick Start\n\n```bash\n# Start OpenAtlas Agent\nopenatlas\n\n# Or run directly with Python\npython cli.py\n\n# Specify a model\npython cli.py --model gpt-4o\n```\n\n## Usage\n\n### Commands\n\nAll commands start with `/`:\n\n- `/model` - Choose a different AI model\n- `/status` - Show current session configuration\n- `/clear` - Clear the screen\n- `/help` - Show detailed help information\n- `/quit` - Exit the CLI\n\n### Example Tasks\n\n**Web Search**\n```\n> What's happening in AI today?\n> Search for Python 3.13 new features\n> Find the latest news about SpaceX\n```\n\n**Website Browsing**\n```\n> Open https://news.ycombinator.com and list the top stories\n> Browse to github.com and search for AI projects\n> Go to wikipedia.org and find information about Mars\n```\n\n**Interactive Tasks**\n```\n> Open reddit.com/r/programming and show me the trending posts\n> Search Google for \"best restaurants near me\"\n> Navigate to amazon.com and search for wireless headphones\n```\n\n**Research Tasks**\n```\n> Research on multiple websites and find top whey protein brands in 2025\n> Compare prices for MacBook Pro across different retailers\n> Find reviews for the latest iPhone from tech websites\n> Browse 5 different tech news sites and summarize today's biggest story\n```\n\n## Use Cases\n\n### \ud83d\udd2c Research & Information Gathering\n- **Multi-source research**: Gather information from multiple websites simultaneously\n- **Competitive analysis**: Research competitors' products, pricing, and strategies\n- **Academic research**: Collect data and citations from various web sources\n- **Product comparison**: Compare features, prices, and reviews across platforms\n\n**Example:**\n```\n> Research on multiple websites and find top whey protein brands in 2025\n```\n\n### \ud83d\udcf0 News & Updates\n- **Breaking news monitoring**: Track news from multiple sources in real-time\n- **Topic tracking**: Follow specific topics across different news outlets\n- **Social media aggregation**: Gather trending discussions from social platforms\n- **Industry trends**: Stay updated with the latest developments in your field\n\n**Example:**\n```\n> Open https://news.ycombinator.com and list the top stories\n> Check latest AI news from TechCrunch and The Verge\n```\n\n### \ud83d\udecd\ufe0f Shopping & E-commerce\n- **Product research**: Find and compare products across retailers\n- **Price comparison**: Track prices across different e-commerce platforms\n- **Review aggregation**: Collect and analyze product reviews\n- **Availability checking**: Check stock across multiple stores\n\n**Example:**\n```\n> Compare prices for iPhone 15 Pro on Amazon, Best Buy, and Apple Store\n> Find the best-rated wireless earbuds under $100\n```\n\n### \ud83d\udcbc Business Intelligence\n- **Competitor monitoring**: Track competitor websites and announcements\n- **Market trend analysis**: Analyze market trends from multiple sources\n- **Lead generation**: Find potential customers and partners online\n- **Industry news tracking**: Monitor industry-specific news and updates\n\n**Example:**\n```\n> Monitor tech startup funding announcements from TechCrunch this week\n> Research top SaaS companies in the project management space\n```\n\n### \ud83c\udf93 Learning & Education\n- **Research for assignments**: Gather information for academic projects\n- **Finding educational resources**: Discover tutorials, courses, and documentation\n- **Staying updated**: Learn about latest developments in any field\n- **Exploring topics**: Deep dive into subjects with guided research\n\n**Example:**\n```\n> Find the official Python documentation and explain the new features in 3.13\n> Research the history of artificial intelligence from multiple sources\n```\n\n### \ud83c\udfaf Content Creation\n- **Content research**: Gather information for articles and blog posts\n- **Fact-checking**: Verify information across multiple sources\n- **Trend analysis**: Identify trending topics and discussions\n- **Source collection**: Compile references and citations\n\n**Example:**\n```\n> Research the top 10 AI trends for 2025 from multiple tech blogs\n> Find statistics about remote work adoption in 2024\n```\n\n## Supported Models\n\n### Default Models\n- **claude-sonnet-4-5** (Anthropic) - Default, best for complex tasks\n- **gpt-4o** (OpenAI) - Excellent for general tasks\n- **gemini-2.0-flash** (Google) - Fast and efficient\n\n### Custom Models\nUse any model supported by LiteLLM by selecting option 4 during model selection or using the `/model` command. This includes:\n- gpt-4, gpt-3.5-turbo (OpenAI)\n- claude-3-opus, claude-3-sonnet (Anthropic)\n- gemini-pro, gemini-1.5-pro (Google)\n- command-r-plus (Cohere)\n- mistral-large (Mistral AI)\n- And 100+ more models!\n\n## License\n\nMIT License\n\n## Contributing\n\nContributions are welcome! Please feel free to submit a Pull Request.\n\n## Support\n\nFor issues, questions, or feature requests, please open an issue on GitHub.\n\n---\n\n**Made with \u2764\ufe0f by Harish Santhanalakshmi Ganesan**\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "An autonomous browser agent with web search and interactive browsing capabilities",
    "version": "1.0.7",
    "project_urls": {
        "Bug Reports": "https://github.com/openatlas/openatlas/issues",
        "Homepage": "https://github.com/openatlas/openatlas",
        "Source": "https://github.com/openatlas/openatlas"
    },
    "split_keywords": [
        "ai",
        " agent",
        " browser",
        " automation",
        " web-scraping",
        " llm",
        " claude",
        " gpt",
        " gemini"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ef9802c664e358fa6e17ef2ccbfb547165852e40572afd7162a5437bc9c8d78f",
                "md5": "37e65e433cff6875b8d99780b8c219e3",
                "sha256": "5dbd6bceec949cad030bc2e465418b2e8756e9b4206d3b95c7f1c8e17a7ef96a"
            },
            "downloads": -1,
            "filename": "openatlas-1.0.7-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "37e65e433cff6875b8d99780b8c219e3",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.11",
            "size": 13263,
            "upload_time": "2025-10-24T15:21:53",
            "upload_time_iso_8601": "2025-10-24T15:21:53.082672Z",
            "url": "https://files.pythonhosted.org/packages/ef/98/02c664e358fa6e17ef2ccbfb547165852e40572afd7162a5437bc9c8d78f/openatlas-1.0.7-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "63e8ba0cc42b014d8e76d73614d883a2913832252d49ca62eaa8427b24a87e58",
                "md5": "0166d06ad8800def42305289faf1efc2",
                "sha256": "e2e0cb2ca1f3eb92317a1786233135963d04d4824fb87e6191b4c2dc0c3ff26d"
            },
            "downloads": -1,
            "filename": "openatlas-1.0.7.tar.gz",
            "has_sig": false,
            "md5_digest": "0166d06ad8800def42305289faf1efc2",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.11",
            "size": 14695,
            "upload_time": "2025-10-24T15:21:53",
            "upload_time_iso_8601": "2025-10-24T15:21:53.920279Z",
            "url": "https://files.pythonhosted.org/packages/63/e8/ba0cc42b014d8e76d73614d883a2913832252d49ca62eaa8427b24a87e58/openatlas-1.0.7.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-10-24 15:21:53",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "openatlas",
    "github_project": "openatlas",
    "github_not_found": true,
    "lcname": "openatlas"
}
        
Elapsed time: 0.87394s