-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
40 lines (40 loc) · 1.34 KB
/
Copy pathcomposer.json
File metadata and controls
40 lines (40 loc) · 1.34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{
"name": "tacman/ai-batch-bundle",
"description": "Async batch AI processing for Symfony. Implements OpenAI Batch API and Anthropic Message Batches with Symfony Scheduler polling. Proposed for symfony/ai.",
"type": "symfony-bundle",
"license": "MIT",
"keywords": ["symfony", "ai", "batch", "openai", "anthropic", "async"],
"authors": [
{"name": "Survos", "homepage": "https://survos.com"}
],
"autoload": {
"psr-4": {
"Tacman\\AiBatch\\": "src/"
}
},
"require": {
"doctrine/doctrine-bundle": "^2.13|^3.0",
"doctrine/orm": "^3.3",
"php": "^8.4",
"symfony/ai": "dev-feature/batch-processing as 1.0",
"symfony/framework-bundle": "^7.4|^8.0",
"symfony/http-client": "^7.4|^8.0",
"symfony/messenger": "^7.4|^8.0",
"symfony/scheduler": "^7.4|^8.0"
},
"suggest": {
"doctrine/orm": "For persisting AiBatch entities",
"symfony/messenger": "For async result processing",
"symfony/ai-agent": "For building batch requests from Agent/MessageBag patterns"
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"phpunit/phpunit": "^11.0|^12.0|^13.0",
"symfony/ai-agent": "*"
},
"extra": {
"symfony": {
"require": "^7.4|^8.0"
}
}
}