AI-Powered Mathematical Animation Platform
PythonDjangoFastAPISvelteKitTypeScriptMySQLRedisRabbitMQCeleryDockerAWS S3CloudFrontManimOpenAI APIAnthropic APIElevenLabsWebSocketsJWTMyPy
View Details →
async def orchestrate_animation_generation(prompt: str):
"""Multi-agent orchestration for Manim video generation"""
# Phase 1: Concept extraction with specialized agent
concept_agent = ConceptExtractionAgent(
model="gpt-4",
math_knowledge_base=self.kb
)
concepts = await concept_agent.extract(prompt)
# Phase 2: Parallel script generation with retry logic
script_tasks = []
python