AgentOps-AI / agentops

Python SDK for agent monitoring, LLM cost tracking, benchmarking, and more. Integrates with most LLMs and agent frameworks like CrewAI, Langchain, and Autogen
https://agentops.ai
MIT License
1.77k stars 170 forks source link

Fixed misordering of create_agent by adding named parameters #208

Closed HowieG closed 4 months ago

HowieG commented 4 months ago

create_agent()'s parameters were reordered because a default was added to agent_id thus forcing it to be the last parameter. We had unnamed parameters when calling it so those became out of order. Added named parameters to all calls to create_agent()