Skip to main content

Streamline the management of your project's preferences through standardized json files.

Project description

prefy

Prefy is a Python library designed to streamline and standardize preference management in projects. It provides a systematic approach to handling preferences across different scenarios, users, and environments.

What is it?

Prefy provides developpers with a systematic way to handle the preferences of their projects across scenarios/users/environments. It addresses the following pain points:

  • Losing/having to redefine one's own preferences when pulling the new version of a project
  • Differeniating the preferences across multiple environments
  • Testing the project through different combinations of preferences (i.e., different LLMs, etc.)
  • Finding the right setting across different locations
  • Differentiating between default and custom preferences
  • Running different configuration scenarios concurrently without hardcoding
  • And much more

How does it work?

Prefy translates preferences into instances of Preferences objects where each individual setting is an attribute that can hold only one value at any given time. In order to determine the list of preferences and their corresponding values, it will go through directories where the settings are defined in a fixed json format.

Defining a setting

Adding a setting to a project only requires adding a json object to a file placed in a preferences directory. Here is an example of a json object defining a setting. Note that the keys of this object are fixed and reserved.

    {
        "key":"resume_dir_path",
        "value":"private\\embeddings\\resume\\",
        "description":"Parent path to the folder where resume embeddings are stored.",
        "type":"Embeddings",
        "restricted":true,
        "force_update":false,
    }

Keys of the setting json object

  • key: the identifier of the setting. This will ultimately be created and transformed into an attribute of the Preferences object instantiated by Prefy
  • value: the value of the setting. This will ultimately be the value of the above attribute.
  • description: the description of the setting. This key is not handled by Prefy' code and is just used for human informational purposes. Optional.
  • type: the type of the setting. This key is used for human informational purposes except for the reserved word "Prefy", which indicates that this setting is for internal use of Prefy processes. Optional.
  • restricted: when true, indicates that this setting cannot be overwritten by other versions of it. (WIP) Optional
  • force_update: when true, indicates that when accessing the setting, Prefy will force a refresh of the Preferences to account for changes since they have last been loaded. This allows to change the value of a setting in live conditions. Default=false Optional

Defining different sets of preferences

The power of Prefy comes from its ability to determine the right value for a setting in the context of multiple potential scenarios/combinations. In order to do so, Prefy expects the developers to specify those combinations through preferences files. Developers are free to choose the structure that best fits their needs provided that:

  • All the preferences to be attached to a single instance of a Preferences object are defined within a single parent directory
  • Within a parent directory, a setting can be defined 1 or multiple times across different files.
  • When instantiating the Preferences object, Prefy will assign the last value found in the different files (sorted alphabeticaly) of a same directory to each setting

Here is a preferences file structure example:

- preferences
  - llm
    - 0.DefaultLLM.json
    - 1.Mistral.json
  - app
    - 0.Default_Preferences.json
    - 1.Production.json
    - 2.Test.json
    - 3.Dev1.json
    - 35.Speed-optimization.json

Such a structure allows the developer to define a set of standard preferences for how to work with LLMs and supersede them with their own preferences. For instance, assuming the following content of 0.DefaultLLM.json, which is included in the project's git repository as the default preferences:

    {
        "type":"Models",
        "key":"insights_rag_base_url",
        "description":"LLM model's url.",
        "value":null
    },
    {
        "type":"Models",
        "key":"insights_rag_temperature",
        "description":"Temperature of the model.",
        "value":0.3
    },
    {
        "type":"Models",
        "key":"insights_rag_model_name",
        "description":"Name of the model used for generating insights.",
        "value":"gpt-3.5-turbo"
    }

