-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path__init__.py
More file actions
27 lines (21 loc) · 774 Bytes
/
Copy path__init__.py
File metadata and controls
27 lines (21 loc) · 774 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
"""
Promptix - Prompt Version Control System
A library for managing and using prompts locally with Promptix Studio integration.
Provides a simple interface to manage prompts through a web UI and use them in your code.
Core Features:
- Prompt version control and management
- System message templating
- Variable substitution
- Configuration management
- Provider-specific enhancements
Usage:
1. Manage prompts: Run 'promptix studio' in terminal
2. Use prompts:
from promptix import Promptix
prompt = Promptix.get_prompt("template_name", variable="value")
# Or use the builder pattern:
config = Promptix.builder("template_name").with_variable("value").build()
"""
from .core.base_refactored import Promptix
__version__ = "0.1.13"
__all__ = ["Promptix"]