Skip to content

Commit a19173f

Browse files
committed
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.
1 parent 7e8de6e commit a19173f

File tree

8 files changed

+44
-0
lines changed

8 files changed

+44
-0
lines changed
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
services:
2+
_defaults:
3+
autowire: true
4+
autoconfigure: true
5+
6+
Symfony\AI\Agent\Bridge\Clock\Clock: null
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"copy-from-recipe": {
3+
"config/": "%CONFIG_DIR%/"
4+
}
5+
}
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
services:
2+
_defaults:
3+
autowire: true
4+
autoconfigure: true
5+
6+
Symfony\AI\Agent\Bridge\Scraper\Scraper: null
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"copy-from-recipe": {
3+
"config/": "%CONFIG_DIR%/"
4+
}
5+
}
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
services:
2+
_defaults:
3+
autowire: true
4+
autoconfigure: true
5+
6+
Symfony\AI\Agent\Bridge\Wikipedia\Wikipedia: null
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"copy-from-recipe": {
3+
"config/": "%CONFIG_DIR%/"
4+
}
5+
}
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
services:
2+
_defaults:
3+
autowire: true
4+
autoconfigure: true
5+
6+
Symfony\AI\Agent\Bridge\YouTube\YouTubeTranscriber: null
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"copy-from-recipe": {
3+
"config/": "%CONFIG_DIR%/"
4+
}
5+
}

0 commit comments

Comments
 (0)