mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-08 01:11:23 +00:00
26 lines
527 B
TypeScript
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;
|
|
}
|