Skip to main content

Changelog

Stay up to date with the latest improvements, features, and fixes for Meibel AI.

[1.2.0] - 2024-03-15

Added

  • RAG Streaming: New streaming endpoints for real-time responses
  • Blueprint Instances: Create reusable workflow templates
  • Enhanced Metadata Filtering: More powerful query capabilities
  • Python SDK Async Support: Full async/await support in Python SDK

Improved

  • Response times reduced by 30% for standard queries
  • Better error messages with actionable suggestions
  • Confidence scoring algorithm improvements
  • Documentation search and navigation

Fixed

  • Rate limiting edge cases with concurrent requests
  • UTF-8 encoding issues in certain languages
  • Memory leak in long-running streaming connections

[1.1.0] - 2024-02-01

Added

  • Execution Control: Fine-grained control over AI processing
  • Decision Tracing: Complete visibility into AI decision-making
  • Batch Operations: Process multiple items in single requests
  • Webhook Support: Real-time notifications for async operations

Improved

  • API response compression for faster data transfer
  • Datasource indexing performance increased by 50%
  • More accurate confidence scoring
  • SDK retry logic with exponential backoff

Fixed

  • Pagination issues with large datasources
  • Timeout handling in Python SDK
  • JSON parsing errors with special characters

[1.0.1] - 2024-01-15

Added

  • Export Functionality: Export datasources and elements
  • Tag Management: Organize resources with tags
  • Usage Analytics: Track API usage in the console

Improved

  • API documentation with more examples
  • Error handling in SDKs
  • Response caching for repeated queries

Fixed

  • Authentication token refresh issues
  • Datasource deletion not cleaning up elements
  • SDK installation on Windows systems

[1.0.0] - 2023-12-01

Initial Release

  • Core API: RESTful API with comprehensive endpoints
  • Python SDK: Official Python SDK with type safety
  • Datasources: Create and manage data containers
  • Data Elements: Store and retrieve contextual data
  • RAG Chat: Retrieval-augmented generation
  • Confidence Scoring: Response quality metrics
  • API Authentication: Secure API key management
  • Rate Limiting: Fair usage policies
  • Console: Web-based management interface

Upcoming Features

We’re constantly improving Meibel AI. Here’s what’s coming:

Q2 2024

  • Node.js SDK general availability
  • CLI tool beta release
  • Advanced workflow designer
  • Multi-modal support (images, documents)

Q3 2024

  • GraphQL API endpoint
  • Real-time collaboration features
  • Enhanced security features
  • Mobile SDKs (iOS, Android)

Version Support

VersionStatusSupport Until
1.2.xCurrentActive
1.1.xSupported2024-09-01
1.0.xMaintenance2024-06-01

Migration Guides

Migrating from 1.1.x to 1.2.x

No breaking changes. New features are backward compatible.

Migrating from 1.0.x to 1.1.x

  1. Update confidence threshold parameters:
    # Old
    client.completions.create(confidence_min=0.7)
    
    # New
    client.rag.chat(confidence_threshold=0.7)
    
  2. Update error handling imports:
    # Old
    from meibelai import APIError
    
    # New
    from meibelai.core import MeibelaiError
    

Deprecation Notices

Deprecated in 1.2.0

  • client.completions - Use client.rag instead
  • confidence_min parameter - Use confidence_threshold
These deprecated features will be removed in version 2.0.0.

How to Update

Python SDK

pip install --upgrade git+https://github.com/meibel-ai/meibelai-python.git

API Version

Include the version header in your requests:
curl -H "X-API-Version: 1.2.0" https://api.meibel.ai/v1/...

Feedback

Your feedback helps us improve. Please:

Next Steps