Skip to main content

A dependency-free, code-less socket-based solution for resolving environment incompatibilities

Project description

A dependency-free, code-less socket-based solution for resolving (Python / conda) environment incompatibilities.

Usage Guidelines

Installation:

To install the inincompatibility package, run:

pip install inincompatibility

Example: Making Your LLMs Callable Like an API:

First, make your LLMs (e.g., Llama-3.2-1B) callable functions:

# your_llm.py
import torch
from transformers import pipeline as pl

m = "meta-llama/Llama-3.2-1B"
p = pl("text-generation", model=m, device="cuda")

def llm_qa(msg: list) -> dict:
    return p(msg)[0]["generated_text"]

Next, create another Python file (e.g., to_import_ori.py) to import the LLM function:

# to_import_ori.py
from your_llm import llm_qa

Then, use the inincompatibility CLI to generate the necessary importable code and then run the LLM in its (Python / conda) environment:

conda activate llama
pip install inincompatibility
python -m inincompatibility -i to_import_ori.py -o to_import.py

A file named to_import.py (specified by the -o argument) will be generated as follows:

# Generated by `inincompatibility`.
# **Not** depend on `incompatibility`. :)
# You can directly `import` this file in another environment.
import socket
import pickle

BUFFER_SIZE = 65536

client = socket.socket(2, socket.SOCK_STREAM)
client.connect(('127.0.0.1', 57849))

def _func_eval(func, args, kwargs):
    data = pickle.dumps((func, args, kwargs))
    client.sendall(data)
    return pickle.loads(client.recv(BUFFER_SIZE))

def _inincompatibility_remote_eval(*args, **kwargs):
    return _func_eval('_inincompatibility_remote_eval', args, kwargs)

def _inincompatibility_remote_exec(*args, **kwargs):
    return _func_eval('_inincompatibility_remote_exec', args, kwargs)

def llm_qa(*args, **kwargs):
    return _func_eval('llm_qa', args, kwargs)

Now, you can directly import the generated code in another (Python / conda) environment:

# main.py
from to_import import llm_qa
print(llm_qa('The key to life is'))

Run your main script (e.g., main.py) in the target environment:

conda activate blackbox
python main.py

For more details, check out the sample-llama directory on GitHub.

Example: Additional Samples:

For more usage examples, visit the sample-local directory on GitHub.

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

inincompatibility-0.0.7.tar.gz (8.0 kB view details)

Uploaded Source

Built Distribution

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

inincompatibility-0.0.7-py3-none-any.whl (8.1 kB view details)

Uploaded Python 3

File details

Details for the file inincompatibility-0.0.7.tar.gz.

File metadata

  • Download URL: inincompatibility-0.0.7.tar.gz
  • Upload date:
  • Size: 8.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.12.7

File hashes

Hashes for inincompatibility-0.0.7.tar.gz
Algorithm Hash digest
SHA256 0c0d53a2fc12f454924f39d31a1c8dec59775eba45c522083745bfcb6cb80f04
MD5 c00fdd92b9af6caa37515732bf2854fe
BLAKE2b-256 a03e17b97040b40627c920323d644fdd0461c7c169616da42bd34a903e764a72

See more details on using hashes here.

File details

Details for the file inincompatibility-0.0.7-py3-none-any.whl.

File metadata

File hashes

Hashes for inincompatibility-0.0.7-py3-none-any.whl
Algorithm Hash digest
SHA256 d111f4e4a7a3df5a95ca2509273a9f571979073c16577d00a2112be5352875a6
MD5 dc45508bf285ee7d61af5df205c5b4b8
BLAKE2b-256 ea43f5608af03226bbbd6fd13421f3b97cd0ebd4a6a7c3b726832e8aa65ec6a7

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