If a contributor to the project wants to specify a different model, they could change 0.DefaultLLM.json, but then, when pushing to the git repository, their own preferences would become the standard preferences. Instead, by using Prefy, they can just supersede specific preferences by defining them in a new file within the same directory. For instance, this could be the content of 1.Mistral.json:

   {
       "key":"insights_rag_base_url",
       "value":"http://localhost:1234/v1"
   },
   {
       "key":"insights_rag_model_name",
       "value":"TheBloke/Mistral-7B-Instruct-v0.1-GGUF/mistral-7b-instruct-v0.1.Q2_K.gguf"
   }

Since 1.Mistral.json comes alphabetically after 0.DefaultLLM.json, Prefy will use its content as the updated value for the preferences insights_rag_base_url and insights_rag_model_name, while still maitaining the value for insights_rag_temperature defined in 0.DefaultLLM.json. And by ignoring 1.Mistral.json from the git sync, our developer guarantees that they will always be using their own version of the preferences.

Accessing the preferences from the code

In order to access the current value of the preferences in your code, you need to instantiate a Preferences object for each of your preferences directories and then access them as values.

For instance.

Import module

After importing prefy through your favorite package manager (poetry, pip...), you'll be able to import Prefy's classes in your code.

from prefy import Preferences

Instantiate Preferences object

When you want to load the preferences from a specific directory, you'll just instantiate a Preferences class into a new object.

app_prefs=Preferences('preferences\\app')

Remember that you can instantiate as many Preferences objects as you want and that each of those instances will load all the settings of its directory. Which allows you to easily incorporate different sets of preferences within your code.

For instance, if you would like to pit different llms within your app, you would create two directories, each with the same keys but different values and load them in your code as such:

llm1=Preferences('preferences\\llm1')
llm2=Preferences('preferences\\llm2')

You would then be able to have a single logic be applied to your different preferences combinations since those would be treated as variables in your code. And you'd maitain the ability to tweak the preferences without having to touch the code.

Access a setting value

From then on, whenever you need to access a setting value, you'll fetch it from your Preferences instance.

vector_store=VectorStore(store_path=app_prefs.embeddings_path,sentence_transformer=app_prefs.sentence_transformer)

Addtional features

PreferencesCollection

The PreferencesCollection class is designed to manage multiple sets of preferences, each represented by a Preferences object. This class allows you to organize and access different configurations (presumably, of the same format) easily.

Purpose

  • Organize Preferences: Manage multiple Preferences objects, each corresponding to a different directory of settings.
  • Access by Key or Index: Retrieve specific Preferences objects using directory names (keys) or their order of insertion (indices).
  • Iterate and Inspect: Easily iterate over all available preferences and inspect their configurations.

How It Works

  • Initialization: When you create a PreferencesCollection, it scans a specified parent directory for subdirectories. Each subdirectory is expected to contain JSON files defining preferences.
  • Loading Preferences: For each subdirectory, a Preferences object is instantiated, and all settings within that directory are loaded.
  • Storage: The Preferences objects are stored in a dictionary, with the subdirectory names as keys.

Usage

  1. Import the Class:

    from prefy import PreferencesCollection
    
  2. Instantiate a PreferencesCollection:

    collection = PreferencesCollection('path/to/parent/directory')
    
  3. Access Preferences by Key:

     app_prefs = collection.get_by_key('app')
    
  4. Access Preferences by Index:

    first_prefs = collection.get_by_index(0).preferences
    
  5. List All Keys:

     keys = collection.list_names()
     print(keys)  # Output: ['app', 'llm', ...]
    
  6. Iterate Over Preferences:

    for item in collection:
        print(f"Preferences for {item.name}: {item.preferences}")
    

Example

Running a Prompt Against Multiple LLM Models Suppose you want to run the same prompt against a variety of LLM models. Instead of hard-coding all the different cases, you can create a single function that takes as input and iterates over an infinite number of preference files, each including the settings of the specific LLM you want to test.

from prefy import PreferencesCollection

