AgentNeo
RagaAIPackageGitHub
  • AgentNeo
  • Getting Started
    • Overview
    • Quick Start Guide
    • Installation Guide
  • Features
    • Architecture
    • Basic Usage
    • Components
    • Key Features
    • Dashboard
  • Developer Guide
    • Advanced Usage
    • API Documentation
    • Database
  • Evaluation & Metrics
    • Metric Configuration
    • Overview
    • Supported Metrics
  • Contributing
    • Guidelines
    • Pull Request Process
    • Development Setup
  • Troubleshooting
    • Common Issues and Solutions
    • Frequently Asked Questions
  • Release Information
    • Breaking Changes
    • Version History
  • Reference
    • Glossary
    • Changelog
Powered by GitBook
On this page
  • Version 1.2.0
  • Version 1.1.0
  • Migration Guidelines
  1. Release Information

Breaking Changes

Version 1.2.0

Evaluation Framework

  • Renamed Execution class to Evaluation

  • Updated metric computation methods

# Old code (1.1.2)
from agentneo import Execution
exe = Execution(session=neo_session)

# New code (1.2.0)
from agentneo import Evaluation
eval = Evaluation(session=neo_session)

Configuration Changes

  • Modified dashboard configuration structure

  • Updated storage backend access method. Now the the Database is access through API Endpoints. This change is currently implemented in the Analytics and Trace History Pages. Gradually the access of DB from frontend TypeScript(.ts) would be completely phased out.

Version 1.1.0

API Changes

  • Restructured Tracing

  • Modified event handling system

  • Remove node.js, npm dependency for dashboard

# Old code (1.0.0)
tracer = Tracer()
tracer.init(session)

# New code (1.1.0)
tracer = Tracer(session=session)

Storage Updates

  • New SQLite schema

  • Changed JSON log format

Migration Guidelines

See Migration Guide for detailed upgrade instructions.

PreviousFrequently Asked Questions NextVersion History

Last updated 6 months ago