Metadata-Version: 2.1
Name: launchkit
Version: 0.1.3
Author-Email: Ken Buskilla <k@loopback.ai>, Yakir Buskilla <yakir@loopback.ai>
License: MIT
Requires-Python: >=3.11
Requires-Dist: openai>=1.3.0
Requires-Dist: asyncer>=0.0.2
Requires-Dist: httpx>=0.25.1
Requires-Dist: pydantic>=2.5.1
Requires-Dist: typer[all]>=0.9.0
Description-Content-Type: text/markdown

# LaunchKit

LaunchKit is a library for building custom tools for GPTs with tool-use support.
Define your own tools as type annotated functions and LaunchKit will help you test, talk to, and deploy your tools.

LaunchKit is using Pydantic under the hood to validate and parse functions to make them friendly to for AI APIs.

### Getting started

1. Install PDM

2. Create a new project

```bash
mkdir my_project
cd my_project
pdm init --copier gh:missioncontrolai/template
pdm install
```

3. Test it out

```bash
pdm test # run tests
pdm dev # talk with your bot
```

4. Deploy it (with MissionControl)

```bash
git init
git add .
git commit -m "Initial commit"
```

- Create a new repo on github and push to it.
- Create a Discord bot and save the token.
- Go to https://www.missioncontrolbot.com/ and add your repo.
