No project description provided
Project description
🦁 Lion Framework
A powerful Python framework for structured AI conversations and operations
🌟 Features
- 🎯 Dynamic structured output at runtime
- 🔄 Easy composition of multi-step processes
- 🤖 Support for any model via
litellm - 🏗️ Built-in conversation management
- 🧩 Extensible architecture
- 🔍 Type-safe with Pydantic models
🚀 Quick Install
pip install lion-os
💡 Usage Examples
1️⃣ Simple Communication
from lion import iModel, Branch
# Initialize model and branch
imodel = iModel(
model="openai/gpt-4o",
api_key="OPENAI_API_KEY",
temperature=0.2,
)
branch = Branch(imodel=imodel)
# Basic communication
result = await branch.communicate(
instruction="Give me ideas for FastAPI interview questions",
context="We're hiring senior engineers"
)
2️⃣ Structured Output with Pydantic
from pydantic import BaseModel
class CodingQuestion(BaseModel):
question: str
evaluation_criteria: str
# Get structured responses
questions = await branch.operate(
instruction="Generate FastAPI coding questions",
context="Technical interview context",
operative_model=CodingQuestion
)
3️⃣ Advanced Operations (Brainstorming)
from lion.operations import brainstorm
result = await brainstorm(
instruct={
"instruction": "Design API endpoints for a todo app",
"context": "Building a modern task management system"
},
imodel=imodel,
num_instruct=3,
operative_model=CodingQuestion,
auto_run=True
)
🎯 Key Components
| Component | Description |
|---|---|
| Branch | Main conversation controller |
| MessageManager | Handles message flow and history |
| ToolManager | Manages function execution and tools |
| Operative | Structures operations and responses |
Requirements
python 3.11+ required
⭐ Star History
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
lion_os-0.1.3.tar.gz
(129.6 kB
view details)
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
lion_os-0.1.3-py3-none-any.whl
(169.1 kB
view details)
File details
Details for the file lion_os-0.1.3.tar.gz.
File metadata
- Download URL: lion_os-0.1.3.tar.gz
- Upload date:
- Size: 129.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.2 CPython/3.12.7 Linux/6.5.0-1025-azure
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f5ce8ca47849cc086c7a01a4eab77fdd85b6d67c088c528524bae6c125bda0a6
|
|
| MD5 |
bfdc0678aa1fb44ee05a00b622cf7208
|
|
| BLAKE2b-256 |
5a4efe259e3455e1bd7784157478a505dd664bbf534073fb8f9cbcfe55f7d1a9
|
File details
Details for the file lion_os-0.1.3-py3-none-any.whl.
File metadata
- Download URL: lion_os-0.1.3-py3-none-any.whl
- Upload date:
- Size: 169.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.2 CPython/3.12.7 Linux/6.5.0-1025-azure
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3f3d07225c537d47a5774f8e4b617a1a2ceb0a6f4163791ae9abaee813a3d517
|
|
| MD5 |
02fbc6e30486da1676287c5aecd2bb22
|
|
| BLAKE2b-256 |
ac3439e39b41b98f7a77124bdcf0a2d69c1536b244a2c56d0be161eac95bc319
|