mirror of
https://github.com/symfony/recipes.git
synced 2026-09-20 11:36:33 +03:00
Add recipes for new AI bridge tools
Add Symfony Flex recipes for the new AI bridge packages extracted from symfony/ai: - symfony/ai-clock-tool: Provides time and clock-related functionality - symfony/ai-scraper-tool: Enables web scraping with CSS selector support - symfony/ai-wikipedia-tool: Provides Wikipedia search and article retrieval - symfony/ai-youtube-transcriber-tool: Provides YouTube video transcription These bridges were extracted from the core AI toolbox in symfony/ai#977.
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
services:
|
||||
_defaults:
|
||||
autowire: true
|
||||
autoconfigure: true
|
||||
|
||||
Symfony\AI\Agent\Bridge\Clock\Clock: null
|
||||
@@ -0,0 +1,5 @@
|
||||
{
|
||||
"copy-from-recipe": {
|
||||
"config/": "%CONFIG_DIR%/"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
services:
|
||||
_defaults:
|
||||
autowire: true
|
||||
autoconfigure: true
|
||||
|
||||
Symfony\AI\Agent\Bridge\Scraper\Scraper: null
|
||||
@@ -0,0 +1,5 @@
|
||||
{
|
||||
"copy-from-recipe": {
|
||||
"config/": "%CONFIG_DIR%/"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
services:
|
||||
_defaults:
|
||||
autowire: true
|
||||
autoconfigure: true
|
||||
|
||||
Symfony\AI\Agent\Bridge\Wikipedia\Wikipedia: null
|
||||
@@ -0,0 +1,5 @@
|
||||
{
|
||||
"copy-from-recipe": {
|
||||
"config/": "%CONFIG_DIR%/"
|
||||
}
|
||||
}
|
||||
+6
@@ -0,0 +1,6 @@
|
||||
services:
|
||||
_defaults:
|
||||
autowire: true
|
||||
autoconfigure: true
|
||||
|
||||
Symfony\AI\Agent\Bridge\YouTube\YouTubeTranscriber: null
|
||||
@@ -0,0 +1,5 @@
|
||||
{
|
||||
"copy-from-recipe": {
|
||||
"config/": "%CONFIG_DIR%/"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user