Skip to main content

PromptSite is a powerful prompt lifecycle management package that helps you version control, track, experiment and debug with your LLM prompts with ease.

Project description

PromptSite

Overview

You will never miss a prompt version again with PromptSite.

PromptSite is a powerful prompt lifecycle management package that helps you version control, track, experiment and debug with your LLM prompts with ease. It mostly focuses on the experiemental and prototyping phase before shipping to production. The main features are:

  • Version Control: Track versions during prompt engineering
  • Flexible Storage: Choose between local file storage or Git-based storage
  • Run Tracking: Automatically track and analyze prompt executions
  • CLI Interface: Comprehensive command-line tools for prompt management
  • Python Decorator: Simple integration with existing LLM code
  • Variable Management: Manage and validate variables for prompts

Key Differentiators

  • Focused on Experimentation: Optimized for rapid prompt iteration, debugging, and experimentation during development
  • No Heavy Lifting: Minimal setup, no servers, databases, or API keys required - works directly with your local filesystem or Git
  • Seamless Integration: Automatically tracks prompt versions and runs through simple Python decorators
  • Developer-Centric: Designed for data scientists and engineers to easily integrate into existing ML/LLM workflows

Checkout the documentation.

Installation

pip install promptsite

Quick Start

Use PromptSite API

from promptsite import PromptSite

# Initialize PromptSite with the defile storage
ps = PromptSite()

# Register a new prompt
prompt = ps.register_prompt(
    prompt_id="translation-prompt",
    description="Basic translation prompt",
    tags=["translation", "basic"]
)

Python APIs

Besides using the decorator, you can directly use PromptSite's core functionality in your Python code:

from promptsite import PromptSite
from promptsite.config import Config
from promptsite.variables import StringVariable

# you can use either file or git storage
ps = PromptSite()

# Initialize PromptSite with git storage
# config = Config()
# config.save_config({"storage_backend": "git", "remote": "https://github.com/user/repo.git"})
# ps = PromptSite(config.get_storage_backend())

# Register a new prompt
prompt = ps.register_prompt(
    prompt_id="translation-prompt",
    initial_content="Translate this text: {{text}}",
    description="Basic translation prompt",
    tags=["translation", "basic"],
    variables={
        "text": StringVariable(description="The text to translate")
    }
)

# Add a new version
new_version = ps.add_prompt_version(
    prompt_id="translation-prompt",
    content="Please translate the following text to {{language}}: {{text}}",
    variables={
        "language": StringVariable(description="The language to translate to"),
        "text": StringVariable(description="The text to translate")
    }
)

# Get prompt and version information
prompt = ps.get_prompt("translation-prompt")

# List all versions
all_versions = ps.list_versions("translation-prompt")

# Add an LLM run
run = ps.add_run(
    prompt_id="translation-prompt",
    version_id=active_version.version_id,
    llm_output="Hola mundo",
    execution_time=0.5,
    llm_config={
        "model": "gpt-4",
        "temperature": 0.7
    },
    variables={
        "language": "Spanish",
        "text": "Hello world"
    },
    final_prompt="Please translate the following text to Spanish: Hello world"
)

# Find a specific version by content
version = ps.get_version_by_content(
    prompt_id="translation-prompt",
    content="Please translate the following text to {{language}}: {{text}}"
)

# List all runs
runs = ps.list_runs("translation-prompt")

# Get a specific run
run = ps.get_run("translation-prompt", run_id="some_run_id")

Prompt Auto tracking

You can use the decorator to auto track your prompt in your LLM calls.

from promptsite.decorator import tracker
from pydantic import BaseModel, Field
from promptsite.variables import ArrayVariable

class Weather(BaseModel):
    date: str = Field(description="The date of the weather data.")
    temperature: float = Field(description="The temperature in Celsius.")
    condition: str = Field(description="The weather condition (sunny, rainy, etc).")

@tracker(
    prompt_id="analyze-weather-prompt",
    description="Analyze weather data and predict which day is best for a picnic",
    tags=["weather", "analysis"],
    variables={
        "weather": ArrayVariable(model=Weather)
    }
)
def analyze_weather(content=None, llm_config=None, variables=None):
    response = openai.ChatCompletion.create(
        model="gpt-4",
        messages=[{"role": "user", "content": content}]
    )
    return response.choices[0].message.content

# Run the function
response = analyze_weather(content="""The following dataset describes the weather for each day:
{{ weather }}

Based on the weather data, predict which day is best for a picnic.
""")

CLI Commands

Storage Backend Setup

File Storage (Default)

Initialize PromptSite with the defaultfile storage:

promptsite init

Git Storage

Initialize with Git storage and remote repository:

promptsite init --config '{"storage_backend": "git", "remote": "https://github.com/user/repo.git", "branch": "main", "auto_sync": true}'

Prompt Management

  1. Register a new prompt:
promptsite prompt register my-prompt --content "Translate this text: {{text}}" --description "Translation prompt" --tags translation gpt
  1. List all prompts:
promptsite prompt list
  1. Add a new version:
promptsite version add my-prompt --content "Please translate the following text: {{text}}"
  1. View version history:
promptsite version list my-prompt
  1. Get a specific version:
promptsite version get my-prompt <version-id>
  1. View run history:
promptsite run list my-prompt
  1. Get a specific run:
promptsite run get my-prompt <run-id>
  1. Get the last run:
promptsite run last-run my-prompt
  1. Sync with Git remote (if using Git storage):
promptsite sync-git

For more detailed documentation and examples, visit our documentation.

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

promptsite-0.1.0.tar.gz (24.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

promptsite-0.1.0-py3-none-any.whl (30.2 kB view details)

Uploaded Python 3

File details

Details for the file promptsite-0.1.0.tar.gz.

File metadata

  • Download URL: promptsite-0.1.0.tar.gz
  • Upload date:
  • Size: 24.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.0.1 CPython/3.12.8 Linux/6.8.0-1017-azure

File hashes

Hashes for promptsite-0.1.0.tar.gz
Algorithm Hash digest
SHA256 1d4fbb60645e7094e9f31037c94cd92f254ac7a717e01505d7894abe3cf9f932
MD5 f606cc357f30bc7fb7fdbb3435c3c738
BLAKE2b-256 844a35a732b6dabf780bde1ee5383ee2f34412964a542a7422caadf34e69b039

See more details on using hashes here.

File details

Details for the file promptsite-0.1.0-py3-none-any.whl.

File metadata

  • Download URL: promptsite-0.1.0-py3-none-any.whl
  • Upload date:
  • Size: 30.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.0.1 CPython/3.12.8 Linux/6.8.0-1017-azure

File hashes

Hashes for promptsite-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 90845e5c1fa4eeda36a93feeba0634c949afd22d60012622587d10def1aa11c5
MD5 86416b36af6420e692999a94c3803d64
BLAKE2b-256 3aaf9e5200ede4fe038950d0d3bf17dd670ec31833f2a2111a331faeec6acfda

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