Metadata-Version: 2.4
Name: build_the_bot
Version: 1.0.1
Summary: A chatbot framework
Author-email: Ava Gerami <ava.gerami@viasat.com>
License-Expression: Apache-2.0
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.9.18
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: aiohttp
Requires-Dist: openai
Requires-Dist: slack_sdk
Requires-Dist: spacy
Provides-Extra: test
Requires-Dist: pytest; extra == "test"
Requires-Dist: pytest-asyncio; extra == "test"
Dynamic: license-file

# build-the-bot
A Python chatbot framework that provides natural language processing and state management, allowing developers to build dynamic, conversational agents that can execute user-defined code.

## Install
```
# clone the repository
$ git clone https://github.com/Viasat/build-the-bot.git
```
Create a virtualenv and activate it:
```
$ python3 -m venv venv
$ source venv/bin/activate
```
Or on Windows cmd:
```
$ python3 -m venv venv
$ venv\Scripts\activate
```
Install build_the_bot
```
$ pip install build_the_bot
```

