├── .github └── workflows │ └── pipeline.yml ├── .gitignore ├── .php-cs-fixer.dist.php ├── LICENSE ├── Makefile ├── README.md ├── composer.json ├── phpstan.dist.neon ├── phpunit.xml ├── profiler.png ├── rector.php ├── src ├── DependencyInjection │ ├── Configuration.php │ └── LlmChainExtension.php ├── LlmChainBundle.php ├── Profiler │ ├── DataCollector.php │ ├── TraceablePlatform.php │ └── TraceableToolbox.php └── Resources │ ├── config │ └── services.php │ └── views │ ├── data_collector.html.twig │ └── icon.svg └── tests ├── DependencyInjection └── ConfigurationTest.php └── Profiler └── TraceableToolboxTest.php /.github/workflows/pipeline.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-llm/llm-chain-bundle/HEAD/.github/workflows/pipeline.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-llm/llm-chain-bundle/HEAD/.gitignore -------------------------------------------------------------------------------- /.php-cs-fixer.dist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-llm/llm-chain-bundle/HEAD/.php-cs-fixer.dist.php -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-llm/llm-chain-bundle/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-llm/llm-chain-bundle/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-llm/llm-chain-bundle/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-llm/llm-chain-bundle/HEAD/composer.json -------------------------------------------------------------------------------- /phpstan.dist.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-llm/llm-chain-bundle/HEAD/phpstan.dist.neon -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-llm/llm-chain-bundle/HEAD/phpunit.xml -------------------------------------------------------------------------------- /profiler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-llm/llm-chain-bundle/HEAD/profiler.png -------------------------------------------------------------------------------- /rector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-llm/llm-chain-bundle/HEAD/rector.php -------------------------------------------------------------------------------- /src/DependencyInjection/Configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-llm/llm-chain-bundle/HEAD/src/DependencyInjection/Configuration.php -------------------------------------------------------------------------------- /src/DependencyInjection/LlmChainExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-llm/llm-chain-bundle/HEAD/src/DependencyInjection/LlmChainExtension.php -------------------------------------------------------------------------------- /src/LlmChainBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-llm/llm-chain-bundle/HEAD/src/LlmChainBundle.php -------------------------------------------------------------------------------- /src/Profiler/DataCollector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-llm/llm-chain-bundle/HEAD/src/Profiler/DataCollector.php -------------------------------------------------------------------------------- /src/Profiler/TraceablePlatform.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-llm/llm-chain-bundle/HEAD/src/Profiler/TraceablePlatform.php -------------------------------------------------------------------------------- /src/Profiler/TraceableToolbox.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-llm/llm-chain-bundle/HEAD/src/Profiler/TraceableToolbox.php -------------------------------------------------------------------------------- /src/Resources/config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-llm/llm-chain-bundle/HEAD/src/Resources/config/services.php -------------------------------------------------------------------------------- /src/Resources/views/data_collector.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-llm/llm-chain-bundle/HEAD/src/Resources/views/data_collector.html.twig -------------------------------------------------------------------------------- /src/Resources/views/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-llm/llm-chain-bundle/HEAD/src/Resources/views/icon.svg -------------------------------------------------------------------------------- /tests/DependencyInjection/ConfigurationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-llm/llm-chain-bundle/HEAD/tests/DependencyInjection/ConfigurationTest.php -------------------------------------------------------------------------------- /tests/Profiler/TraceableToolboxTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php-llm/llm-chain-bundle/HEAD/tests/Profiler/TraceableToolboxTest.php --------------------------------------------------------------------------------