Skip to main content

A Python library for using Large Language Models (LLMs) to fill out multiple-choice questionnaires about chat conversations.

Project description

LLM Multiple Choice

A Python library for having an LLM fill out a multiple-choice questionnaire about the current state of a chat.

Features

  • Composible with any LLM provider -- this library generates LLM prompts and validates responses, but leaves the actual LLM calls to you.
  • Flexible questionnaire structure.
  • Simple API for using the questionnaire results in code.

Installation

You can install the library using pip:

pip install llm-multiple-choice

If you're using Poetry:

poetry add llm-multiple-choice

Usage

This library helps you create multiple-choice questionnaires for LLMs to fill out.

Creating a Questionnaire

from llm_multiple_choice import ChoiceManager, DisplayFormat

# Create a questionnaire
manager = ChoiceManager()

# Add a section with choices
section = manager.add_section("Assess the sentiment of the message.")
positive_sentiment = section.add_choice("The message expresses positive sentiment.")
neutral_sentiment = section.add_choice("The message is neutral in sentiment.")
negative_sentiment = section.add_choice("The message expresses negative sentiment.")

# Get the prompt to send to your LLM
prompt = manager.prompt_for_choices(DisplayFormat.MARKDOWN)

Processing LLM Responses

The library enforces these rules for LLM responses:

  • Must contain only numbers corresponding to valid choices
  • Numbers must be separated by commas
  • Each number can only appear once
  • Cannot be empty

Process the response:

try:
    choices = manager.validate_choices_response(llm_response)
    # Check which choices were selected
    if choices.has(positive_sentiment):
        print("Choice 1 was selected")
except InvalidChoicesResponseError as e:
    print(f"Invalid response: {e}")

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

Setting Up for Development

To set up the project for development:

  1. Clone the repository:

    git clone https://github.com/deansher/llm-multiple-choice.git
    
  2. Navigate to the project directory:

    cd llm-multiple-choice
    
  3. Install dependencies using Poetry:

    poetry install
    

    This will install all the required packages in a virtual environment.

You can either activate the virtual environment in a shell by running poetry shell or run commands directly using poetry run <command>.

Editing in VSCode

To ensure VSCode uses the correct Python interpreter from the Poetry environment:

  1. Open the Command Palette (Ctrl+Shift+P or Cmd+Shift+P on Mac).
  2. Select Python: Select Interpreter.
  3. Choose the interpreter that corresponds to the project's virtual environment. It should be listed with the path to .venv.

If the virtual environment is not listed, you may need to refresh the interpreters or specify the path manually.

Running Tests

poetry run pytest

Adding Dependencies

To add a new dependency to the project:

  • For regular dependencies:

    poetry add <package_name>
    
  • For development dependencies (e.g., testing tools):

    poetry add --group dev <package_name>
    

This updates the pyproject.toml and poetry.lock files accordingly.

Release Process

This project uses GitHub Actions for automated testing and publishing to PyPI.

Making a Release

  1. Update version in pyproject.toml
  2. Create a new Release on GitHub:
    • Go to the repository's Releases page
    • Click "Create a new release"
    • Choose "Create a new tag" and enter the version (e.g., v0.1.0)
    • Add release notes describing the changes
    • Click "Publish release"
  3. GitHub Actions will automatically:
    • Run all tests and type checking
    • Build the package
    • Publish to PyPI if all checks pass

Manual Publishing

If needed, you can publish manually using the build script:

# Publish to TestPyPI
./scripts/build_and_publish.sh

# Publish to production PyPI
./scripts/build_and_publish.sh --production

Local Development Integration

When developing applications that use this library, you may want to test changes to the library without publishing them to PyPI. You can achieve this using either Poetry or pip's editable install feature.

Using Poetry

Poetry's path dependency feature makes local development straightforward:

  1. Clone this repository alongside your project:

    git clone https://github.com/deansher/llm-multiple-choice-py.git
    
  2. In your project's pyproject.toml, replace the PyPI dependency with a path dependency:

    [tool.poetry.dependencies]
    llm-multiple-choice = { path = "../llm-multiple-choice-py", develop = true }
    

    Or use the Poetry CLI:

    poetry remove llm-multiple-choice
    poetry add --editable ../llm-multiple-choice-py
    

The develop = true flag creates a symlink to the library's source, allowing you to modify the library code and immediately see the effects in your project without reinstalling.

Using pip

If you're using pip, you can use its editable install feature:

  1. Clone this repository alongside your project:

    git clone https://github.com/deansher/llm-multiple-choice-py.git
    
  2. Install the package in editable mode:

    pip install -e ../llm-multiple-choice-py
    

The -e flag tells pip to install the package in "editable" mode, creating a link to the source code instead of copying it. This allows you to modify the library code and see changes immediately without reinstalling.

License

This project is licensed under the MIT License - see the LICENSE file for details.

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

llm_multiple_choice-0.1.1.tar.gz (8.8 kB view details)

Uploaded Source

Built Distribution

llm_multiple_choice-0.1.1-py3-none-any.whl (8.9 kB view details)

Uploaded Python 3

File details

Details for the file llm_multiple_choice-0.1.1.tar.gz.

File metadata

  • Download URL: llm_multiple_choice-0.1.1.tar.gz
  • Upload date:
  • Size: 8.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.4 CPython/3.12.7 Linux/6.5.0-1025-azure

File hashes

Hashes for llm_multiple_choice-0.1.1.tar.gz
Algorithm Hash digest
SHA256 fd12264306893092e224e94447d159b52620a89f0b635dcc036a2eb85430a36e
MD5 c586e82ffa1cf0d5a9211da1c053545d
BLAKE2b-256 a6eee49307deee6a0ebdad43c0bca439ccc07e9ee771f3c96c6566e9efd8cbfc

See more details on using hashes here.

File details

Details for the file llm_multiple_choice-0.1.1-py3-none-any.whl.

File metadata

File hashes

Hashes for llm_multiple_choice-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 2a042ceda4a447219439d572f6275c97b90a44d44f5488347519a8b30a2d9711
MD5 cf75361da0c1fbed11a1ebe112185413
BLAKE2b-256 4db7aa0148dd1e81f97c1dbf3f3b2c2cfd2c9ae0e9398b4036fc277e36d566f6

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page