Skip to main content

Geometric Memory Systems — core geometry and LLM-layer foundations

Project description

knowlytix-core

Commercial geometric memory engine. Hyperspherical knowledge graphs, Clifford-algebra primitives, and centralized LLM configuration — the foundation every other Geometric Memory Systems package depends on.

knowlytix-core is the proprietary runtime for the Geometric Memory Systems product family. The framework packages (knowlytix-knowledge, knowlytix-benchmark, knowlytix-harness) are open-source under Apache-2.0; knowlytix-core ships as obfuscated binary under a commercial EULA because it contains Knowlytix's core geometric algorithms.

  • Package: knowlytix-core
  • License: LicenseRef-Knowlytix-GMS-EULA (see LICENSE.txt in the wheel)
  • Python: 3.12+
  • Distribution: per-platform compiled wheels (Linux x86_64, macOS arm64, macOS x86_64). No Python source — compiled .so / .dylib only.
  • Status: alpha (v0.x)

Licensing tiers

Tier Who How to get a key
Trial Individuals evaluating the product, 30 days Email hello@knowlytix.ai
Classroom Accredited educational institutions Apply at knowlytix.ai/edu
Enterprise Commercial deployment Contact hello@knowlytix.ai

Every import gms call verifies a signed JWT license key at module load time. Without a valid key, import fails fast with an actionable LicenseError naming which env var to set. No telephone-home, no network calls — verification is purely local against the embedded public key.

Install

pip install knowlytix-core

The wheel bundles all geometric-engine artifacts. PyTorch (torch>=2.0) is a runtime dep and installs automatically; on CUDA systems the GPU build is selected, on CPU-only systems the CPU build is used.

Configure your license

Two supported sources, checked in precedence order:

  1. KNOWLYTIX_LICENSE_KEY environment variable — suits CI, containers, ephemeral shells.
  2. ~/.knowlytix/license.key file (single-line JWT) — suits workstations; set once, no shell config to maintain.
# Option A — environment variable (wins if both are set)
export KNOWLYTIX_LICENSE_KEY=gmsh_live_eyJhbGciOiJSUzI1NiIsInR...

# Option B — file (used when the env var is unset / empty)
mkdir -p ~/.knowlytix
echo "gmsh_live_eyJhbGciOiJSUzI1NiIsInR..." > ~/.knowlytix/license.key
chmod 600 ~/.knowlytix/license.key

# First import runs the verifier (banner prints to stderr)
python -c "import knowlytix.core" 2>&1
# → "knowlytix-core v0.1.0 licensed to customer=acme-corp tier=enterprise expires=2026-12-31"
# → "By using this software you agree to https://knowlytix.ai/eula (suppress: set KNOWLYTIX_EULA_ACCEPTED=1 or touch ~/.knowlytix/eula-accepted)."

The second line is an EULA reminder printed on every import until suppressed. To silence it once you've read the EULA:

export KNOWLYTIX_EULA_ACCEPTED=1         # shell / CI / container — preferred for one-shot environments
touch ~/.knowlytix/eula-accepted          # workstation — preferred when you'll import often

Either source suppresses the reminder; the license banner itself still prints.

Misconfigured keys surface actionable errors:

  • Missing key: LicenseError: No license key found. Set KNOWLYTIX_LICENSE_KEY or create ~/.knowlytix/license.key containing your signed key. Get a key at knowlytix.ai/signup or email hello@knowlytix.ai.
  • Expired: LicenseError: license expired 2025-06-01. Renew at knowlytix.ai/renew.
  • Malformed / tampered: LicenseError: signature verification failed.

Demo mode (no license required)

For evaluators who want to kick the tires before signing up: set KNOWLYTIX_DEMO_MODE=1 and import knowlytix.core works without a license key.

export KNOWLYTIX_DEMO_MODE=1
# Optional — silence the EULA reminder on every import:
# export KNOWLYTIX_EULA_ACCEPTED=1

python -c "import knowlytix.core"
# → "knowlytix-core v0.1.0 licensed to customer=demo-mode@knowlytix.ai tier=demo expires=9999-12-31"
# → "By using this software you agree to https://knowlytix.ai/eula (suppress: set KNOWLYTIX_EULA_ACCEPTED=1 or touch ~/.knowlytix/eula-accepted)."
# → "Demo mode: read-only. Writes, ingestion, training, and outbound LLM calls are disabled; bundled fixtures load normally. Get a license at https://knowlytix.ai/signup."

