Skip to main content

Python implementation of the AgentMark templatedx transformer

Project description

AgentMark TemplateDX (Python)

Python implementation of the AgentMark templatedx transformer.

Installation

pip install agentmark-templatedx

Usage

This package transforms pre-parsed MDX AST trees. The AST is typically obtained by:

  • Parsing MDX with the TypeScript @agentmark-ai/templatedx package
  • Loading a pre-parsed AST from a JSON file
  • Receiving an AST from the AgentMark runtime
import asyncio
import json
from templatedx import TemplateDX

async def main():
    engine = TemplateDX()

    # Load a pre-parsed MDX AST (from TypeScript parser or JSON file)
    with open("template.ast.json") as f:
        ast = json.load(f)

    # Transform the AST with props
    result = await engine.transform(
        ast,
        props={"name": "Alice", "items": [1, 2, 3]}
    )

    print(result)

asyncio.run(main())

Custom Plugins

from templatedx import TagPlugin, PluginContext

class MyPlugin(TagPlugin):
    async def transform(self, props, children, context):
        # Transform children and return result
        transformer = context.create_node_transformer(context.scope)
        return await transformer.transform_children(children)

engine = TemplateDX()
engine.register_tag_plugin(MyPlugin(), ["MyTag"])

Custom Filters

engine = TemplateDX()
engine.register_filter("double", lambda x: x * 2)

Built-in Filters

  • capitalize(str) - Capitalize first character
  • upper(str) - Uppercase string
  • lower(str) - Lowercase string
  • truncate(str, length) - Truncate with ellipsis
  • abs(num) - Absolute value
  • join(arr, separator) - Join array elements
  • round(num, decimals) - Round number
  • replace(str, search, replacement) - Replace occurrences
  • urlencode(str) - URL encode string
  • dump(any) - JSON stringify

Built-in Tags

  • <If condition={...}> / <ElseIf condition={...}> / <Else> - Conditional rendering
  • <ForEach arr={...}>{(item, index) => ...}</ForEach> - Array iteration
  • <Raw>...</Raw> - Raw content passthrough

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

agentmark_templatedx-0.3.0.tar.gz (47.1 kB view details)

Uploaded Source

Built Distribution

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

agentmark_templatedx-0.3.0-py3-none-any.whl (26.1 kB view details)

Uploaded Python 3

File details

Details for the file agentmark_templatedx-0.3.0.tar.gz.

File metadata

  • Download URL: agentmark_templatedx-0.3.0.tar.gz
  • Upload date:
  • Size: 47.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.13

File hashes

Hashes for agentmark_templatedx-0.3.0.tar.gz
Algorithm Hash digest
SHA256 d923f79dca3c786ee6ea4c6aede691bc5da708c29385ee4c2757ffb52cd93619
MD5 c62907a2ea7cf5f413d21c0b142469ef
BLAKE2b-256 a6b7c3da92794e545f04b017065b46d6ffff18f099641047e88e1a5fb35a0dbc

See more details on using hashes here.

File details

Details for the file agentmark_templatedx-0.3.0-py3-none-any.whl.

File metadata

File hashes

Hashes for agentmark_templatedx-0.3.0-py3-none-any.whl
Algorithm Hash digest
SHA256 4cec5c3326b92718a4d8e6c70c41d022bb938c3ef68ea90fd62edaacb0b93eb8
MD5 63a02bb46e7536de38215736a1eb8a6f
BLAKE2b-256 b31f819056ac5b04073436b656da637a03cf3f93ab3725b3e0fca13ab9b3d0e1

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