Skip to main content

Simple interface for creating and managing LLM chains

Project description

LLM Blocks

LLM Blocks is a Python module that helps users interact with Language Learning Model (LLM) chains. It provides a simple and flexible way to create and manage LLM chains, ensuring efficient interactions with models such as OpenAI's GPT-3.5 Turbo.

Installation

First, make sure to have Python installed. Then, to install the required dependencies for this module, run the following commands:

pip install -r requirements.txt
pip install -r requirements.dev.txt

Configuration

To run the LLM Blocks, you'll need an OpenAI API key. Store your API key in a .env file or export it as an environment variable:

For a .env file:

OPENAI_API_KEY=your_openai_api_key

For environment variables:

export OPENAI_API_KEY=your_openai_api_key

Usage

The llm_blocks folder contains the main ChatUtils class, which can be utilized to create and manage your LLM chains.

Here's a simple example of using the GenericChain class:

from llm_blocks.chat_utils import GenericChain

# Create a chain with a given template
template = "The meaning of {word} is:"
my_chain = GenericChain(template)

# Call the chain with any input you desire
response = my_chain("friendship")
print(response)

Module Structure

  • exclude.toml: Configuration file to specify files or directories to exclude.
  • requirements.dev.txt: Development dependencies for this module.
  • requirements.txt: Main dependencies for this module.
  • llm_blocks
    • chat_utils.py: Python file containing the definition of the GenericChain class and utility functions for working with LLM chains.

Logging Responses

The GenericChain class keeps a log of all interactions with the given LLM. The log is stored as a list of dictionaries and can be accessed with my_chain.logs.

Example:

for log in my_chain.logs:
    print(f'Inputs: {log["inputs"]}')
    print(f'Callback: {log["callback"]}')
    print(f'Response: {log["response"]}')
    print(f'Response Time: {log["response_time"]}')
    print('---')

Contributing

Feel free to submit pull requests, report bugs, or suggest new features through the GitHub repository. We appreciate your contributions and feedback!

License

This project is licensed under the MIT License.

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-blocks-0.2.2.tar.gz (3.0 kB view details)

Uploaded Source

Built Distribution

llm_blocks-0.2.2-py3-none-any.whl (3.3 kB view details)

Uploaded Python 3

File details

Details for the file llm-blocks-0.2.2.tar.gz.

File metadata

  • Download URL: llm-blocks-0.2.2.tar.gz
  • Upload date:
  • Size: 3.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.1

File hashes

Hashes for llm-blocks-0.2.2.tar.gz
Algorithm Hash digest
SHA256 204c5032bf9ada556d5c0330eb86978c6ab206aea6c85cf279e0e4afe2ea5269
MD5 e97e18d30a459d03186f6c2d4f42fda4
BLAKE2b-256 149eae50caf90b9cd46db925cc40fecd9a9468c3c5726a675cf01573396f088d

See more details on using hashes here.

File details

Details for the file llm_blocks-0.2.2-py3-none-any.whl.

File metadata

  • Download URL: llm_blocks-0.2.2-py3-none-any.whl
  • Upload date:
  • Size: 3.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.1

File hashes

Hashes for llm_blocks-0.2.2-py3-none-any.whl
Algorithm Hash digest
SHA256 79d6b213d82d3a62eef9655c43b253c77195f970afdfcc394375c4318f3af3aa
MD5 efec38aaa72bda5284c33f89c24d9993
BLAKE2b-256 6c259cdfcab27e94deb2f2bcf9a537acf336f6f6131bfff3a32244013ba27179

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