Metadata-Version: 2.4
Name: tokenwise-ai
Version: 0.1.0
Summary: Spend less, agent more. Token optimization SDK for Agentic AI.
Author: Daino
License: MIT
Project-URL: Homepage, https://github.com/DainoJung/tokenwise
Project-URL: Repository, https://github.com/DainoJung/tokenwise
Keywords: llm,token,optimization,openai,agent,agentic-ai
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Software Development :: Libraries
Requires-Python: >=3.10
Description-Content-Type: text/markdown
Requires-Dist: openai>=1.0

# TokenWise Python SDK

**Spend less, agent more.** Token optimization SDK for Agentic AI.

```bash
pip install tokenwise
```

```python
from tokenwise import TokenWise

tw = TokenWise(api_key="sk-...")
response = tw.chat.completions.create(
    model="gpt-4o",
    messages=[{"role": "user", "content": "Hello!"}],
)
print(tw.print_savings())
```

See [GitHub](https://github.com/DainoJung/tokenwise) for full documentation.
