Model Providers
Ollama
If you use Ollama within your application, you can trace, monitor, and analyze them with Judgment using OllamaInstrumentor.
OpenTelemetry
pip install opentelemetry-instrumentation-ollamafrom judgeval import Judgeval
# Make sure you installed the dependency: opentelemetry-instrumentation-ollama
from opentelemetry.instrumentation.ollama import OllamaInstrumentor
client = Judgeval(project_name="ollama_project")
tracer = client.tracer.create()
OllamaInstrumentor().instrument()