feat: add --model flag (#32)

This commit is contained in:
Devansh Jain
2025-10-30 16:07:21 -07:00
committed by GitHub
parent f71d2c9b66
commit 09e4f0b13a
14 changed files with 98 additions and 27 deletions

View File

@@ -80,7 +80,7 @@ describe("Bash tool", () => {
});
test("throws error when command is missing", async () => {
await expect(bash({} as any)).rejects.toThrow(
await expect(bash({} as Parameters<typeof bash>[0])).rejects.toThrow(
/missing required parameter.*command/,
);
});