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
2 changes: 1 addition & 1 deletion CLAUDE.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# mock-openai
# llmock

## Before Every Commit

Expand Down
2 changes: 1 addition & 1 deletion docs/CNAME
Original file line number Diff line number Diff line change
@@ -1 +1 @@
mock-openai.copilotkit.dev
llmock.copilotkit.dev
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@copilotkit/mock-openai",
"name": "@copilotkit/llmock",
"version": "1.0.0",
"description": "Deterministic mock OpenAI server for testing",
"description": "Deterministic mock LLM server for testing (OpenAI, Anthropic, Gemini)",
"license": "MIT",
"packageManager": "pnpm@10.28.2",
"type": "module",
Expand All @@ -21,7 +21,7 @@
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"mock-openai": "./dist/cli.js"
"llmock": "./dist/cli.js"
},
"files": [
"dist",
Expand Down
2 changes: 1 addition & 1 deletion src/__tests__/cli.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ function writeFixture(dir: string, name: string): string {
describe.skipIf(!CLI_AVAILABLE)("CLI: --help", () => {
it("prints usage text and exits with code 0", async () => {
const { stdout, code } = await runCli(["--help"]);
expect(stdout).toContain("Usage: mock-openai");
expect(stdout).toContain("Usage: llmock");
expect(stdout).toContain("--port");
expect(stdout).toContain("--fixtures");
expect(code).toBe(0);
Expand Down
Loading
Loading