High-performance library for offline AI inference with context management and memory optimization
Project description
Offline Intelligence Python Bindings
Python bindings for the Offline Intelligence Library, providing offline AI inference capabilities with context management and memory optimization.
Installation
pip install offline-intelligence
Or build from source:
pip install .
Quick Start
from offline_intelligence_py import OfflineIntelligence, Message, Config
# Initialize the library
oi = OfflineIntelligence()
# Load configuration
config = Config.from_env()
# Create messages
messages = [
Message("user", "Hello, how are you?"),
Message("assistant", "I'm doing well, thank you for asking!"),
Message("user", "What can you help me with?")
]
# Optimize context
result = oi.optimize_context("session123", messages, "What can you help me with?")
print(f"Optimized from {result['original_count']} to {result['optimized_count']} messages")
# Search memory
search_result = oi.search("help me", session_id="session123", limit=10)
print(f"Found {search_result['total']} results")
# Generate title
title = oi.generate_title(messages)
print(f"Generated title: {title}")
Features
- Offline AI Inference: Run LLMs locally without internet connection
- Context Management: Intelligent conversation context optimization
- Memory Search: Hybrid semantic and keyword search across conversations
- Multi-format Support: Support for GGUF, GGML, ONNX, TensorRT, and Safetensors models
- Cross-platform: Works on Windows, macOS, and Linux
Requirements
- Python 3.8 or higher
- Rust toolchain for building from source
- Compatible LLM model file
Configuration
The library reads configuration from environment variables:
export LLAMA_BIN="/path/to/llama-binary"
export MODEL_PATH="/path/to/model.gguf"
export CTX_SIZE="8192"
export BATCH_SIZE="256"
export THREADS="6"
export GPU_LAYERS="20"
License
Apache 2.0
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
No source distribution files available for this release.See tutorial on generating distribution archives.
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file offline_intelligence-0.1.2-cp314-cp314-win_amd64.whl.
File metadata
- Download URL: offline_intelligence-0.1.2-cp314-cp314-win_amd64.whl
- Upload date:
- Size: 2.6 MB
- Tags: CPython 3.14, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
41d921ee26903ff9f486f0c610c01de2e2c5d2541fdd83450c7fc56ed59ef64e
|
|
| MD5 |
9bd67aa2c5fbe768dfc76d6d8d3306d3
|
|
| BLAKE2b-256 |
38a6449c31f0df17c7912f89e0cdc6a0c8caeeade87e08e44178a59e76904336
|