Skip to main content

Python SDK for Railtown AI Rail Engine - Retrieval

Project description

Rail Engine Retrieval SDK

Python SDK for retrieving and searching data from Railtown AI Rail Engine - handles embeddings, storage documents, and indexed content.

Overview

The rail-engine package provides a Pythonic interface for retrieving and searching data from Rail Engine. It supports async/await patterns, client-side filtering, automatic pagination, and Pydantic model deserialization.

Installation

uv pip install rail-engine

Quick Start

import asyncio
from railtown.engine import RailEngine

async def main():
    # Initialize client (reads from ENGINE_PAT and ENGINE_ID env vars)
    async with RailEngine() as client:
        # Search vector store
        results = client.search_vector_store(
            query="apple"
        )
        async for item in results:
            print(item)

asyncio.run(main())

Configuration

Environment Variables

  • ENGINE_PAT (required) - Personal Access Token
  • ENGINE_ID (required) - Engine ID (can also be passed to constructor)
  • RAILTOWN_API_URL (optional) - Base API URL (defaults to https://cndr.railtown.ai/api)

Constructor Parameters

  • pat (optional) - PAT token (if not provided, reads from ENGINE_PAT env)
  • engine_id (optional) - Engine ID (if not provided, reads from ENGINE_ID env, required if not in env)
  • api_url (optional) - Base API URL (if not provided, reads from RAILTOWN_API_URL env or defaults to production)
  • model (optional) - Pydantic model type for deserializing retrieved data

Features

  • Multiple retrieval methods:
    • search_vector_store() - Semantic search in vector stores
    • get_storage_document_by_id() - Get document by ID
    • get_storage_document_by_customer_key() - Get documents by customer key
    • query_storage_by_jsonpath() - Query using JSONPath
    • list_storage_documents() - List all documents with pagination
    • search_index() - Full-text search using Azure Search
  • Client-side filtering - Filter results using filter_fn parameter
  • Automatic pagination - Handles pagination automatically
  • Model deserialization - Optional Pydantic model support with per-call override
  • Graceful error handling - Returns None or empty iterables on errors
  • Async/await support - Built for modern async Python applications

Error Handling

The SDK provides custom exception classes:

  • RailtownError - Base exception
  • RailtownBadRequestError - 400 Bad Request
  • RailtownUnauthorizedError - 401 Unauthorized
  • RailtownNotFoundError - 404 Not Found
  • RailtownConflictError - 409 Conflict
  • RailtownServerError - 5xx Server errors

Returns None or empty iterables on errors (graceful degradation).

Requirements

  • uv
  • Python 3.10+
  • httpx >= 0.24.0
  • pydantic >= 1.10.0

Related Package

For ingesting data into Rail Engine, see rail-engine.

License

MIT

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

rail_engine-0.1.3.tar.gz (21.3 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

rail_engine-0.1.3-py3-none-any.whl (16.2 kB view details)

Uploaded Python 3

File details

Details for the file rail_engine-0.1.3.tar.gz.

File metadata

  • Download URL: rail_engine-0.1.3.tar.gz
  • Upload date:
  • Size: 21.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.8.22

File hashes

Hashes for rail_engine-0.1.3.tar.gz
Algorithm Hash digest
SHA256 69b64eb79f29b0542235b201b26e5656b2d63487832ac952b12450462c67d5f8
MD5 950dffa7984a1c8046e5a81d9446b2d2
BLAKE2b-256 8b85d2c68dc687a07679919137775aec0dc6a44aed9d9f4dc2a56a0e03240d22

See more details on using hashes here.

File details

Details for the file rail_engine-0.1.3-py3-none-any.whl.

File metadata

File hashes

Hashes for rail_engine-0.1.3-py3-none-any.whl
Algorithm Hash digest
SHA256 6d155db3406ef7efb5d9939de1eacf3899882307251e5ffc7f959cb6754bade4
MD5 43ea8e5c6ee4addcf1c60433bed1dd7e
BLAKE2b-256 ebd595a4d7f99b58087f93ec71b336b0fead7f65b90742912ae17322e90e9962

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page