Metadata-Version: 2.1
Name: teams-ai
Version: 1.5.0
Summary: SDK focused on building AI based applications for Microsoft Teams.
Home-page: https://github.com/microsoft/teams-ai
Keywords: microsoft,teams,ai,bot
Author: Microsoft
Author-email: teams@microsoft.com
Requires-Python: >=3.8,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Dist: aiohttp (>=3.9.3,<4.0.0)
Requires-Dist: azure-ai-contentsafety (>=1.0.0,<2.0.0)
Requires-Dist: botbuilder-core (>=4.15.0,<5.0.0)
Requires-Dist: botbuilder-dialogs (>=4.14.8,<5.0.0)
Requires-Dist: botbuilder-integration-aiohttp (>=4.15.0,<5.0.0)
Requires-Dist: botframework-connector (>=4.15.0,<5.0.0)
Requires-Dist: dataclasses-json (>=0.6.4,<0.7.0)
Requires-Dist: jsonschema (>=4.21.1,<5.0.0)
Requires-Dist: msal (>=1.28.0,<2.0.0)
Requires-Dist: openai (>=v1.52.0,<2.0.0)
Requires-Dist: pyyaml (>=6.0.1,<7.0.0)
Requires-Dist: tiktoken (>=0.7.0,<0.8.0)
Requires-Dist: types-pyyaml (>=6.0.12.12,<7.0.0.0)
Project-URL: Documentation, https://learn.microsoft.com/en-us/microsoftteams/platform/bots/how-to/teams%20conversational%20ai/teams-conversation-ai-overview
Project-URL: Repository, https://github.com/microsoft/teams-ai
Description-Content-Type: text/markdown

# Teams AI Library

Welcome to the Teams AI Library Python package! 

This SDK is specifically designed to assist you in creating bots capable of interacting with Teams and Microsoft 365 applications. It is constructed using the [Bot Framework SDK](https://github.com/microsoft/botbuilder-python) as its foundation, simplifying the process of developing bots that interact with Teams' artificial intelligence capabilities. See the [Teams AI repo README.md](https://github.com/microsoft/teams-ai), for general information.

Requirements:
*   [Python](https://www.python.org/downloads/) (>=3.8, <4.0)
*   [Poetry](https://python-poetry.org/docs/)

## Getting Started

To get started, take a look at the [getting started docs](https://github.com/microsoft/teams-ai/blob/main/getting-started/README.md).

### Install Dependencies

```bash
$: poetry install
```

### Build

```bash
$: poetry build
```

### Test

```bash
$: poetry run test
```

### Lint

```bash
$: poetry run lint
```

## Format

```bash
$: poetry run fmt
```

## Clean

```bash
$: poetry run clean
```


## Migration

If you're migrating an existing project, switching to add on the Teams AI Library layer is quick and simple. See the [migration guide](https://github.com/microsoft/teams-ai/blob/main/getting-started/MIGRATION/03.PYTHON.md).

