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

pip install rail-engine

Or using uv:

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(
            engine_id=client.engine_id,
            vector_store="VectorStore1",
            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

API Reference

RailEngine Client

Methods

  • search_vector_store(engine_id, vector_store, query, filter_fn=None, model=None) - Search vector store
  • get_storage_document_by_id(engine_id, engine_document_id, filter_fn=None, model=None) - Get document by ID
  • get_storage_document_by_customer_key(engine_id, customer_key, page_number=1, page_size=25, filter_fn=None, model=None) - Get documents by customer key
  • query_storage_by_jsonpath(engine_id, json_path_query, filter_fn=None, model=None) - Query by JSONPath
  • list_storage_documents(engine_id, customer_key=None, page_number=1, page_size=100, filter_fn=None, model=None) - List documents
  • search_index(project_id, engine_id, query, filter_fn=None, model=None) - Search index

Properties

  • pat - PAT token
  • engine_id - Engine ID
  • api_url - Base API URL
  • model - Default model type

Examples

See the samples/ directory for comprehensive examples:

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

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

Related Package

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

License

MIT

Support

For issues, questions, or contributions, please visit the GitHub repository.

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.1.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.1-py3-none-any.whl (3.8 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: rail_engine-0.1.1.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.1.tar.gz
Algorithm Hash digest
SHA256 eb111fd375174db058f523d54a2b08a87106ec5366a091942ee044ef8ac44e4a
MD5 1d6dda6040dc5a8ebbe475c74e3eaacb
BLAKE2b-256 5ce155ecc3cca214ab513e8076549ce5bfbade755daa42426d55cd26e887bb97

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for rail_engine-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 b4cea085bfacdbc4fb9d6761ea25aa9b6baa1a17a8cae8a13295f4e9d417f4ed
MD5 4a9fa2f37a79073905715370543968b9
BLAKE2b-256 caf9203918d60d64678a5703e490dfdd38f781a8b260a789c9bb959fed30600f

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