MCPcopy Create free account
hub / github.com/MoonshotAI/kimi-code / managedModelsResponse

Function managedModelsResponse

packages/oauth/test/toolkit.test.ts:57–70  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

55});
56
57function managedModelsResponse(): Response {
58 return new Response(
59 JSON.stringify({
60 data: [
61 {
62 id: 'kimi-for-coding',
63 context_length: 262144,
64 supports_reasoning: true,
65 },
66 ],
67 }),
68 { status: 200, headers: { 'Content-Type': 'application/json' } },
69 );
70}
71
72function fetchInputUrl(input: unknown): string {
73 if (typeof input === 'string') return input;

Callers 1

toolkit.test.tsFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected