Skip to main content

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
Demo (keyless) Anyone — instant eval, built-in fixtures only No key needed; pip install and go
Developer (180 days) Individuals using their own data, non-commercial Self-serve at knowlytix.ai/signup
Enterprise (365 days) Commercial deployment Contact hello@knowlytix.ai

Every import knowlytix.core verifies a signed JWT license key at module load time. With no key present, it drops to keyless demo mode (built-in fixtures only) rather than failing — so pip install runs out of the box. A key that IS present but expired or tampered fails closed with an actionable LicenseError. 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.

To silence all startup output — banner, EULA reminder, and demo disclaimer — set KNOWLYTIX_QUIET=1. This is handy in Jupyter notebooks, where stderr renders as a red output cell. Quiet mode only skips the printing; license verification still runs exactly as before.

export KNOWLYTIX_QUIET=1

A key that's present but bad surfaces an actionable error (a missing key drops to demo mode instead — see the next section):

  • Expired: LicenseError: license expired 2025-06-01. Renew at knowlytix.ai/renew.
  • Malformed / tampered: LicenseError: signature verification failed.

Demo mode (the keyless default)

With no license key present, knowlytix.core runs in demo mode automatically — pip install then import knowlytix.core just works, no key required. You can also force it explicitly with KNOWLYTIX_DEMO_MODE=1 (e.g. to ignore a key that's already installed).

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)

Try it: the knowlytix-harness wheel ships a keyless quickstart notebook at knowlytix/harness/demo/demo_quickstart.ipynb (resolve its path with python -c "from knowlytix.harness.demo import notebook_path; print(notebook_path())") that runs end-to-end with no key and no API key against the bundled credit-risk demo corpus.

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 Demo Developer Enterprise
max_dataset_entities GeometricKnowledgeGraph.__init__ size 50 20,000 unlimited
max_memory_slots MemoryConfig.enm_capacity 100 5,000 unlimited
max_training_epochs GMSCoreSettings.train_epochs 0 200 unlimited
max_document_pages DocGMSSettings.max_pages 10 200 unlimited
max_benchmark_runs GMSHSettings.doe_n_runs 2 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 developer key with GMS_TRAIN_EPOCHS=500 runs with train_epochs=200; 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/gmsh 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 → 200

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 developer 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 developer caps above the developer 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.
  • Developer tier (and keyless demo) restricts use to non-commercial work; commercial deployment requires an Enterprise key.
  • Developer keys expire 180 days after issue; all 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

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 Distributions

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

knowlytix_core-1.1.0-cp312-cp312-win_amd64.whl (965.2 kB view details)

Uploaded CPython 3.12Windows x86-64

knowlytix_core-1.1.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

knowlytix_core-1.1.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

knowlytix_core-1.1.0-cp312-cp312-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

File details

Details for the file knowlytix_core-1.1.0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for knowlytix_core-1.1.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 413c592f792fced9c7fed455170ca1433c409d624d07cc14e4edf06dd0f84971
MD5 c23a56bab7fbdd25610f2b67b36c7a8f
BLAKE2b-256 7e3681fc2f46ba0040e09fe08a2c539a51911287a44d35b151cc4f51a8f787da

See more details on using hashes here.

File details

Details for the file knowlytix_core-1.1.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for knowlytix_core-1.1.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a0c54f6a91fce3e4c1b9a72237fea0a0fe57aaa5f9b979eb68aedd2a8d404d3c
MD5 6955e237436825d76b819767971d7932
BLAKE2b-256 5c0154b2a36a6dae3f8b3775866c8d96201a0a5e40627ebba5190ffb5d34fec0

See more details on using hashes here.

File details

Details for the file knowlytix_core-1.1.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for knowlytix_core-1.1.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ac02a4e91dad4289265314c38d9c2fadf1cd347aaf25b42a9887f92097faadc4
MD5 e9c06abdf78649efff33916c2389aaaa
BLAKE2b-256 8ebdc7127c9858c1c55ebcb49fa490bc15ed0bb3f71b76cd9ff46b039c3c4fe9

See more details on using hashes here.

File details

Details for the file knowlytix_core-1.1.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for knowlytix_core-1.1.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 deb42eaed6342ffffe81a19c5cdc6587b6b520d9667b3b7ccf478b6f859c5492
MD5 10f4891e40763d75c2b17dc3fb483440
BLAKE2b-256 d7c0d53050040f474c7066a1b224043f8d56e6e3409fc3ea821abd25ad4148cc

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