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 b9bfe58 commit b34d32cCopy full SHA for b34d32c
src/ai-bundle/config/options.php
@@ -76,6 +76,11 @@
76
->scalarNode('host_url')->defaultValue('http://127.0.0.1:11434')->end()
77
->end()
78
79
+ ->arrayNode('cerebras')
80
+ ->children()
81
+ ->scalarNode('api_key')->isRequired()->end()
82
+ ->end()
83
84
85
86
->arrayNode('agent')
src/ai-bundle/tests/DependencyInjection/AiBundleTest.php
@@ -323,6 +323,9 @@ private function getFullConfig(): array
323
'ollama' => [
324
'host_url' => 'http://127.0.0.1:11434',
325
],
326
+ 'cerebras' => [
327
+ 'api_key' => 'cerebras_key_full',
328
+ ],
329
330
'agent' => [
331
'my_chat_agent' => [
0 commit comments