Metadata-Version: 2.4
Name: echoai-free
Version: 1.0.2
Summary: EchoAI is a user-friendly Python library that allows anyone to easily access free AI models. With EchoAI, you can send prompts and receive responses from powerful AI models effortlessly. Whether you’re a beginner or an experienced developer, EchoAI makes it simple to integrate AI into your projects. Try EchoAI today and explore the full potential of AI with minimal setup and maximum simplicity.
License: MIT
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: requests
Dynamic: license-file

# EchoAI

## installation
```
pip install echoai-free
```

## features
- Send prompts and get responses from free AI models  
- Minimal setup required  
- Simple, Pythonic interface  
- Supports multiple free AI models  

## Methods and Arguments
[**Method: Echo_AI.ChatClient()**

**Arguments: auth, model, system_prompt, message**]

## Example usage

```
import echoai_free

response = echoai_free.ChatClient(
    auth="OpenRouter API key.",
    model="nvidia/nemotron-3-nano-30b-a3b:free",
    system_prompt="You're a friendly, helpful, and intelligent AI assistant.",
    message="Hello!"
).json()

print(f"{response["choices"][0]["message"]["content"]}")
```

## How to get the API key
1. Open: https://openrouter.ai
2. Sign up or log in.
3. Click the "Get API key" button.
4. Give the API key a name.
