Skip to main content

Tests Hermes e2e Python versions PyPI version Checked with mypy Ruff

incontext logo

incontext is a Hermes Agent plugin that gives each LLM request exactly the output budget still available below Hermes' context-compression boundary. It prevents a fixed, oversized max_tokens value from consuming the input space where Hermes must still be able to compress the conversation.

The plugin reads the effective compression window from the installed Hermes ContextCompressor, asks the selected inference backend to tokenize the exact provider-visible prompt, and applies:

max_tokens = min(
    caller_max_tokens,
    compression_window - prompt_tokens,
)

When the caller does not provide an output cap, incontext uses the whole free remainder of the compression window. A smaller positive caller cap is preserved, which keeps bounded auxiliary operations such as Hermes context summarization from becoming unexpectedly long.

Hermes auxiliary calls (including context-compression summaries, generated titles, and vision helpers) do not pass through the public llm_request middleware. Hermes also omits max_tokens for most custom providers. The plugin therefore wraps Hermes' auxiliary request builder at registration time: those requests receive the same exact budget, and an explicit smaller caller cap is not lost. If exact counting cannot produce a safe result, the wrapper leaves Hermes' original request unchanged.

The expression is applied only while its result is positive. A zero or negative result is not converted to the invalid sentinel max_tokens=1. Instead, incontext installs the same exact counter into Hermes' pre-API compression estimator, so Hermes compacts the conversation before it creates the provider request. If the tokenizer is temporarily unavailable, this bridge falls back to Hermes' native rough estimator and the request middleware itself remains fail-open.

This addresses the same output-budget arithmetic discussed in NousResearch/hermes-agent#38652.

Installation

Once release 0.0.2 or newer is available on PyPI, install and enable the package using the same plugin name, incontext:

python -m pip install 'incontext>=0.0.2'
hermes plugins enable incontext

Until that safety-complete release is published, install the current develop branch:

python -m pip install 'git+https://github.com/pomponchik/incontext.git@develop'
hermes plugins enable incontext

Restart the long-running Hermes gateway after installing or upgrading the Python package. Hermes discovers it through the official hermes_agent.plugins entry-point group; no source file has to be copied into $HERMES_HOME/plugins.

Configuration

The bundled vllm backend is selected by default. Its INCONTEXT_TOKENIZER_URL setting is required and must point to the /tokenize endpoint of the same vLLM model Hermes uses:

export INCONTEXT_BACKEND='vllm'
export INCONTEXT_TOKENIZER_URL='https://inference.example/tokenize'
export INCONTEXT_TOKENIZER_TIMEOUT_SECONDS='30'
export INCONTEXT_TOKENIZER_USER_AGENT='incontext/0.0.2'
export INCONTEXT_FALLBACK_MARGIN_TOKENS='1024'

Environment variables are loaded through typed skelet.Storage fields backed by ordered skelet.EnvSource instances. Primary INCONTEXT_* names take precedence over the supported legacy aliases. Text normalization and blank value rejection are implemented by the fields' native conversion and validation rules.

Hermes' model.default, model.context_length, and compression.threshold remain the source of truth. The plugin constructs Hermes' installed ContextCompressor and uses its resolved threshold_tokens; it does not copy version-sensitive threshold arithmetic.

The optional variables are:

Variable Default Meaning
INCONTEXT_BACKEND vllm Named pristan backend plugin
INCONTEXT_TOKENIZER_TIMEOUT_SECONDS 30 /tokenize request timeout
INCONTEXT_TOKENIZER_USER_AGENT incontext/0.0.2 HTTP user agent
INCONTEXT_FALLBACK_MARGIN_TOKENS 1024 Extra reserve only when exact tokenization fails
INCONTEXT_COMPRESSION_WINDOW_TOKENS unset Explicit emergency override for the resolved Hermes boundary

The former HERMES_VLLM_TOKENIZER_* and HERMES_DYNAMIC_BUDGET_FALLBACK_MARGIN_TOKENS names are accepted as migration aliases. New deployments should use the INCONTEXT_* names.

Replacing the inference backend

The budgeting core depends only on the abstract incontext.Backend contract. It has no import or construction dependency on vLLM. A backend supplies its safe diagnostic source, exact count(...), cache invalidation, and an optional output-field normalization hook.

