Use Agno with Tuning Engines as an OpenAI-compatible endpoint.
basic.py
"""Use Agno with Tuning Engines as an OpenAI-compatible endpoint."""from os import getenvfrom agno.agent import Agentfrom agno.models.tuning_engines import TuningEnginesagent = Agent( model=TuningEngines( id=getenv("TUNING_ENGINES_MODEL", "gpt-4o"), ), markdown=True,)agent.print_response( "Explain how governance, traces, and usage reporting help production AI agents.", stream=True,)