"Could not create Agent run: [SSL: CERTIFICATE_VERIFY_FAILED] "


I am starting to work with the Agno framework and conducting my first tests with agents. The model I am using is AzureOpenAI. In addition to the default configurations, I am also specifying a custom HTTP client because I need to use a specific certificate (CA file).

The agents are able to respond to questions successfully; however, when enabling DEBUG mode, I noticed the following message after execution:

Could not create Agent run: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: self signed certificate in certificate chain (_ssl.c:992)

Could someone guide me on how to resolve this issue? Why are we able to use the model, but this error message still appears?

Hi @Muskau, hanks 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 @Muskau !

At the end of a run, the Agent makes a telemetry API call to the Agno server. This call doesn’t record any sensitive data it only logs the model used and that a run was made, and we use it strictly for internal testing.

If you’d prefer to disable it, you can do so by setting telemetry = False on the Agent

1 Like

It worked, thank you very much!!