Skip to main content

A library for working with prompt templates locally or on the Hugging Face Hub.

Project description

Prompt Templates

Prompt templates have become key artifacts for researchers and practitioners working with AI. There is, however, no standardized way of sharing prompt templates. Prompts and prompt templates are shared on the Hugging Face Hub in .txt files, in HF datasets, as strings in model cards, or on GitHub as python strings embedded in scripts, in JSON and YAML files, or in Jinja2 files.

Objectives and non-objectives of this library

Objectives

  • Provide functionality for working with prompt templates locally and sharing them on the Hugging Face Hub.
  • Propose a prompt template standard through .yaml and .json files that enables modular development of complex LLM systems and is interoperable with other libraries

Non-Objective

  • Compete with full-featured prompting libraries like LangChain, ell, etc. The objective is, instead, a simple solution for working with prompt templates locally or on the HF Hub, which is interoperable with other libraries and which the community can build upon.

Documentation

A discussion of the standard prompt format, usage examples, the API reference etc. are available in the docs.

Quick start

Let's use this closed_system_prompts repo of official prompts from OpenAI and Anthropic. These prompt templates have either been leaked or were shared by these LLM providers, but were originally in a non-machine-readable, non-standardized format.

1. Install the library:

pip install prompt-templates

2. List available prompts in a HF Hub repository.

>>> from prompt_templates import list_prompt_templates
>>> files = list_prompt_templates("MoritzLaurer/closed_system_prompts")
>>> files
['claude-3-5-artifacts-leak-210624.yaml', 'claude-3-5-sonnet-text-090924.yaml', 'claude-3-5-sonnet-text-image-090924.yaml', 'openai-metaprompt-audio.yaml', 'openai-metaprompt-text.yaml']

3. Download and inspect a prompt template

>>> from prompt_templates import PromptTemplateLoader
>>> prompt_template = PromptTemplateLoader.from_hub(
...     repo_id="MoritzLaurer/closed_system_prompts",
...     filename="claude-3-5-artifacts-leak-210624.yaml"
... )
>>> # Inspect template
>>> prompt_template.template
[{'role': 'system',
  'content': '<artifacts_info>\nThe assistant can create and reference artifacts ...'},
 {'role': 'user', 'content': '{{user_message}}'}]
>>> # Check required template variables
>>> prompt_template.template_variables
['current_date', 'user_message']
>>> prompt_template.metadata
{'source': 'https://gist.github.com/dedlim/6bf6d81f77c19e20cd40594aa09e3ecd'}

4. Populate the template with variables

By default, the populated prompt is returned in the OpenAI messages format, which is compatible with most open-source LLM clients.

>>> messages = prompt_template.populate_template(
...     user_message="Create a tic-tac-toe game for me in Python",
...     current_date="Wednesday, 11 December 2024"
... )
>>> messages
PopulatedPrompt([{'role': 'system', 'content': '<artifacts_info>\nThe assistant can create and reference artifacts during conversations. Artifacts are ...'}, {'role': 'user', 'content': 'Create a tic-tac-toe game for me in Python'}])

5. Use the populated template with any LLM client

>>> from openai import OpenAI
>>> import os
>>> client = OpenAI(api_key=os.environ.get("OPENAI_API_KEY"))
>>> response = client.chat.completions.create(
...     model="gpt-4o-mini",
...     messages=messages
... )
>>> print(response.choices[0].message.content[:100], "...")
Here's a simple text-based Tic-Tac-Toe game in Python. This code allows two players to take turns pl ...
>>> from huggingface_hub import InferenceClient
>>> client = InferenceClient(api_key=os.environ.get("HF_TOKEN"))
>>> response = client.chat.completions.create(
...     model="meta-llama/Llama-3.3-70B-Instruct", 
...     messages=messages.to_dict(),
...     max_tokens=500
... )
>>> print(response.choices[0].message.content[:100], "...")
<antThinking>Creating a tic-tac-toe game in Python is a good candidate for an artifact. It's a self- ...

If you use an LLM client that expects a format different to the OpenAI messages standard, you can easily reformat the prompt for this client.

>>> from anthropic import Anthropic

>>> messages_anthropic = messages.format_for_client(client="anthropic")