def run_prompt_against_models(prompt, preferences_dir):
    # Create a collection from a directory containing multiple LLM preference sets
    collection = PreferencesCollection(preferences_dir)
    
    # Iterate over each set of preferences
    for model_name, prefs in collection:
        # Access the model-specific settings
        model_url = prefs.insights_rag_base_url
        model_name = prefs.insights_rag_model_name
        
        # Simulate running the prompt against the model
        print(f"Running prompt against model '{model_name}' at '{model_url}'")

Managing Long Values with .txt Files

Prefy supports the integration of .txt files for managing long values, such as prompt templates. This feature allows you to store lengthy content in separate text files, which are then automatically loaded and upserted into the Preferences object.

How It Works

  • File Naming Convention: Each .txt file should be named using the format 0_my_long_text.txt, where the number before the first underscore (_) is optional. The part after the first underscore is used as the key, with spaces replaced by underscores and converted to lowercase. For example, a file named 5_First Prompt.txt will have a key of first_prompt.

  • Content as Value: The content of each .txt file is read and stored as the value for the corresponding key in the Preferences object.

  • Handling Conflicts: If two files have the same name (ignoring the number before the first underscore), the file with the highest (alphabetical) number will be used. This allows for easy versioning and prioritization of settings.

Excluding files manually

Let's assume that I want to fix a bug that occurs with a specific set of preferences. Instead of changing my preferred preferences to replicte the but, I can simply create a new file with the appropriate preferences and give it the highest priority by giving it a filename starting with "ZZZ", for instance. When I'm done working with this configuration, an easy way to go back to my preferred preferences without losing the option to come back to this configuration in the future and preventing it from interfering with my regular preferences is to exclude this file from the Preferences instantiation process. In order to do so, I'll add the following object to the file:

     {
        "type":"Prefy",
        "key": "deactivate_setting_file",
        "description": "When set to true, this file is not taken into account. Use it to easily juggle through different preferences configurations.",
        "value": true
    }

Restricing preferences changes

WIP

Forcing updates

You can change the preferences on the fly without having to restart your app or worrying about specifying intervals or checkpoints to load data from the Preferences files. In order to do so, you just need to mark a setting as

"force_update":true

This will trigger the update of the Preference object on which the setting is stored each time this setting is read accessed by your application. Be aware that this refreshes all settings to their most recent value and may add unnecessary load on your app, therefore only use it in scenarios where it is relevant.

Environment variables integration

WIP

Best practices

Files whose name starts with 0_ should be excluded from gitignore and be used as reference of all possible keys

Reserved key words

The following must not be used as keys for your preferences:

  • deactivate_setting_file
  • meta

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

prefy-1.4.1.tar.gz (12.2 kB view details)

Uploaded Source

Built Distribution

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

prefy-1.4.1-py3-none-any.whl (13.3 kB view details)

Uploaded Python 3

File details

Details for the file prefy-1.4.1.tar.gz.

File metadata

  • Download URL: prefy-1.4.1.tar.gz
  • Upload date:
  • Size: 12.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.9.22

File hashes

Hashes for prefy-1.4.1.tar.gz
Algorithm Hash digest
SHA256 9b23a36380e1357145b2337a719ffd7c0ed4b0c0724e57f7dee3aa32ed5d8ded
MD5 51504f2fd91de654741cce010bae9995
BLAKE2b-256 31ad0d4a106931cd18e01eed9a0938df5ff6b67f918021fa1556052f063028b4

See more details on using hashes here.

File details

Details for the file prefy-1.4.1-py3-none-any.whl.

File metadata

  • Download URL: prefy-1.4.1-py3-none-any.whl
  • Upload date:
  • Size: 13.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.9.22

File hashes

Hashes for prefy-1.4.1-py3-none-any.whl
Algorithm Hash digest
SHA256 98d6a60b0739865b94115c7def19c1a5e964cd743dc2cb2c77dbe07e1ea792cc
MD5 fdd17c0d925a2e40738cc5454643e993
BLAKE2b-256 181a22eda3439ce35c87a795e46f07cb921f2f29f7cd2c4085c6269433565e14

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