Metadata-Version: 2.3
Name: copilotkit
Version: 0.1.55
Summary: CopilotKit python SDK
License: MIT
Keywords: copilot,copilotkit,langgraph,langchain,ai,langsmith,langserve
Author: Markus Ecker
Author-email: markus.ecker@gmail.com
Requires-Python: >=3.10,<3.13
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Provides-Extra: crewai
Requires-Dist: ag-ui-langgraph[fastapi] (==0.0.1)
Requires-Dist: crewai (==0.118.0) ; extra == "crewai"
Requires-Dist: fastapi (>=0.115.0,<0.116.0)
Requires-Dist: langchain (>=0.3.4,<=0.3.26)
Requires-Dist: langgraph (>=0.3.18,<=0.5.0)
Requires-Dist: partialjson (>=0.0.8,<0.0.9)
Requires-Dist: toml (>=0.10.2,<0.11.0)
Project-URL: Homepage, https://copilotkit.ai
Project-URL: Repository, https://github.com/CopilotKit/CopilotKit/tree/main/sdk-python
Description-Content-Type: text/markdown

# CopilotKit Python SDK

[![PyPI version](https://badge.fury.io/py/copilotkit.svg)](https://badge.fury.io/py/copilotkit)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)

The official Python SDK for CopilotKit - build AI copilots and agents into your applications.

## Features

- 🚀 Easy integration with LangGraph and LangChain
- 🔄 Built-in support for stateful conversations
- 🛠 Extensible agent framework
- 🔌 FastAPI-ready endpoints
- 🤝 Optional CrewAI integration

## Installation

```bash
pip install copilotkit
```

With CrewAI support:

```bash
pip install "copilotkit[crewai]"
```

## Quick Start

```python
from copilotkit import Copilot

# Initialize a copilot
copilot = Copilot()

# Add your tools and configure the copilot
copilot.add_tool(my_custom_tool)

# Run the copilot
response = copilot.run("Your task description here")
```

## Documentation

For detailed documentation and examples, visit [copilotkit.ai](https://copilotkit.ai)

## Contributing

We welcome contributions! Please see our [Contributing Guidelines](https://github.com/CopilotKit/CopilotKit/blob/main/CONTRIBUTING.md) for details.

## License

This project is licensed under the MIT License - see the [LICENSE](https://github.com/CopilotKit/CopilotKit/blob/main/LICENSE) file for details.

## Support

- 📚 [Documentation](https://docs.copilotkit.ai)
- 💬 [Discord Community](https://discord.gg/6dffbvGU)
- 🐛 [Issue Tracker](https://github.com/CopilotKit/CopilotKit/issues)

---

Built with ❤️ by the CopilotKit team

