LLM Chains as Configuration, Not Code
Project description
ChainFactory: Mass manufacture your LLM chains.
Overview
ChainFactory is a utility to build LLM chains by configuration instead of code. The chains produces this way are reproducible and easy to manage i.e read, edit and share. The created chains can be exported as Python code and used in your projects without any mod. Additionally, you can pass the YAML configuration to ChainFactoryEngine to use them on the fly.
This allows a very interesting pattern where you can create chains during runtime and combine their outputs to do interesting things that are not possible with the standard code defined chains.
Installation
-
Clone the repository:
git clone https://github.com/pankajgarkoti/ChainFactory.git
-
Install the required packages:
poetry install -
Set up environment variables:
export OPENAI_API_KEY="sk-xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
The ChainFactory Specification
Draft 002
Structure
A .fctr file is a YAML file with 1 major distinction - it can contain duplicate fields in the top level mapping.
- Specify the Prompt or list the Inputs (keyword: prompts & in)
- Define Models (keyword: def)
- Specify the Outputs (keyword: out)
Typing
The typing system takes direct inspiration from Python's type annotations. The only difference is that the type system is stricter and more limited. The following atomic types are supported:
- str
- int
- float
- bool
- list
- dict
It is possible to define custom types in the def section of the .fctr file. The syntax for typing a field is as follows:
[name]: [type][?]=[default_value]
The ? symbol right after a type (without spaces) indicates that the field is optional. If a field has a RHS value that is not a valid type, ChainFactory will assume that the field type is str and the RHS is a default value.
Definitions
The def section is the part of the .fctr file that defines custom types to be used in rest of the file.
Example Usage:
def:
Haiku:
haiku: str
explanation: str
topic: str
The models defined in the def section can be used to compose the desired output structure of the chain.
Prompt
The prompt template related options can be set under this section. Attributes of the prompt section are:
- type: template # can be template, auto. the template is generated automatically based on the purpose of the chain in the auto mode.
- purpose: null # a string that describes the purpose of the chain. this can be used for auto generating the prompt template.
- template: | # the template to use for the prompt.
Example Usage:
prompt:
type: template # possible values are template, auto
purpose: null # can be provided to auto generate the prompt template if the input variables are given
template: | # the purpose and type fields are ignored if the template is provided
Write a haiku about {topic}
# shorthand for the above
prompt: |
Write a haiku about {topic}
# additionally, the following shorthand can be used for auto mode
purpose: "to generate haikus" # the file should not contain the prompt field if the purpose field is at the top level
Out
The out keyword defines part of the .fctr file that defines the output structure of the chain. The out section contains attributes for the desired output structure. Not defining the out section means that the chain output is to be a single string with no enforced structure.
Example Usage:
out:
haikus : list[Haiku] # using the Haiku model defined in the def section
Usage
The complete .fctr file for generating haikus looks like this:
def:
Haiku:
haiku: str
explanation: str
topic: str
prompt: |
Write {num} haiku(s) about {topic}
out:
haikus : list[Haiku]
Here is how you can use the above file to create a chain that generates haikus:
from src.interfaces.engine import ChainFactoryEngine
engine = ChainFactoryEngine.from_file("haiku.fctr")
res = engine({ "topic": "Python", "num": 3 })
for haiku in res.haikus:
print(haiku.haiku)
print(haiku.explanation)
print("\n\n")
The above code prints the following 3 haikus of questionable originality but generating haikus was not the point :)
Silent code it weaves,
Serpentine logic unfolds,
Errors shed like skin.
This haiku captures the elegance and efficiency of Python programming, likening it to a snake shedding its skin to symbolize the ease of debugging and refining code.
Indentation rules,
Whitespace guides the coder's hand,
Python's zen revealed.
This haiku highlights Python's unique use of indentation and whitespace to structure code, reflecting the language's philosophy of simplicity and readability.
Libraries abound,
Endless tools at your command,
Python's power grows.
This haiku emphasizes the vast array of libraries and tools available in Python, showcasing its versatility and the growing strength of its ecosystem.
Contact
For questions or feedback, please create an issue or contact garkotipankaj@gmail.com.
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 chainfactory_py-0.0.5.tar.gz.
File metadata
- Download URL: chainfactory_py-0.0.5.tar.gz
- Upload date:
- Size: 8.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.3 CPython/3.11.9 Darwin/23.3.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ab864ce72159b68c36846d30a9fde785266ebb218ee0451e7cc06862fe5e3013
|
|
| MD5 |
778b0045979026103263f0319040ff7c
|
|
| BLAKE2b-256 |
adcf23fd8e6387fe77655b36cfa05b34e9f207dc6ea81266c320a291b2161bd6
|
File details
Details for the file chainfactory_py-0.0.5-py3-none-any.whl.
File metadata
- Download URL: chainfactory_py-0.0.5-py3-none-any.whl
- Upload date:
- Size: 9.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.3 CPython/3.11.9 Darwin/23.3.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a7768d826a8c7f6e82e53d01a3ad67fd95616821fc50447d77aa448a72e97158
|
|
| MD5 |
401995f879c9df6447cae66bf5362a1d
|
|
| BLAKE2b-256 |
2aea897179f3347ce37260449356a5b58b7ab6af47296ac8bfb90899ccf7c322
|