What works in demo mode:

  • Import + read bundled fixtures from knowlytix.benchmark.fixtures.demo
  • Run MockHarness / FullMockHarness from knowlytix.harness.fixtures
  • Score pre-generated benchmark questions via knowlytix.benchmark.score_answer
  • DemoLLMClient stands in for get_llm() — returns canned responses for prompts bundled in the demo fixtures and a clearly-labeled placeholder for anything else; no outbound network calls

What raises DemoModeError:

  • ingest_document and any licensed write path
  • Training / novel generation
  • Real LLM calls through a configured provider (falls back to DemoLLMClient)

Upgrade path: remove KNOWLYTIX_DEMO_MODE=1, install a real license key (env var or ~/.knowlytix/license.key), and the same notebooks run end-to-end against real data and real LLM calls. No code changes required.

What your license controls

Every license carries a signed caps envelope that puts ceilings on eight runtime knobs. The ceiling rule is the single contract the library enforces: env vars can tighten limits, not loosen licensed ceilings. Clamps are observable — every time a cap bites, an INFO log line to gms.license names the knob, the requested value, and the applied cap.

Claim Bound setting Trial Classroom Enterprise
max_dataset_entities GeometricKnowledgeGraph.__init__ size 5,000 20,000 unlimited
max_memory_slots MemoryConfig.enm_capacity 1,000 5,000 unlimited
max_training_epochs GMSCoreSettings.train_epochs 50 200 unlimited
max_document_pages DocGMSSettings.max_pages 50 200 unlimited
max_benchmark_runs GMSHSettings.doe_n_runs 8 32 unlimited
max_workers GMSHSettings.max_workers 1 2 unlimited
enable_advanced_features every GMSHSettings.enable_* flag false false true
allow_custom_thresholds GMSCoreSettings.tau_* false true true

Precedence (numeric claims):

runtime_value = min(customer_env_var or package_default, license_cap)

A trial key with GMS_TRAIN_EPOCHS=500 runs with train_epochs=50; an enterprise key with the same env var runs with train_epochs=500 (cap is "unlimited" — a true no-op). The license never forces a value upward: an unset env var stays at the package default, clamped only if that default itself exceeds the cap.

Two boolean claims are setter-shaped — they reset user config rather than clamping (thresholds have no natural ordering to clamp):

  • allow_custom_thresholds: false forces tau_ent, tau_contra, and tau_path back to their Pydantic defaults, ignoring any GMS_TAU_* env var.
  • enable_advanced_features: false forces every GMSH_ENABLE_* env var to False regardless of user setting.

Configure LLM providers

knowlytix-core exposes the centralized LLM layer every other package in the family consumes. Configure it once here and all dependent packages pick it up.

# Pick any LiteLLM-supported model:
export GMS_LLM_MODEL=anthropic/claude-opus-4-6    # or openai/gpt-4o-mini, etc.
export ANTHROPIC_API_KEY=sk-ant-...                # provider-specific key

Supported providers (via LiteLLM):

  • AnthropicANTHROPIC_API_KEY
  • OpenAIOPENAI_API_KEY
  • Google GeminiGEMINI_API_KEY
  • AWS BedrockAWS_ACCESS_KEY_ID, AWS_SECRET_ACCESS_KEY, AWS_REGION
  • Azure OpenAIAZURE_API_KEY, AZURE_API_BASE, AZURE_API_VERSION
  • MistralMISTRAL_API_KEY
  • CohereCOHERE_API_KEY
  • Together AITOGETHER_API_KEY
  • Ollama (local)OLLAMA_BASE_URL (no API key required)

See the .env.example template at knowlytix/gms for the complete reference.

Minimal example

import knowlytix.core                                      # triggers license check + banner
from knowlytix.core import GMSCoreSettings, get_llm, ModelPurpose

settings = GMSCoreSettings()                              # reads GMS_* env vars
client = get_llm(ModelPurpose.DEFAULT)                    # LLMClient ready to call
reply = client.complete([{"role": "user", "content": "Hello."}])
print(reply)

