Metadata-Version: 2.4
Name: big-talk-ai
Version: 1.2.0
Summary: The lightweight, middleware-first LLM framework for Python.
Project-URL: Homepage, https://github.com/DavidVollmers/big-talk
Project-URL: Documentation, https://github.com/DavidVollmers/big-talk/blob/main/README.md
Project-URL: Repository, https://github.com/DavidVollmers/big-talk.git
Project-URL: Issues, https://github.com/DavidVollmers/big-talk/issues
Project-URL: Changelog, https://github.com/DavidVollmers/big-talk/blob/main/CHANGELOG.md
Keywords: llm,middleware,framework,ai,language-models,chatbots,conversational-ai
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Operating System :: OS Independent
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.12
Description-Content-Type: text/markdown
Requires-Dist: docstring-parser>=0.17.0
Provides-Extra: anthropic
Requires-Dist: anthropic>=0.79.0; extra == "anthropic"
Provides-Extra: openai
Requires-Dist: openai>=2.21.0; extra == "openai"
Requires-Dist: tiktoken>=0.12.0; extra == "openai"

# 🦜 BigTalk

> The lightweight, middleware-first LLM framework for Python.

BigTalk is designed for developers who want the power of agents (tool calling, loops, memory) without the bloat of
heavy frameworks. It provides a clean, type-safe abstraction over LLMs with a robust middleware pipeline inspired by
Starlette/FastAPI.

## Installation

```bash
pip install big-talk-ai[anthropic]

uv add big-talk-ai[anthropic]
```

## Documentation

Visit the GitHub repository for detailed documentation and examples:
[BigTalk on GitHub](https://github.com/DavidVollmers/big-talk/blob/main/README.md)
