@@ -34,7 +34,7 @@ Configuration
34
34
class : ' Symfony\AI\Platform\Bridge\OpenAi\Gpt'
35
35
name : !php/const Symfony\AI\Platform\Bridge\OpenAi\Gpt::GPT_4O_MINI
36
36
37
- **Advanced Example with Anthropic, Azure, Gemini and multiple agents **
37
+ **Advanced Example with Anthropic, Azure, ElevenLabs, Gemini, Ollama multiple agents **
38
38
39
39
.. code-block :: yaml
40
40
@@ -50,6 +50,10 @@ Configuration
50
50
deployment : ' %env(AZURE_OPENAI_GPT)%'
51
51
api_key : ' %env(AZURE_OPENAI_KEY)%'
52
52
api_version : ' %env(AZURE_GPT_VERSION)%'
53
+ eleven_labs :
54
+ host : ' %env(ELEVEN_LABS_HOST)%'
55
+ api_key : ' %env(ELEVEN_LABS_API_KEY)%'
56
+ output_path : ' %env(ELEVEN_LABS_OUTPUT_PATH)%'
53
57
gemini :
54
58
api_key : ' %env(GEMINI_API_KEY)%'
55
59
ollama :
@@ -85,6 +89,12 @@ Configuration
85
89
tools : # If undefined, all tools are injected into the agent, use "tools: false" to disable tools.
86
90
- ' Symfony\AI\Agent\Toolbox\Tool\Wikipedia'
87
91
fault_tolerant_toolbox : false # Disables fault tolerant toolbox, default is true
92
+ audio :
93
+ platform : ' ai.platform.eleven_labs'
94
+ model :
95
+ class : ' Symfony\AI\Platform\Bridge\ElevenLabs'
96
+ name : !php/const Symfony\AI\Platform\Bridge\ElevenLabs::TEXT_TO_SPEECH
97
+ tools : false
88
98
store :
89
99
# also azure_search, meilisearch, memory, mongodb, pinecone, qdrant and surrealdb are supported as store type
90
100
chroma_db :
0 commit comments