(import gms is also accepted as a backwards-compatibility shim for code written against the pre-Phase-4.8 namespace; new code should import from knowlytix.core directly.)

The full framework sits on top:

from knowlytix.knowledge import GMSExpertStore, ingest_document  # knowlytix-knowledge consumer
from knowlytix.benchmark import Benchmark                        # knowlytix-benchmark consumer
from knowlytix.harness.testing import DOEGMSBenchmark            # knowlytix-harness consumer

What's in the wheel

Compiled geometric primitives only — every module is a native binary:

  • knowlytix.core.config — Settings classes (GMSCoreSettings, legacy dataclasses)
  • knowlytix.core.llm — LLM client, purpose-routed config, error types
  • knowlytix.core.geometry — Clifford algebra, hyperspherical ops, Cayley tables
  • knowlytix.core.graph — geometric knowledge graph primitives
  • knowlytix.core.losses — geometric loss functions
  • knowlytix.core.memory — exact-numerical memory + eviction policies
  • knowlytix.core.optim — Riemannian optimizers

__all__ declares the committed-to-stability public symbols. Anything else is internal and may change without notice.

What's not here

  • Python sources — distributed as compiled binaries; .py files are stripped.
  • Training utilitiesknowlytix.core.train_finstructbench ships in the source repo only, not the wheel.
  • Research fixtures — live in the knowlytix-benchmark wheel.

FAQ

"My env var is being ignored."

Most likely you've hit a license cap. Run your command with PYTHONLOGGINGLEVEL=INFO (or point your logging config at the gms.license logger) and look for a line shaped like:

license cap: train_epochs clamped 500 → 50

That tells you the knob, the value you asked for, and the ceiling your license enforces. To get headroom, upgrade to a tier whose cap covers your value — see the table in §"What your license controls" above.

For the two setter-shaped booleans (allow_custom_thresholds and enable_advanced_features), a false license claim doesn't just clamp — it resets the knob to its package default (for tau_*) or forces False (for enable_*). Your env var is still being read; the license is overriding it.

"I upgraded to enterprise — do I need to change my code?"

No. Replace KNOWLYTIX_LICENSE_KEY with the new key, restart the process, and every cap that was clamping will lift. The public API is unchanged; GMSCoreSettings().train_epochs (from knowlytix.core.config) now reflects whatever env-var value you've set (instead of the trial ceiling).

"Can I request custom caps on an enterprise contract?"

Yes. Tell your Knowlytix account contact which cap you need (higher or lower than the enterprise default) and we'll issue a key with an override applied. Overrides can only tighten — e.g. an enterprise key whose contract limits max_workers to 8 even though the enterprise template is "unlimited". Loosening (raising trial caps above the trial template, flipping booleans the license withholds) requires moving to a higher tier.

Commercial terms (summary)

Full terms in LICENSE.txt. Brief summary (non-binding):

  • Single-tier licence covers the named customer per signed key.
  • No reverse engineering, decompilation, or disassembly of the compiled artifacts.
  • Classroom tier restricts use to non-commercial instruction.
  • Trial tier expires 30 days after issue; all trial licences visibly marked.
  • Redistribution of the wheel requires written permission.

Not a substitute for reading LICENSE.txt before deployment.

Related packages (Apache-2.0 frameworks)

Package Role
knowlytix-knowledge Document ingest + query front-end
knowlytix-benchmark Structured-retrieval benchmark
knowlytix-harness DOE black-box testing harness + runtime governance

Links

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

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

knowlytix_core-0.0.2-py3-none-any.whl (9.5 kB view details)

Uploaded Python 3

File details

Details for the file knowlytix_core-0.0.2-py3-none-any.whl.

File metadata

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

File hashes

Hashes for knowlytix_core-0.0.2-py3-none-any.whl
Algorithm Hash digest
SHA256 36a910170e27183cf72d1ca92b32fde91c7529035dbe90bc63b46ee051982cc9
MD5 33f6c25a3d157217b0300835a1bb044f
BLAKE2b-256 5e76b06390fe1c1aad30c318cde3bf4061d37469e7d927be3fd71535db8e066f

See more details on using hashes here.

Provenance

The following attestation bundles were made for knowlytix_core-0.0.2-py3-none-any.whl:

Publisher: publish-pypi.yml on knowlytix/GMS

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