Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
30 changes: 30 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@

# Fuel Agent Kit

## Overview
Fuel Agent Kit is an agentic framework designed to enhance the capabilities of the Fuel Network. It provides tools, libraries, and infrastructure to build, deploy, and manage intelligent agents that can interact with the Fuel Network ecosystem.

## Prerequisites
Before you begin, ensure you have the following installed on your system:

- **Fuel Toolchain**: The Fuel development environment and toolchain.
- **Node.js**: Version 16 or higher for building and running agent applications.

## Installation

1. **Clone the Repository**:
```bash
git clone https://github.com/priyanshudumps/fuel-agent-kit.git
cd fuel-agent-kit
```

2. **Install Dependencies**:
```bash
npm install
```

3. **Set Up Environment**:
Configure your environment variables as specified in the `.env.example` file.

## License
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
49 changes: 49 additions & 0 deletions python/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@

# Fuel Agent Kit - Python Implementation

Fuel Agent Kit provides tools for building and managing fuel agents in Python.

## Prerequisites

- Python 3.10 or higher
- pip package manager

## Installation

Install the Fuel Agent Kit using pip:

```bash
pip install fuel-agent-kit
```

## Quick Start

Here's how to initialize a basic Fuel Agent:

```python
from fuel_agent import FuelAgent

# Initialize a new Fuel Agent
agent = FuelAgent(
agent_id="my_agent_123",
name="My Fuel Agent",
description="A sample fuel agent implementation"
)

# Start the agent
agent.start()

# Stop the agent when done
agent.stop()
```

## Features

- Fuel agent management
- Configuration and initialization
- Integration with fuel infrastructure
- Extensible architecture for custom agents

## Documentation

For more detailed documentation and API reference, please visit our [official documentation](https://fuel-agent-kit.org/docs).