mirror of
https://github.com/modelstudioai/cli.git
synced 2026-09-14 19:49:23 +08:00
9 lines
282 B
TypeScript
9 lines
282 B
TypeScript
import { describe, expect, test } from "vite-plus/test";
|
|
import { responsesPath } from "../src/index.ts";
|
|
|
|
describe("Responses API", () => {
|
|
test("uses the OpenAI-compatible Responses endpoint", () => {
|
|
expect(responsesPath()).toBe("/compatible-mode/v1/responses");
|
|
});
|
|
});
|