Metadata-Version: 2.1
Name: duckgpt
Version: 1.0.2
Summary: A Python client for DuckGPT
Home-page: https://github.com/tanmaysingh3856/duckgpt
Author: github.com/tanmaysingh3856
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: requests
Requires-Dist: fake_useragent

# DuckGPT

DuckGPT is a Python client for interacting with the DuckGPT API.

## Installation

```bash
pip3 install duckgpt
```

## Usage

```python
from duckgpt import DuckGPT

client = DuckGPT(model="gpt-4o-mini")
models = client.Models()
response = client.Chat("Hello, world!", [])
print(response)
```