>>> client = Anthropic(api_key=os.environ.get("ANTHROPIC_API_KEY"))
>>> response = client.messages.create(
...     model="claude-3-sonnet-20240229",
...     system=messages_anthropic["system"],
...     messages=messages_anthropic["messages"],
...     max_tokens=1000
... )
>>> print(response.content[0].text[:100], "...")
Sure, I can create a tic-tac-toe game for you in Python. Here's a simple implementation: ...

6. Create your own prompt templates

>>> from prompt_templates import ChatPromptTemplate
>>> messages_template = [
...     {"role": "system", "content": "You are a coding assistant who explains concepts clearly and provides short examples."},
...     {"role": "user", "content": "Explain what {{concept}} is in {{programming_language}}."}
... ]
>>> template_variables = ["concept", "programming_language"]
>>> metadata = {
...     "name": "Code Teacher",
...     "description": "A simple chat prompt for explaining programming concepts with examples",
...     "tags": ["programming", "education"],
...     "version": "0.0.1",
...     "author": "Guido van Bossum"
... }
>>> prompt_template = ChatPromptTemplate(
...     template=messages_template,
...     template_variables=template_variables,
...     metadata=metadata,
... )

>>> prompt_template
ChatPromptTemplate(template=[{'role': 'system', 'content': 'You are a coding a..., template_variables=['concept', 'programming_language'], metadata={'name': 'Code Teacher', 'description': 'A simple ..., client_parameters={}, custom_data={}, populator_type='double_brace', populator=<prompt_templates.prompt_templates.DoubleBracePopu...)

7. Store or share your prompt templates

You can then store your prompt template locally or share it on the HF Hub.

>>> # save locally
>>> prompt_template.save_to_local("./tests/test_data/code_teacher_test.yaml")
>>> # or save it on the HF Hub
>>> prompt_template.save_to_hub(repo_id="MoritzLaurer/example_prompts_test", filename="code_teacher_test.yaml", create_repo=True)
CommitInfo(commit_url='https://huggingface.co/MoritzLaurer/example_prompts_test/commit/4cefd2c94f684f9bf419382f96b36692cd175e84', commit_message='Upload prompt template code_teacher_test.yaml', commit_description='', oid='4cefd2c94f684f9bf419382f96b36692cd175e84', pr_url=None, repo_url=RepoUrl('https://huggingface.co/MoritzLaurer/example_prompts_test', endpoint='https://huggingface.co', repo_type='model', repo_id='MoritzLaurer/example_prompts_test'), pr_revision=None, pr_num=None)

TODO

  • many things ...

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

prompt_templates-0.0.10.tar.gz (27.4 kB view details)

Uploaded Source

Built Distribution

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

prompt_templates-0.0.10-py3-none-any.whl (27.2 kB view details)

Uploaded Python 3

File details

Details for the file prompt_templates-0.0.10.tar.gz.

File metadata

  • Download URL: prompt_templates-0.0.10.tar.gz
  • Upload date:
  • Size: 27.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.5 CPython/3.12.7 Linux/6.5.0-1025-azure

File hashes

Hashes for prompt_templates-0.0.10.tar.gz
Algorithm Hash digest
SHA256 a4dcc314a57b26e46ebc2f18b5533e3d4244aeb6d5b21d2defd0a4419ee50176
MD5 eca7898645cae5defca8986333de1668
BLAKE2b-256 3bd6e207c531de3620cbe67d00f475e295ea46166d858d974a8c52366f46f54f

See more details on using hashes here.

File details

Details for the file prompt_templates-0.0.10-py3-none-any.whl.

File metadata

  • Download URL: prompt_templates-0.0.10-py3-none-any.whl
  • Upload date:
  • Size: 27.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.5 CPython/3.12.7 Linux/6.5.0-1025-azure

File hashes

Hashes for prompt_templates-0.0.10-py3-none-any.whl
Algorithm Hash digest
SHA256 28cdf43790ba1c528eb9b7d2a20b8bbf1a21769cc9f47f529c8aa628d1950d62
MD5 ad01cddb1345856340d7693d18c10e6e
BLAKE2b-256 b2cb8aeebf1b85d673d13f5563d33ade148f73eeff03f38ea9d03916d7b6a8c1

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