from manim import * class ExampleScene(Scene): def construct(self): text = Text("Hello, HuggingFace!") self.play(Write(text)) self.wait(1)