Files
openclaw/src/auto-reply/media-understanding.test-fixtures.ts
2026-02-16 14:59:30 +00:00

26 lines
527 B
TypeScript

export function createSuccessfulImageMediaDecision() {
return {
capability: "image",
outcome: "success",
attachments: [
{
attachmentIndex: 0,
attempts: [
{
type: "provider",
outcome: "success",
provider: "openai",
model: "gpt-5.2",
},
],
chosen: {
type: "provider",
outcome: "success",
provider: "openai",
model: "gpt-5.2",
},
},
],
} as const;
}