Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 304001d

Browse files
authored
Merge pull request #1505 from OskarStark/OskarStark/ai-platform-recipes
Add `symfony/ai-*-platform` recipes
2 parents 2dfcf7a + a5d6b41 commit 304001d

File tree

52 files changed

+302
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

52 files changed

+302
-0
lines changed
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
ai:
2+
platform:
3+
aimlapi:
4+
api_key: '%env(AIMLAPI_API_KEY)%'
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"copy-from-recipe": {
3+
"config/": "%CONFIG_DIR%/"
4+
},
5+
"env": {
6+
"AIMLAPI_API_KEY": ""
7+
}
8+
}
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
ai:
2+
platform:
3+
albert:
4+
api_key: '%env(ALBERT_API_KEY)%'
5+
base_url: '%env(ALBERT_BASE_URL)%'
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"copy-from-recipe": {
3+
"config/": "%CONFIG_DIR%/"
4+
},
5+
"env": {
6+
"ALBERT_API_KEY": "",
7+
"#1": "ALBERT_BASE_URL=https://api.albert.ai/v1"
8+
}
9+
}
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
ai:
2+
platform:
3+
anthropic:
4+
api_key: '%env(ANTHROPIC_API_KEY)%'
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"copy-from-recipe": {
3+
"config/": "%CONFIG_DIR%/"
4+
},
5+
"env": {
6+
"ANTHROPIC_API_KEY": ""
7+
}
8+
}
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
ai:
2+
platform:
3+
azure:
4+
api_key: '%env(AZURE_API_KEY)%'
5+
base_url: '%env(AZURE_BASE_URL)%'
6+
deployment: '%env(AZURE_DEPLOYMENT)%'
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"copy-from-recipe": {
3+
"config/": "%CONFIG_DIR%/"
4+
},
5+
"env": {
6+
"AZURE_API_KEY": "",
7+
"#1": "AZURE_BASE_URL=https://YOUR_RESOURCE_NAME.openai.azure.com",
8+
"#2": "AZURE_DEPLOYMENT=YOUR_DEPLOYMENT_NAME"
9+
}
10+
}
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
ai:
2+
platform:
3+
bedrock: 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)