Skip to content

Commit

Permalink
Merge pull request #31 from mrunkel/main
Browse files Browse the repository at this point in the history
Add openai_key as an option to the Symfony config
  • Loading branch information
amacrobert authored Jan 8, 2025
2 parents 071513b + fb34029 commit 0eadf07
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/DependencyInjection/Configuration.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,10 @@ public function getConfigTreeBuilder(): TreeBuilder
->defaultValue('%kernel.debug%')
->info('Avoid rendering Ignition, for example in production environments.')
->end()
->scalarNode('openai_key')
->defaultValue('')
->info('if you want AI solutions to your app\'s errors.')
->end()
->end();

return $treeBuilder;
Expand Down

0 comments on commit 0eadf07

Please sign in to comment.