Backend implementations are named pristan plugins in the incontext.backends entry-point group. The generic skelet environment has a typed backend field whose default is vllm. At runtime incontext performs the single named resolution directly:

backend = backends[environment.backend].one()

The incontext distribution itself publishes the vllm entry point. Loading that entry point imports incontext.vllm_provider, whose only responsibility is to construct VllmBackend. All /tokenize payload rules, vLLM response fields, context-length validation, transport settings, and caching live inside that class rather than in the budgeting core.

A third-party distribution can provide another backend without changing incontext. Its implementation subclasses the stable abstract contract and its plugin module registers a provider under a new name:

# acme_backend/plugin.py
from __future__ import annotations

from typing import Any, Dict

from incontext import Backend, backends


class AcmeBackend(Backend):
    @property
    def source(self) -> str:
        return "acme-tokenizer"

    def count(
        self,
        request: Dict[str, Any],
        *,
        context_length: int,
    ) -> int:
        ...

    def clear_cache(self) -> None:
        ...


@backends.plugin("acme")
def provide_acme_backend() -> Backend:
    return AcmeBackend()

The third-party package makes that module discoverable in pyproject.toml:

[project.entry-points."incontext.backends"]
acme = "acme_backend.plugin"

After installing the package, select it through the same typed configuration field and restart the Hermes process:

export INCONTEXT_BACKEND='acme'

Only the selected provider is instantiated. An unknown name fails .one(); the unique slot rejects duplicate providers under the same name while loading entry points. Startup therefore fails instead of choosing a backend implicitly. Each backend owns and validates its backend-specific configuration; the generic settings object contains only the compression-window and fallback-budget policy.

Safety properties

  • With the bundled backend, vLLM applies its real chat template to messages, tools, and chat_template_kwargs; local tokenizer approximations are not used.
  • The returned max_model_len must equal Hermes' configured context length.
  • max_tokens, max_completion_tokens, and max_output_tokens are reduced to the smallest positive caller cap while preserving the corresponding provider-selected field name; a full compression window is handed to preflight compression.
  • The incoming request is copied and never mutated.
  • Exact counts use a bounded, thread-safe cache.
  • The exact counter is also used by Hermes' preflight compressor, eliminating the former gap where compression used a rough count but budgeting used an exact one.
  • If /tokenize fails, Hermes' own rough estimator is used with an additional safety margin. If both counters fail, the middleware leaves the request unchanged instead of taking Hermes down.
  • Logs contain counts and exception types, never prompts, credentials, or raw provider errors.

The tokenizer endpoint sees the prompt content by design. Run it on a trusted network path and use the same access controls as the inference endpoint.

Download files

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

Source Distribution

incontext-0.0.2.tar.gz (29.7 kB view details)

Uploaded Source

Built Distribution

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

incontext-0.0.2-py3-none-any.whl (30.0 kB view details)

Uploaded Python 3

File details

Details for the file incontext-0.0.2.tar.gz.

File metadata

  • Download URL: incontext-0.0.2.tar.gz
  • Upload date:
  • Size: 29.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for incontext-0.0.2.tar.gz
Algorithm Hash digest
SHA256 a23b1b7f06d85c13cc1f4859ed9601499b25ad76b51373e66ce6fa161df0c69c
MD5 1dcd3fc760fb8e8d32f33d5ff293a50d
BLAKE2b-256 b81d9d526837cb2ab15cd0b5e63df1fc0c7f73a0357bf0efb8c0df71dc27f170

See more details on using hashes here.

Provenance

The following attestation bundles were made for incontext-0.0.2.tar.gz:

Publisher: release.yml on pomponchik/incontext

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

File details

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

File metadata

  • Download URL: incontext-0.0.2-py3-none-any.whl
  • Upload date:
  • Size: 30.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for incontext-0.0.2-py3-none-any.whl
Algorithm Hash digest
SHA256 a6c4f03e7e98cdb5453c9df88dcde37ed244e7bde07ba94a23ef0832171f4f7e
MD5 5580cb644fa4b718d6d25f62156c9928
BLAKE2b-256 59011887b8315698c20a1c3a8dbc74966fe801700f4e4559f1a6de9c71a76a5f

See more details on using hashes here.

Provenance

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

Publisher: release.yml on pomponchik/incontext

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 Sentry Error logging StatusPage Status page