Common Issues and Solutions

Installation Issues

Problem: Import Errors

ImportError: No module named 'agentneo'

Solution:

  1. Verify installation:

pip list | grep agentneo
  1. Reinstall package:

pip uninstall agentneo
pip install agentneo

Problem: Version Conflicts

Solution:

pip install --upgrade agentneo
pip install --upgrade "agentneo[all]"

Tracing Issues

Problem: Decorators Not Working

@tracer.trace_llm()
def my_function():
    # Function not being traced

Solution:

  1. Verify tracer initialization

Problem: Missing Data in Dashboard

Solution:

  1. Check tracer status

  2. Verify data storage

  3. Ensure proper stopping

Dashboard Issues

Problem: Connection Refused

Solution:

  1. Check port availability

  2. Verify server status

  3. Try alternative port

Evaluation Issues

Problem: Metrics Not Computing

Solution:

  1. Verify trace data exists

  2. Check metric configuration

Last updated