Skip to main content

LLM7-powered generator that creates a minimal single-function Python package and runner from a natural-language spec.

Project description

PyPI version License: MIT Downloads LinkedIn

py_llm7_code

py_llm7_code generates a minimal single-function Python package from a natural-language specification using an LLM7 ChatLLM7 client.
It enforces one public function in __init__.py, performs safety/syntax/import checks, and runs a minimal demo (run.py).

Installation

# From PyPI
pip install py_llm7_code

# Or install directly from source
pip install "git+https://github.com/chigwell/py_llm7_code"

Usage

from langchain_llm7 import ChatLLM7
from py_llm7_code.orchestrator import generate_package_with_llm7

llm = ChatLLM7(base_url="https://api.llm7.io/v1")

spec = """
Create a simple package with exactly one function `greet()` that returns 'hello'.
No network calls. Pure stdlib.
"""

result = generate_package_with_llm7(
    llm=llm,
    spec_text=spec,
    package_name="greet_pkg",
    verbose=True,
)

assert result["success"], result.get("error_message")

print("Package dir:", result["package_dir"])
print("Package name:", result["package_name"])
print("Run stdout:", result["stdout"])  # e.g. {"result": "hello"}

Generated structure (example):

/tmp/llm7_genpkg_xxxxxx/
├─ greet_pkg/
│  └─ __init__.py      # contains exactly one function
└─ run.py              # imports and executes the function

Features

  • One-function enforcement: rejects multiple functions/classes in __init__.py.
  • Safety checks: blocks dangerous imports (subprocess, sockets, HTTP libs, etc.).
  • Syntax & import validation: py_compile + import reflection.
  • Sandboxed execution: timeouts and best-effort memory limits (POSIX resource).
  • Optional venv & deps: create a temp venv and pip install requested packages.
  • Retry loop: automatically retries generation with feedback.
  • Allow-list for imports: restrict third-party imports to a provided list.
  • Custom indexes: supports --index-url and --extra-index-url.

API

generate_package_with_llm7(
    llm: ChatLLM7,
    spec_text: str,
    *,
    package_name: str | None = None,
    max_retries: int = 10,
    exec_timeout_sec: int = 8,
    memory_limit_mb: int = 256,
    verbose: bool = False,
    pip_packages: list[str] | None = None,
    allowed_imports: list[str] | None = None,
    pip_index_url: str | None = None,
    pip_extra_index_urls: list[str] | None = None,
    pip_no_deps: bool = False,
) -> dict[str, any]

Key return fields:

  • success: bool
  • package_dir: str
  • package_name: str
  • init_py_code: str
  • runner_code: str
  • run_cmd: str
  • stdout: str
  • stderr: str
  • attempt_count: int
  • pip_packages_installed: list[str]
  • venv_python: str

Notes

  • Memory limits rely on POSIX resource and may be ignored on non-POSIX systems.
  • By default, third-party imports are disallowed unless explicitly allow-listed via allowed_imports.
  • Network/file-system side effects are restricted; the generator scans for disallowed patterns.

Contributing

Issues and PRs are welcome. Please use the issue tracker.

License

py_llm7_code 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

py_llm7_code-2025.9.81220.tar.gz (23.2 kB view details)

Uploaded Source

Built Distribution

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

py_llm7_code-2025.9.81220-py3-none-any.whl (22.0 kB view details)

Uploaded Python 3

File details

Details for the file py_llm7_code-2025.9.81220.tar.gz.

File metadata

  • Download URL: py_llm7_code-2025.9.81220.tar.gz
  • Upload date:
  • Size: 23.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.11

File hashes

Hashes for py_llm7_code-2025.9.81220.tar.gz
Algorithm Hash digest
SHA256 d2ae71bb616cabd5716b50b360ddc5a1d82afa868142a07c644f2968aff7ddb1
MD5 ae233f3863e9f482f2ccefafbc950f3d
BLAKE2b-256 26b0c0a04afc09529491620a850de218430b12e1c2317eb3877c0caa8f4cd3f0

See more details on using hashes here.

File details

Details for the file py_llm7_code-2025.9.81220-py3-none-any.whl.

File metadata

File hashes

Hashes for py_llm7_code-2025.9.81220-py3-none-any.whl
Algorithm Hash digest
SHA256 f3c8675944f402f6973634b618f4c4f31e9b4d13b1fe1f36766485e2925fc90a
MD5 6e1f70d66afe2b8f26af1e58a430bf94
BLAKE2b-256 d8406aa6f611d43dcf67cd8fabd54a81eae8c092c0ec15971ad5f8ea1cbf1bf3

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