mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-06 11:51:37 +00:00
refactor!: remove google-antigravity provider support
This commit is contained in:
@@ -1179,8 +1179,8 @@ describe("runReplyAgent fallback reasoning tags", () => {
|
||||
});
|
||||
runWithModelFallbackMock.mockImplementationOnce(
|
||||
async ({ run }: RunWithModelFallbackParams) => ({
|
||||
result: await run("google-antigravity", "gemini-3"),
|
||||
provider: "google-antigravity",
|
||||
result: await run("google-gemini-cli", "gemini-3"),
|
||||
provider: "google-gemini-cli",
|
||||
model: "gemini-3",
|
||||
}),
|
||||
);
|
||||
@@ -1199,8 +1199,8 @@ describe("runReplyAgent fallback reasoning tags", () => {
|
||||
return { payloads: [{ text: "ok" }], meta: {} };
|
||||
});
|
||||
runWithModelFallbackMock.mockImplementation(async ({ run }: RunWithModelFallbackParams) => ({
|
||||
result: await run("google-antigravity", "gemini-3"),
|
||||
provider: "google-antigravity",
|
||||
result: await run("google-gemini-cli", "gemini-3"),
|
||||
provider: "google-gemini-cli",
|
||||
model: "gemini-3",
|
||||
}));
|
||||
|
||||
|
||||
Reference in New Issue
Block a user