An open-source prompt engineering framework.
Project description
Lilypad
An open-source LLM engineering platform built on these principles:
- Building with LLMs introduces non-determinisim to your code, which requires...
- Tracking all input/output pairs and the exact version of the code that produced them so you can...
- Continuously evaluate and optimize your code, which requires...
- Involving business users and domain experts.
[!IMPORTANT] Lilypad is still in beta
This means that things like the user interface, database schemas, etc. are still subject to change. We do not yet recommend fully relying on this project in production, but we've found it works quite well in its current stage.
If you're interested in participating in the closed beta of Lilypad Pro, join our community and DM William Bakst :)
We also welcome contributions with open arms! If you're interested in contributing, just do it! We're here to help.
Quickstart
To get started with Lilypad:
- Create an account at https://app.lilypad.so. You can also run Lilypad locally if you'd prefer.
- Navigate to your organization settings
- Create a project, and then create an API key for that project.
a. Save your
LILYPAD_PROJECT_IDandLILYPAD_API_KEY(e.g. in a.envfile). - Install Lilypad:
uv add "python-lilypad[openai]" # specify your provider of choice - Run your first generation:
import os
import lilypad
from openai import OpenAI # use your provider of choice
os.environ["LILYPAD_PROJECT_ID"] = "..."
os.environ["LILYPAD_API_KEY"] = "..."
os.environ["OPENAI_API_KEY"] = "..."
lilypad.configure() # Automatically trace LLM API calls
client = OpenAI()
@lilypad.generation() # Automatically version non-deterministic functions
def answer_question(question: str) -> str | None:
completion = client.chat.completions.create(
model="gpt-4o",
messages=[
{"role": "system", "content": "You are a helpful assistant."},
{"role": "user", "content": f"Answer this question: {question}"},
],
)
return completion.choices[0].message.content
answer = answer_question("What is the capital of France?")
print(answer)
# > The capital of France is Paris.
And that's it! Now you've versioned and traced your first non-deterministic function with Lilypad.
Usage
We are actively working on this library and it's documentation, which you can find here
Versioning
Lilypad uses Semantic Versioning
License
This project uses a dual-license model:
Open-Source License (MIT)
Except for the contents and code contained in any ee directory or sub-directory of this repository, which is covered by a commercial license (see below), all code in this repository is licensed under the terms of the MIT License.
Enterprise Edition (EE) License
The contents and code of any ee directory or sub-directory of this repository are licensed under the Enterprise Edition (EE) License. This content and code is only available to users using the Lilypad App or those with a valid Enterprise Edition (EE) License. See ee/LICENSE for the full terms.
Self-Hosting:
For those looking to self-host the Enterprise Edition (EE) of Lilypad, please reach out to sales@mirascope.com.
You can find more information about self-hosting here.
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
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 python_lilypad-0.0.31.tar.gz.
File metadata
- Download URL: python_lilypad-0.0.31.tar.gz
- Upload date:
- Size: 789.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.5.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f94e017574bbc7ba8674260fc0a6ea365867737cc705230108d314d62800d7df
|
|
| MD5 |
ca1c51bbab17a099fd0f349e8400ad64
|
|
| BLAKE2b-256 |
0d0b9b11055627b1c1e379175e12795c433677c21d7ea27a7e54afe883ec4323
|
File details
Details for the file python_lilypad-0.0.31-py3-none-any.whl.
File metadata
- Download URL: python_lilypad-0.0.31-py3-none-any.whl
- Upload date:
- Size: 1.6 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.5.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
86f8cf9f5302dd958867cb04b50982446f0a04067be65ce21347684a748751c7
|
|
| MD5 |
03f3de69504105bfd17e314eeb0a3568
|
|
| BLAKE2b-256 |
f38b1313f87dd03a719f290553a6fc28fc8c499743bb54447eb3f192e338c557
|