import weavefrom agno.agent import Agentfrom agno.models.openai import OpenAIChat# Create and configure the agentagent = Agent(model=OpenAIChat(id="gpt-4o"), markdown=True, debug_mode=True)# Initialize Weave with your project nameweave.init("agno")# Define a function to run the agent, decorated with weave.op()@weave.op()def run(content: str): return agent.run(content)# Use the function to log a model callrun("Share a 2 sentence horror story")