docs: add Kelly Intelligence example to other-models.md#1401
Open
nicoletterankin wants to merge 1 commit intosimonw:mainfrom
Open
docs: add Kelly Intelligence example to other-models.md#1401nicoletterankin wants to merge 1 commit intosimonw:mainfrom
nicoletterankin wants to merge 1 commit intosimonw:mainfrom
Conversation
Adds a small example block in the OpenAI-compatible models section showing how to use Kelly Intelligence — a free OpenAI-compatible API with a 162K-word vocabulary RAG layer, built on Claude — via extra-openai-models.yaml. Operated by Lesson of the Day, PBC, a public benefit corporation. Free tier (500 calls/month) requires no credit card. Also documents the public no-auth /v1/demo endpoint readers can hit without signing up. No code changes; documentation only.
Author
|
Hi Simon — following up on this small docs addition. It adds Kelly Intelligence as an OpenAI-compatible provider example in other-models.md. The endpoint is live and functional. Happy to adjust the wording if you'd prefer a different format! |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What this adds
A small example block in the existing OpenAI-compatible models section of
docs/other-models.md, showing how to use Kelly Intelligence viaextra-openai-models.yaml.Kelly Intelligence is a free OpenAI-compatible API with a built-in 162,000-word vocabulary RAG layer (601K translations across 47 languages) and an opinionated AI tutor persona ("Kelly"), built on top of Claude. It's operated by Lesson of the Day, PBC, a public benefit corporation. The free tier (500 calls/month) requires no credit card.
Why this is useful for
llmusersllmusers building education, language-learning, and writing-assistant tools frequently want a vocabulary RAG layer alongside their model calls. Because Kelly Intelligence is OpenAI-compatible, it's already supported byllmvia the existingextra-openai-models.yamlmechanism — this PR just makes that more discoverable by adding a working example.The example mirrors the shape of the existing LocalAI and OpenRouter examples already on this page.
Try it without an API key (for review)
Kelly Intelligence has a public
/v1/demoendpoint, IP-rate-limited at 5 requests per hour, that you can hit with no signup at all:This is the same wire format
llmwould use against Kelly via the documented yaml config.Changes
docs/other-models.md(+34 lines, 0 deletions) — adds an "Example: Kelly Intelligence" subsection in the existing "Extra HTTP headers" area, parallel to the OpenRouter example.No code changes. No new files. The doc page already has a section dedicated to OpenAI-compatible models, so this slots in.
Checklist