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.18k stars 93 forks source link

Remove Models from LLMEvent #254

Closed areibman closed 1 week ago

areibman commented 3 weeks ago

📚 Documentation Update

In LLMEvent, we have a data class for Models. However, it's no longer kept up to date. People will usually provide their own model strings. Let's remove it.

📘 Describe the current state of documentation

@dataclass
class LLMEvent(Event):
    ...
    model: Optional[Union[Models, str]] = None

to

    model: Optional[str] = None