Skip to main content

Convention for expressing language text and templates for AI language model-related uses, for example prompt templates. The format is based on TOML, and word looms are meant to be kept in resource directories for use with code invoking LLMs.

Project description

Word Loom

A convention for expressing language text and templates for AI language model-related uses, especially prompt templates. The format is based on TOML, and word looms are meant to be kept in resource directories for use with code invoking LLMs.

Why Word Loom?

When working with LLMs, we've found ourselves needing better ways to manage prompts. Traditional code doesn't quite fit—prompts are natural language, not code. But they're also not just static text—they need templating, versioning, metadata and, crucially, internationalization.

Word Loom addresses some gaps that become clear once you start building real LLM applications:

  1. Separation of concerns: Keep your prompts out of your code, making them easier to iterate, version, and review
  2. Multilingual by design: LLM prompt engineering isn't just translation—a prompt that works well in English may need significant changes to achieve similar results in Japanese or Spanish. Word Loom lets you keep all language variants together, test them independently, and maintain metadata about their performance
  3. Template composition: Build complex prompts from reusable pieces, with clear markers for runtime values
  4. Diff-friendly: TOML's structure makes it easy to track changes in version control
  5. Compatible with traditional i18n: Works alongside gettext, Babel, and other localization tools, while respecting the unique needs of LLM prompting

Quick Example

# prompts.toml
lang = 'en'

[system_instruction]
_ = 'You are a helpful assistant that provides concise and accurate answers.'

[greeting_multilang]
_ = 'Hello, how can I help you today?'
_fr = "Bonjour, comment puis-je vous aider aujourd'hui?"
_es = '¡Hola! ¿Cómo puedo ayudarte hoy?'
_de = 'Hallo, wie kann ich Ihnen heute helfen?'
_ja = 'こんにちは、今日はどのようにお手伝いできますか?'

[code_review_prompt]
_ = '''
Review the following code and provide feedback on:
1. Code quality and readability
2. Potential bugs or issues
3. Suggestions for improvement

Code:
{code_snippet}
'''
_m = ['code_snippet']  # Declare template variables

Python implementation

PyPI - Version PyPI - Python Version

An example using Word Loom with an LLM API. OpenAI in this case, but Word Loom can work with any integration.

from openai import OpenAI
import wordloom

# Load your prompts
with open('prompts.toml', 'rb') as fp:
    loom = wordloom.load(fp)

client = OpenAI()

# Select language based on user preference
user_lang = 'fr'
greeting = loom['greeting_multilang']
greeting_text = greeting.in_lang(user_lang) or str(greeting)

# Use with OpenAI
response = client.chat.completions.create(
    model='gpt-4',
    messages=[
        {'role': 'system', 'content': greeting_text},
        {'role': 'user', 'content': 'How does an LLM work?'}
    ]
)

Installation

uv pip install wordloom

Or without uv:

pip install wordloom

Documentation

See wordloom_spec.md for the complete specification, including:

  • Detailed format description
  • Template marker syntax
  • Internationalization features
  • More usage examples
  • Integration patterns

LLM Prompting and internationalization

This is an under-considered area in AI prompting. When dealing with multiple languages, prompt engineering requires more than just translation. A prompt carefully tuned for English may perform very differently when naively translated to other languages. Word Loom helps by:

  • Keeping all language variants in one place for easy comparison
  • Allowing independent tuning of each language version
  • Supporting metadata to track prompt performance across languages
  • Enabling traditional i18n workflows while respecting LLM-specific needs

Contributing

Contributions welcome! We're interested in feedback from the community about what works and what doesn't in real-world usage. To get help with the code implementation, or to learn about our packaging approach, read CONTRIBUTING.md.

License

The specification is under CC BY 4.0 to encourage broad adoption and derivative work while ensuring attribution. We want the format itself to be as open and reusable as possible, allowing anyone to create implementations in any language or adapt the format for their specific needs.

Acknowledgments

Word Loom is primarily developed by the crew at Oori Data. We offer LLMOps, data pipelines and software engineering services around AI/LLM applications. Word Loom emerged from our work building LLM applications with sophisticated prompt management needs and multilingual imperatives.

Related Work

Since we started work on Word Loom there have bene some other projects emerging with some degree of intersection.

  • IBM's Prompt Declaration Language - A more comprehensive language for prompt engineering
  • PromptL
  • Promptfoo - Primarily for testing/evals; uses YAML-based configurations to manage and version prompts. Philosophy is: prompts as configuration
  • Lilypad - newer project; emphasizes versioning and managing prompts as code artifacts rather than just strings
  • Dotprompt (by Firebase Genkit) - format specifically for defining prompts in .prompt files (using a subset of Handlebars)
  • Instructor - Uses Pydantic to swap raw LLM responses for structured Python objects
  • Magentic - Uses Python decorators to turn functions into LLM calls
  • Pydantic AI - Newer framework from the Pydantic team that treats agents and prompts as strictly typed entities
  • BAML - AI framework for prompts within code

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

wordloom-0.10.1.tar.gz (24.0 kB view details)

Uploaded Source

Built Distribution

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

wordloom-0.10.1-py3-none-any.whl (17.2 kB view details)

Uploaded Python 3

File details

Details for the file wordloom-0.10.1.tar.gz.

File metadata

  • Download URL: wordloom-0.10.1.tar.gz
  • Upload date:
  • Size: 24.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for wordloom-0.10.1.tar.gz
Algorithm Hash digest
SHA256 4a43f02bf41885333c32d178cb4dbec1863a2fa760df0e92751d573cddd91550
MD5 41332063d4baad66ee69805ab061cb3c
BLAKE2b-256 066cc5d664fffda094a5790dd7f814341f25ab3aeabda8c76ef39e09cbe4fe2b

See more details on using hashes here.

Provenance

The following attestation bundles were made for wordloom-0.10.1.tar.gz:

Publisher: publish.yml on OoriData/WordLoom

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wordloom-0.10.1-py3-none-any.whl.

File metadata

  • Download URL: wordloom-0.10.1-py3-none-any.whl
  • Upload date:
  • Size: 17.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for wordloom-0.10.1-py3-none-any.whl
Algorithm Hash digest
SHA256 7074bd5a70bb38c797c6d10adee86b8485a25b92158f6dc15616804a4a50c53e
MD5 79d32fa79dfdd259e80ec678265576c1
BLAKE2b-256 29761dcb8cdcdc8e5c4a4243db01e22e2da0a8931429535b2f01c6f2fde1d062

See more details on using hashes here.

Provenance

The following attestation bundles were made for wordloom-0.10.1-py3-none-any.whl:

Publisher: publish.yml on OoriData/WordLoom

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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