Skip to content

Commit 227a18b

Browse files
committed
feature #954 Fix package names (fabpot)
This PR was merged into the main branch. Discussion ---------- Fix package names | Q | A | ------------- | --- | Bug fix? | no | New feature? | no <!-- please update src/**/CHANGELOG.md files --> | Docs? | yes <!-- required for new features --> | Issues | n/a <!-- prefix each issue number with "Fix #", no need to create an issue if none exist, explain below instead --> | License | MIT <!-- Replace this notice by a description of your feature/bugfix. This will help reviewers and should be a good start for the documentation. Additionally (see https://symfony.com/releases): - Always add tests and ensure they pass. - For new features, provide some code snippets to help understand usage. - Features and deprecations must be submitted against branch main. - Update/add documentation as required (we can help!) - Changelog entry should follow https://symfony.com/doc/current/contributing/code/conventions.html#writing-a-changelog-entry - Never break backward compatibility (see https://symfony.com/bc). --> Commits ------- 117523c Fix package names
2 parents 09215b4 + 117523c commit 227a18b

File tree

5 files changed

+8
-7
lines changed

5 files changed

+8
-7
lines changed

demo/composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414
"php-http/discovery": "^1.20",
1515
"runtime/frankenphp-symfony": "^0.2.0",
1616
"symfony/ai-bundle": "@dev",
17-
"symfony/ai-openmeteo-tool": "@dev",
18-
"symfony/ai-serpapi-tool": "@dev",
17+
"symfony/ai-open-meteo-tool": "@dev",
18+
"symfony/ai-serp-api-tool": "@dev",
1919
"symfony/asset": "~7.3.0",
2020
"symfony/asset-mapper": "~7.3.0",
2121
"symfony/clock": "~7.3.0",

docs/bundles/ai-bundle.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -778,8 +778,8 @@ The following tools can be installed as dedicated packages, no configuration is
778778
$ composer require symfony/ai-brave-tool
779779
$ composer require symfony/ai-firecrawl-tool
780780
$ composer require symfony/ai-mapbox-tool
781-
$ composer require symfony/ai-openmeteo-tool
782-
$ composer require symfony/ai-serpapi-tool
781+
$ composer require symfony/ai-open-meteo-tool
782+
$ composer require symfony/ai-serp-api-tool
783783
$ composer require symfony/ai-tavily-tool
784784
785785
For tools not available as dedicated packages (those in the ``Toolbox\Tool`` namespace), register them manually as services:

examples/composer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@
2020
"symfony/ai-agent": "@dev",
2121
"symfony/ai-brave-tool": "@dev",
2222
"symfony/ai-chat": "@dev",
23-
"symfony/ai-openmeteo-tool": "@dev",
23+
"symfony/ai-open-meteo-tool": "@dev",
24+
"symfony/ai-serp-api-tool": "@dev",
2425
"symfony/ai-platform": "@dev",
2526
"symfony/ai-store": "@dev",
2627
"symfony/ai-tavily-tool": "@dev",

src/agent/src/Bridge/OpenMeteo/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "symfony/ai-openmeteo-tool",
2+
"name": "symfony/ai-open-meteo-tool",
33
"description": "OpenMeteo weather AI tool bridge for Symfony applications.",
44
"license": "MIT",
55
"type": "library",

src/agent/src/Bridge/SerpApi/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "symfony/ai-serpapi-tool",
2+
"name": "symfony/ai-serp-api-tool",
33
"description": "SerpApi AI tool bridge for Symfony applications.",
44
"license": "MIT",
55
"type": "library",

0 commit comments

Comments
 (0)