I’m developing an Anna App that generates Manim animations through an Executa plugin. I have been debugging my application and found that the failure appears to occur before my application code reaches the rendering stage. My app invokes: sampling/createMessage llm.complete to generate Manim code. The request consistently fails with:
HTTP 502 Bad Gateway
anna.partners
Host Error
Cloudflare reports:
Browser: Working
Cloudflare: Working
Host: Error
Evidence that this is not related to my Manim rendering pipeline My render pipeline never starts. The logs show:
RPC METHOD: sampling/createMessage
followed immediately by:
RPCError: HTTP 502
The following stages are never reached:
render_animation
_render_in_background()
manim render
ffmpeg merge
I also added debug logging around the renderer and none of those logs appear because execution fails before rendering begins. Verification using the official example To rule out issues in my codebase, I ran the official example: anna-executa-examples/examples/anna-app-llm-demo at main · whtcjdtc2007/anna-executa-examples · GitHub without modifications. The official demo also fails when calling:
llm.complete
with a simple prompt:
Hello, Anna
and returns:
HTTP 502 Bad Gateway
anna.partners
Host Error
This suggests the issue is reproducible even with the official example. Environment
-
Anna App Developer CLI
-
Anna Runtime Local
-
Executa plugin
-
macOS
-
Reproduced with both:
-
Official LLM Demo
- Custom Manim application
Question
Is there currently an outage or issue affecting:
llm.complete
sampling/createMessage
Anna-hosted LLM services
or is there a known configuration/API change required for Anna Apps using these endpoints?
Thank you.