From 88784e54eb9d83ee06cfb6082e85f859932b251a Mon Sep 17 00:00:00 2001 From: Thibault Jaigu Date: Mon, 22 Jun 2026 09:10:36 +0100 Subject: [PATCH] docs: add Requesty as an OpenAI-compatible provider example --- README.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/README.md b/README.md index 0fe313b4a..8b9c1a977 100644 --- a/README.md +++ b/README.md @@ -332,6 +332,16 @@ genie = OpenAIGenie(model="meta-llama/llama-4-maverick", api_key="your_api_key") ``` +Or, here's how to use the `OpenAIGenie` to interact with the `gpt-4o-mini` model via Requesty: + +```python +from chonkie import OpenAIGenie + +genie = OpenAIGenie(model="openai/gpt-4o-mini", + base_url="https://router.requesty.ai/v1", + api_key="your_api_key") +``` +