Skip to main content

Large Language Blocks - A context packaging format for LLMs

Project description

LLB (Large Language Blocks)

A context packaging format designed for LLMs.

Installation

pip install llb_doc

Quick Start

from llb_doc import create_llb, parse_llb

doc = create_llb()

# Method 1: Fluent API
doc.block("ticket", lang="en").meta(source="jira", priority="high").content(
    "User cannot upload files larger than 10MB"
).add()

# Method 2: Context manager
with doc.block("api", "json") as b:
    b.source = "storage_service"
    b.content = '{"max_size": 5242880, "unit": "bytes"}'

# Method 3: Direct add
doc.add_block("note", "前端限制与后端配置不一致", source="code_review", lang="zh")

# Render to LLB format
print(doc.render())

# Parse LLB text back to document
doc2 = parse_llb(doc.render())

Output

@block b1 ticket en
source=jira
priority=high

User cannot upload files larger than 10MB

@end b1

@block b2 api json
source=storage_service

{"max_size": 5242880, "unit": "bytes"}

@end b2

@block b3 note zh
source=code_review

前端限制与后端配置不一致

@end b3

Block Structure

Each block follows this structure:

@block <id> <type> [lang]
key1=value1
key2=value2

<content>

@end <id>

Roadmap

  • Flat Mode (independent blocks)
  • Graph Mode (@ctx, @node, @edge for graph-structured context)

License

MIT

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

llb_doc-0.1.3.tar.gz (8.6 kB view details)

Uploaded Source

Built Distribution

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

llb_doc-0.1.3-py3-none-any.whl (9.0 kB view details)

Uploaded Python 3

File details

Details for the file llb_doc-0.1.3.tar.gz.

File metadata

  • Download URL: llb_doc-0.1.3.tar.gz
  • Upload date:
  • Size: 8.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.16 {"installer":{"name":"uv","version":"0.9.16","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":null,"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for llb_doc-0.1.3.tar.gz
Algorithm Hash digest
SHA256 d4a298986924a88c5da58521f5b2b6c249cd7adfad78aea11e6ae106209a6084
MD5 434888fe657094aa12eb2d2021241fdb
BLAKE2b-256 fb29ed35e93e3df2d245f3d3bc4d8c34766ff4e791bc0176bc62d5599bcb5238

See more details on using hashes here.

File details

Details for the file llb_doc-0.1.3-py3-none-any.whl.

File metadata

  • Download URL: llb_doc-0.1.3-py3-none-any.whl
  • Upload date:
  • Size: 9.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.16 {"installer":{"name":"uv","version":"0.9.16","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":null,"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for llb_doc-0.1.3-py3-none-any.whl
Algorithm Hash digest
SHA256 4ffac03e310383a991109820401875679677d91b7316eb28e68ca796193897b9
MD5 363d104532dcc9e36cea5d7ee6851700
BLAKE2b-256 20076954516c60cd63e63533389f2a2bdb36f944ad7cc7f21eb14d3530ab6069

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