Skip to content

Commit 1e0c2f8

Browse files
committed
Correct LLM provider count to 11 across README, docs, corpus, and tests
1 parent 5024065 commit 1e0c2f8

6 files changed

Lines changed: 8 additions & 8 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<br />
88

9-
# **AgentOS** · TypeScript AI Agent Runtime
9+
# **AgentOS** · TypeScript AI Agent Framework
1010

1111
**Agents that remember, forge their own tools, and survive long-running sessions.** Persistent cognitive memory, optional HEXACO personality, multi-agent orchestration, and one dispatch interface across 11 LLM providers. Apache-2.0.
1212

@@ -27,7 +27,7 @@
2727

2828
---
2929

30-
AgentOS is an open-source TypeScript runtime for AI agents that **remember, adapt, and write their own tools**.
30+
AgentOS is an open-source TypeScript framework for AI agents that **remember, adapt, and write their own tools**.
3131

3232
- **85.6% on [LongMemEval-S](https://github.com/framersai/agentos-bench/blob/master/results/LEADERBOARD.md)** at $0.0090 per correct answer (gpt-4o reader): +1.4 points over Mastra OM gpt-4o (84.23%), 0.4 behind Emergence.ai's 86% closed-source SOTA.
3333
- **70.2% on LongMemEval-M** (1.5M-token haystacks, 500 sessions per question): the only open-source library on the public record above 65% on M with publicly reproducible methodology.

docs/getting-started/GETTING_STARTED.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ flowchart LR
181181
```
182182

183183
- **Agent** — the runtime loop. Receives input, calls the LLM, executes tool calls, retrieves memory, returns a response. `agent()` and `agency()` are the two factories that build one.
184-
- **LLM** — the language model. AgentOS routes through 21 provider adapters; the agent does not care which one you pick.
184+
- **LLM** — the language model. AgentOS routes through 11 provider adapters; the agent does not care which one you pick.
185185
- **Memory** — what survives across turns and sessions. Working memory (short-term scratchpad) plus cognitive memory (episodic, semantic, procedural traces with Ebbinghaus decay, retrieval-induced forgetting, and reconsolidation).
186186
- **Tools** — functions the agent can invoke when the LLM decides it needs one. Pre-registered tools work the same way runtime-generated tools do once approved by the LLM judge.
187187

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@framers/agentos",
33
"version": "0.9.23",
4-
"description": "AgentOS: open-source TypeScript runtime for autonomous AI agents. Unified graph orchestration, cognitive memory, runtime tool forging, multi-tier guardrails, voice pipeline, and 11 LLM providers.",
4+
"description": "AgentOS: open-source TypeScript framework for autonomous AI agents. Unified graph orchestration, cognitive memory, runtime tool forging, multi-tier guardrails, voice pipeline, and 11 LLM providers.",
55
"homepage": "https://agentos.sh",
66
"repository": {
77
"type": "git",

scripts/build-knowledge-corpus.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ function getFaqEntries(skillCount = 0) {
210210
id: 'faq:supported-models',
211211
heading: 'What LLM models are supported?',
212212
content:
213-
'AgentOS supports 21 LLM providers: OpenAI (gpt-4o, gpt-4o-mini), Anthropic (claude-sonnet, claude-haiku, claude-opus), Google (gemini-2.5-pro, gemini-2.5-flash), Ollama (any local model), OpenRouter (800+ models), plus Groq, Together, Fireworks, Mistral, Cohere, Perplexity, DeepSeek, xAI, and more.',
213+
'AgentOS supports 11 LLM providers: OpenAI (gpt-4o, gpt-4o-mini), Anthropic (claude-sonnet, claude-haiku, claude-opus), Google Gemini (gemini-2.5-pro, gemini-2.5-flash), Groq, Together AI, Mistral, xAI, OpenRouter (fans out to 200+ models), and Ollama (any local model), plus CLI bridges for Claude Code and Gemini CLI.',
214214
category: 'faq',
215215
},
216216
{
@@ -489,7 +489,7 @@ function getApiReferenceEntries() {
489489
id: 'api:generateText',
490490
heading: 'generateText() API',
491491
content:
492-
"import { generateText } from '@framers/agentos'. generateText({ model: 'openai:gpt-4o', prompt: 'Hello', system?: '...', tools?: [...], maxSteps?: 5, temperature?: 0.7 }) -> Promise<{ text, provider, model, usage, toolCalls }>. The core text generation function supporting all 21 LLM providers.",
492+
"import { generateText } from '@framers/agentos'. generateText({ model: 'openai:gpt-4o', prompt: 'Hello', system?: '...', tools?: [...], maxSteps?: 5, temperature?: 0.7 }) -> Promise<{ text, provider, model, usage, toolCalls }>. The core text generation function supporting all 11 LLM providers.",
493493
category: 'api',
494494
},
495495
{

src/orchestration/pipeline/query/__tests__/platform-knowledge.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ const PLATFORM_CORPUS_FIXTURE = JSON.stringify([
3434
id: 'api:generateText',
3535
heading: 'generateText() API',
3636
content:
37-
"import { generateText } from '@framers/agentos'. Core text generation function supporting all 21 LLM providers.",
37+
"import { generateText } from '@framers/agentos'. Core text generation function supporting all 11 LLM providers.",
3838
category: 'api',
3939
},
4040
{

tests/e2e/platform-knowledge.e2e.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ describe('Platform Knowledge — e2e', () => {
178178

179179
// Generator mock
180180
mockGenerateText.mockResolvedValueOnce({
181-
text: 'AgentOS supports 21 LLM providers including OpenAI, Anthropic, Google, and Ollama.',
181+
text: 'AgentOS supports 11 LLM providers including OpenAI, Anthropic, Google, and Ollama.',
182182
provider: 'openai',
183183
model: 'gpt-4o-mini',
184184
usage: { promptTokens: 150, completionTokens: 40, totalTokens: 190 },

0 commit comments

Comments
 (0)