We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 175c860 commit 070fe74Copy full SHA for 070fe74
packages/agents-openai/src/openaiResponsesModel.ts
@@ -366,7 +366,7 @@ function isMessageItem(item: protocol.ModelItem): item is protocol.MessageItem {
366
}
367
368
function getPrompt(prompt: ModelRequest['prompt']): {
369
- prompt_id: string;
+ id: string;
370
version?: string;
371
variables?: Record<string, any>;
372
} | null {
@@ -385,7 +385,7 @@ function getPrompt(prompt: ModelRequest['prompt']): {
385
386
387
return {
388
- prompt_id: prompt.promptId,
+ id: prompt.promptId,
389
version: prompt.version,
390
variables: transformedVariables,
391
};
0 commit comments