Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -648,9 +648,9 @@ Areas where llmock could grow, and explicit non-goals for the current scope.

## Real-World Usage

[CopilotKit](https://github.com/CopilotKit/CopilotKit) uses llmock in its E2E test suite to verify AI agent behavior across multiple LLM providers without hitting real APIs. The tests exercise the full stack — Playwright driving a Next.js app whose CopilotKit runtime talks to llmock — providing reproducible, fast, and deterministic coverage of streaming text, tool calls, and multi-turn conversations.
[CopilotKit](https://github.com/CopilotKit/CopilotKit) uses llmock across its test suite to verify AI agent behavior across multiple LLM providers without hitting real APIs. The tests cover streaming text, tool calls, and multi-turn conversations across both v1 and v2 runtimes.

See the [CopilotKit E2E test fixtures](https://github.com/CopilotKit/CopilotKit/tree/main/tests/e2e) for real-world examples of llmock in action.
See the [CopilotKit test suite](https://github.com/CopilotKit/CopilotKit/search?q=llmock&type=code) for real-world examples of llmock in action.

## License

Expand Down
13 changes: 7 additions & 6 deletions docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -1357,15 +1357,16 @@ <h2 class="section-title">llmock vs MSW</h2>
<h2>Real-World Usage</h2>
<p>
<a href="https://github.com/CopilotKit/CopilotKit" target="_blank">CopilotKit</a> uses
llmock in its E2E test suite to verify AI agent behavior across multiple LLM providers
without hitting real APIs. The tests exercise the full stack &mdash; Playwright driving a
Next.js app whose CopilotKit runtime talks to llmock &mdash; providing reproducible, fast,
and deterministic coverage of streaming text, tool calls, and multi-turn conversations.
llmock across its test suite to verify AI agent behavior across multiple LLM providers
without hitting real APIs. The tests cover streaming text, tool calls, and multi-turn
conversations across both v1 and v2 runtimes.
</p>
<p>
See the
<a href="https://github.com/CopilotKit/CopilotKit/tree/main/tests/e2e" target="_blank"
>CopilotKit E2E test fixtures</a
<a
href="https://github.com/CopilotKit/CopilotKit/search?q=llmock&amp;type=code"
target="_blank"
>CopilotKit test suite</a
>
for real-world examples of llmock in action.
</p>
Expand Down
Loading