From 9391a64a8b9b22da9121590a66be26de4c42f7e9 Mon Sep 17 00:00:00 2001 From: abhaysingh1122 <76894796+abhaysingh1122@users.noreply.github.com> Date: Sun, 15 Jun 2025 11:51:20 +0530 Subject: [PATCH] Fix: Correct environment variable name for ElevenLabs API --- .../ai_blog_to_podcast_agent/blog_to_podcast_agent.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/starter_ai_agents/ai_blog_to_podcast_agent/blog_to_podcast_agent.py b/starter_ai_agents/ai_blog_to_podcast_agent/blog_to_podcast_agent.py index 1947967..cf6620b 100644 --- a/starter_ai_agents/ai_blog_to_podcast_agent/blog_to_podcast_agent.py +++ b/starter_ai_agents/ai_blog_to_podcast_agent/blog_to_podcast_agent.py @@ -38,7 +38,7 @@ if generate_button: else: # Set API keys as environment variables for Agno and Tools os.environ["OPENAI_API_KEY"] = openai_api_key - os.environ["ELEVENLABS_API_KEY"] = elevenlabs_api_key + os.environ["ELEVEN_LABS_API_KEY"] = elevenlabs_api_key os.environ["FIRECRAWL_API_KEY"] = firecrawl_api_key with st.spinner("Processing... Scraping blog, summarizing and generating podcast 🎶"):