mirror of
https://github.com/getpaseo/paseo.git
synced 2026-07-29 12:01:31 +00:00
fix(omp): accept nullable model context windows (#2406)
This commit is contained in:
@@ -186,6 +186,40 @@ describe("OMP CLI runtime", () => {
|
||||
]);
|
||||
});
|
||||
|
||||
test("accepts model catalogs with null contextWindow from NVIDIA", async () => {
|
||||
const child = createOmpChild();
|
||||
replyToCommands(child, () => ({
|
||||
models: [
|
||||
{
|
||||
provider: "nvidia",
|
||||
id: "minimaxai/minimax-m3",
|
||||
name: "MiniMax-M3",
|
||||
contextWindow: null,
|
||||
},
|
||||
{
|
||||
provider: "zai",
|
||||
id: "glm-5.2",
|
||||
name: "GLM-5.2",
|
||||
contextWindow: 131_072,
|
||||
},
|
||||
],
|
||||
}));
|
||||
const session = await createRuntime(child).startSession({ cwd: "/workspace/project" });
|
||||
|
||||
await expect(session.getAvailableModels()).resolves.toEqual([
|
||||
expect.objectContaining({
|
||||
provider: "nvidia",
|
||||
id: "minimaxai/minimax-m3",
|
||||
contextWindow: null,
|
||||
}),
|
||||
expect.objectContaining({
|
||||
provider: "zai",
|
||||
id: "glm-5.2",
|
||||
contextWindow: 131_072,
|
||||
}),
|
||||
]);
|
||||
});
|
||||
|
||||
test("wraps OMP subagent RPC commands", async () => {
|
||||
const child = createOmpChild();
|
||||
const commands: Record<string, unknown>[] = [];
|
||||
|
||||
@@ -103,7 +103,7 @@ export const OmpModelSchema = z
|
||||
name: z.string().optional(),
|
||||
reasoning: z.boolean().optional(),
|
||||
thinking: OmpModelThinkingSchema.optional(),
|
||||
contextWindow: z.number().optional(),
|
||||
contextWindow: z.number().nullable().optional(),
|
||||
maxTokens: z.number().nullable().optional(),
|
||||
api: z.string().optional(),
|
||||
baseUrl: z.string().optional(),
|
||||
|
||||
Reference in New Issue
Block a user