Skip to main content

Build semantic functions.

Project description

Prompt Functions ⚙️

prompt-functions aims to make it easy to build functions with LLMs that have structured I/O, and to move prompts out of the code into serialized and versioned formats.

Getting Started

1. Installation

Install the package using pip:

pip install prompt-functions

2. Setting Up Your First Function

Let's create a sentiment classification function:

Step 1: Create a directory named sentiment. Inside this directory, you need two files:

└─ sentiment
   ├── function_args.json
   ├── model_args.json
   └── template.txt

Step 2: Define your prompt template in template.txt:

Aalyze and determine whether the sentiment of the following sentence is positive, negative, or neutral.
Sentence:
{sentence}

Step 3: Set model paramters in model_args.json:

{
    "temperature": 0.0,
    "model": "gpt-3.5-turbo"
}

Step 4: Specify the function's output format in function_args.json:

{
    "function_name": "sentiment_classifier",
    "description": "Classify the sentiment of a sentence",
    "properties": {
        "thoughts": {
            "type": "string",
            "description": "Your thoughts when classifying sentiment of the given sentence."
        },
        "sentiment": {
            "type": "string",
            "enum": ["positive", "negative", "neutral"],
            "description": "The sentiment of the given sentence."
        }
    }
}

3. Using Your Prompt Function in Python

Here's how you can load and use your prompt function:

from prompt_functions import PromptFunction

# Load your function
sentiment = PromptFunction.from_dir("./sentiment/")

# Make a prediction
pred = sentiment(sentence="I am super happy!")

# Expected Output:
# {
#   "thoughts": "The sentiment in the sentence is positive",
#   "sentiment": "positive"
# }

Prompt Versioning

Coming up..

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_functions-0.1.27.tar.gz (5.7 kB view details)

Uploaded Source

Built Distribution

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

prompt_functions-0.1.27-py3-none-any.whl (6.6 kB view details)

Uploaded Python 3

File details

Details for the file prompt_functions-0.1.27.tar.gz.

File metadata

  • Download URL: prompt_functions-0.1.27.tar.gz
  • Upload date:
  • Size: 5.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.5.1 CPython/3.9.6 Darwin/22.4.0

File hashes

Hashes for prompt_functions-0.1.27.tar.gz
Algorithm Hash digest
SHA256 dbdc0bef422a7d72d4c1f70f721384243a9cf2626ec94165b449649cba9e1d16
MD5 774a4760af5cfadb4c5b58041c9d7142
BLAKE2b-256 1432422e6b5e43a164698c3aca26a3c204a30783393f5d2d43292fdfeb541e73

See more details on using hashes here.

File details

Details for the file prompt_functions-0.1.27-py3-none-any.whl.

File metadata

  • Download URL: prompt_functions-0.1.27-py3-none-any.whl
  • Upload date:
  • Size: 6.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.5.1 CPython/3.9.6 Darwin/22.4.0

File hashes

Hashes for prompt_functions-0.1.27-py3-none-any.whl
Algorithm Hash digest
SHA256 5b1b064cd35e7526d46cdeba7aba989baa9c8e0ab89933d364f5c953cb9dc86c
MD5 f5ba0a109a479417cf0516fddaf99666
BLAKE2b-256 6ea31568b7c961188060d57126b2d0b154c79272ae550bf5a985b22df55b56ea

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