Make sure to call agentops.init before calling any openai, cohere, crew, etc models.
import multionfrom multion.client import MultiOn# Initialize MultiOn with both a MultiOn API key and an AgentOps API keymultion = MultiOn( api_key=<INSERT YOUR MULTION API KEY HERE>, agentops_api_key=<INSERT YOUR AGENTOPS API KEY HERE>)browse_response = multion.browse( cmd="what three things do i get with agentops", url="https://www.agentops.ai/", max_steps=4, include_screenshot=True) print(browse_response.message)
Set your API key as an .env variable for easy access.