Skip to content

Commit 9d491ed

Browse files
committed
v0.6.0: english_to_v3() deterministic compressor. spaCy NLP pipeline. No LLM dependency.
1 parent 0396bbc commit 9d491ed

3 files changed

Lines changed: 390 additions & 3 deletions

File tree

pyproject.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,12 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "axl-core"
7-
version = "0.5.0"
8-
description = "AXL Protocol v3: Compressed semantic protocol for agent reasoning"
7+
version = "0.6.0"
8+
description = "AXL Protocol v3: Compressed semantic protocol for agent reasoning. Deterministic English-to-AXL compression."
99
readme = "README.md"
1010
license = {text = "Apache-2.0"}
1111
requires-python = ">=3.10"
12+
dependencies = ["spacy>=3.7"]
1213
authors = [{name = "Diego Carranza", email = "admin@axlprotocol.org"}]
1314
classifiers = [
1415
"Development Status :: 3 - Alpha",

src/axl/__init__.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,9 @@
44
https://axlprotocol.org
55
"""
66

7-
__version__ = "0.5.0"
7+
__version__ = "0.6.0"
88

9+
from axl.compressor import compress, english_to_v3
910
from axl.emitter import emit, emit_v3, v3_from_json, v3_to_json
1011
from axl.models import (
1112
FLAGS,
@@ -28,6 +29,8 @@
2829

2930
__all__ = [
3031
"__version__",
32+
"compress",
33+
"english_to_v3",
3134
"parse",
3235
"parse_v3",
3336
"detect_version",

0 commit comments

Comments
 (0)