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 27f2ccb commit abef115Copy full SHA for abef115
src/platform/src/Bridge/OpenAi/Gpt.php
@@ -81,9 +81,12 @@ public function __construct(
81
Capability::INPUT_MESSAGES,
82
Capability::OUTPUT_TEXT,
83
Capability::OUTPUT_STREAMING,
84
- Capability::TOOL_CALLING,
85
];
86
+ if (self::GPT_5_CHAT !== $name) {
87
+ $capabilities[] = Capability::TOOL_CALLING;
88
+ }
89
+
90
if (self::GPT_4O_AUDIO === $name) {
91
$capabilities[] = Capability::INPUT_AUDIO;
92
}
0 commit comments