Appearance
SDK Overview
The SDK is a small Python package — elsai-prompts — that does one thing: fetch the active version of a named prompt from your elsai Prompt Manager instance and return it as a typed, renderable object.
python
from elsai_prompts.prompt_manager import PromptManager
pm = PromptManager(api_key=..., project_id=..., environment="development")
prompt = pm.get_active_prompt_version("welcome_email")
rendered = prompt.render({"name": "Ada"})That's the entire API surface in three lines.