mirror of
https://github.com/symfony/ai.git
synced 2026-03-23 23:42:18 +01:00
* demo-repo/restructure: (31 commits) refactor: restructure into demo folder chore: update to llm-chain 0.22 (#27) refactor: more error handling in vidoe example chore: symfony 7.3 update fix: pin chroma db version and clean up (#26) feat: add demo of GPT vision capabilities based on video stream (#22) chore: dependecy update (#23) feat: extend wikipedia system prompt by tools (#21) chore: update to lib v0.19 (#20) refactor: optimize audio chat ui (#19) feat: audio example (#18) chore: updating dependencies (#17) chore: composer update incl twig cve patch (#16) chore: llm chain update with system_prompt support (#15) chore: install bundle 0.12 (#14) chore: update to llm-chain 0.11.0 (#13) chore: library update (#12) refactor: follow up on example structure to have them cleaner and more separated (#11) fix: typed animation only on xhr responses (#10) refactor: moving classes to a more component like structure (#9) ...
43 lines
1010 B
PHP
43 lines
1010 B
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of the Symfony package.
|
|
*
|
|
* (c) Fabien Potencier <fabien@symfony.com>
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
return [
|
|
'app' => [
|
|
'path' => './assets/app.js',
|
|
'entrypoint' => true,
|
|
],
|
|
'@symfony/ux-live-component' => [
|
|
'path' => './vendor/symfony/ux-live-component/assets/dist/live_controller.js',
|
|
],
|
|
'@symfony/stimulus-bundle' => [
|
|
'path' => './vendor/symfony/stimulus-bundle/assets/dist/loader.js',
|
|
],
|
|
'bootstrap' => [
|
|
'version' => '5.3.3',
|
|
],
|
|
'@popperjs/core' => [
|
|
'version' => '2.11.8',
|
|
],
|
|
'bootstrap/dist/css/bootstrap.min.css' => [
|
|
'version' => '5.3.3',
|
|
'type' => 'css',
|
|
],
|
|
'@hotwired/stimulus' => [
|
|
'version' => '3.2.2',
|
|
],
|
|
'@hotwired/turbo' => [
|
|
'version' => '8.0.4',
|
|
],
|
|
'typed.js' => [
|
|
'version' => '2.1.0',
|
|
],
|
|
];
|