hi everyone, i just set up a vm to test agno. wondering if I am doing something wrong as I tested the playground.py example from the docs. when referenceing within the vm as localhost:7777, it opens up fine (Agents - Agno). but when i try to reference it as an external ip from app.agno.com interface, it quickly returns a Failed to load endpoint error. I am certain the vm is reachable from the outside. any thoughts on what I am doing wrong?
Hey @generalya
thanks for reaching out and supporting Agno. I’ve shared this with the team, we’re working through all requests one by one and will get back to you soon.If it’s urgent, please let us know. We appreciate your patience!
Hi @generalya Agno needs a public, stable, HTTPS-exposed tunnel** to interact with your local agent. External IP often lacks TLS (HTTPS), CORS config, and stable hostname — leading to “Failed to load endpoint” error.
You can try running cloudflared tunnel --url http://localhost:7777
. This will give you a .trycloudflare.com
URL which can be used as an endpoint in playground. Let me know if this works. Thanks.