tysm
Typed OpenAI Chat Completions in Rust
Table of Contents
A strongly-typed Rust client for OpenAI's ChatGPT API that enforces type-safe responses using Structured Outputs.
Usage
use ;
/// Let's say that for some reason, we want names separated into `first` and `last` fields.
async
Features
- Type-safe API responses
- Concise interface
- Automatic local caching of API responses
Setup
-
Get an API key from OpenAI.
-
Create a
.envfile, and make it look like this:OPENAI_API_KEY=<your api key here> -
Add
.envto your.gitignoreso you don't accidentally commit it. -
Add the crate to your Rust project with
cargo add tysm
Automatic Caching
I'm a big fan of memoization. By default, the last 1024 responses will be stored inside the Client. For this reason it can be useful to make a client just once using LazyLock (which is part of the standard library since 1.80).
use LazyLock;
use ChatClient;
// Create a lazily-initialized `CLIENT` variable to avoid recreating a `ChatClient` every time we want to hit the API.
static CLIENT: = new;
Custom API endpoints
Sometimes people want to use a different completions API. For example, I maintain a wrapper around OpenAI's API that adds a global cache. To switch endpoints, just do this:
let my_api = "https://g7edusstdonmn3vxdh3qdypkrq0wzttx.lambda-url.us-east-1.on.aws/v1/chat/completions".to_string;
let client = ChatClient ;
By the way, feel free to use this endpoint if you want, but I don't promise to maintain it forever.
Feature flags
The following feature flags are available:
dotenv- (enabled by default) Enables automatic loading of environment variables from a.envfile.
Example of disabling dotenv:
[]
= { = "0.2", = false }
License
This project is licensed under the MIT License.
Backstory
The name stands for "thank you so much", which is how I say when I ask ChatGPT a question and get a great answer!
I like making ChatGPT-wrappers. Unfortunately the rust ecosystem for calling ChatGPT is more anemic than you would think, and it's not very complicated, so I always end up writing my own code for calling it. It's just an API endpoint after all. In my various git repos, I'd estimate I have about 5 implementations of this.
I was in the middle of writing my 6th on a lazy christmas eve when I realized that I'm too lazy to keep doing that. So I decided to solve the problem for myself once and for all.
I almost never use streaming or anything fancy like that so this library doesn't support it. I designed it with my future lazy self in mind - which is why it re-exports everything you need, has dotenv built in, and has built-in caching.
The whole library is basically one file right now, so hopefully it will be easy for you to move on from once you outgrow it.