展示如何分析 Agent 运行时的运行时和内存使用情况的示例,根据其回复。
"""运行 `pip install openai agno memory_profiler` 来安装依赖项。"""
from agno.agent import Agent
from agno.eval.performance import PerformanceEval
from agno.models.openai import OpenAIChat
def simple_response():
agent = Agent(
model=OpenAIChat(id="gpt-4o-mini"),
system_message="Be concise, reply with one sentence.",
)
response = agent.run("What is the capital of France?")
return response
simple_response_perf = PerformanceEval(
func=simple_response, num_iterations=1, warmup_runs=0
)
if __name__ == "__main__":
simple_response_perf.run(print_results=True, print_summary=True)