manim-mcp / neuroanim /__init__.py
bhaveshgoel07's picture
Complete NeuroAnim HF Spaces deployment - all source files
0805c5b
raw
history blame contribute delete
584 Bytes
"""
NeuroAnim - LangGraph-based Animation Pipeline
This package provides a modular, graph-based workflow for generating
educational STEM animations using Manim, AI models, and TTS.
The pipeline uses LangGraph to coordinate multiple agent nodes that handle:
- Concept planning
- Code generation
- Rendering
- Audio generation
- Video processing
"""
from neuroanim.graph.state import AnimationState, create_initial_state
from neuroanim.graph.workflow import run_animation_pipeline
__version__ = "0.1.0"
__all__ = ["run_animation_pipeline", "create_initial_state", "AnimationState"]