Metadata-Version: 2.2
Name: hello_agent
Version: 0.1.0
Summary: Hello World Agent - ReACT Methodology Demonstration System
Home-page: https://github.com/ruvnet/hello_world_agent
Author: rUv
Author-email: 
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: crewai[local]>=0.1.0
Requires-Dist: langchain>=0.1.0
Requires-Dist: python-dotenv>=1.0.0
Requires-Dist: pyyaml>=6.0.0
Requires-Dist: httpx>=0.24.0
Dynamic: author
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# Hello World Agent

A simple demonstration agent using the ReACT methodology for analyzing and executing tasks.

## Prerequisites

- Python 3.8 or higher
- OpenRouter API key (for LLM access)

## Installation

1. Navigate to the hello_world agent directory:
   ```bash
   cd agents/hello_world
   ```

2. Run the installation script:
   ```bash
   ./install.sh
   ```

3. Add your OpenRouter API key to the `.env` file:
   ```bash
   OPENROUTER_API_KEY=your_api_key_here
   ```

## Usage

1. Start the agent from the hello_world directory:
   ```bash
   ./start.sh
   ```

### Command Line Arguments

- `--prompt`: Specify the input prompt (default: "Tell me about yourself")
- `--task`: Specify the task type: research, execute, analyze, or both (default: both)

Example:
```bash
./start.sh --prompt "What is quantum computing?" --task research
```

## Features

- ReACT Methodology Implementation
- Research Analysis
- Task Execution
- Performance Analysis
- Progress Tracking
- Streaming Responses

## Documentation

For detailed documentation and user guides, refer to the following:

- [User Guide](agent/docs/readme.md)
- [Templates Guide](agent/docs/templates.md)
- [Tools Guide](agent/docs/tools.md)
- [Configuration Guide](agent/docs/configuration.md)
- [Advanced Implementations Guide](agent/docs/advanced_implementations.md)
- [Memory and Storage Guide](agent/docs/memory_and_storage.md)
- [Human-in-the-Loop Guide](agent/docs/human_in_the_loop.md)

## Examples

Explore the [Examples](agent/examples/README.md) directory for sample usage scenarios and human-in-the-loop implementations.

## Project Structure

```
agent/
├── config/              # Configuration files
│   ├── agents.yaml     # Agent definitions
│   ├── tasks.yaml      # Task definitions
│   └── analysis.yaml   # Analysis rules
├── tools/              # Custom tools
├── install.sh          # Installation script
├── start.sh            # Start script
└── README.md           # This file
