Skip to content

Semantic Telemetry

Semantic Telemetry is a real-time measurement system for conversational meaning. It answers the question: "Is this conversation going somewhere meaningful?"

Core Metrics

SGI — Semantic Grounding Index

Measures how well the assistant's response semantically grounds with the user's query.

  • Range: 0.0 to 4.0+
  • Coherent region: 0.5 to 2.0
  • Formula: cos_sim(user_embedding, assistant_embedding) / mean_embedding_norm
SGI ValueInterpretation
< 0.7Drifting from user's topic
0.8 - 1.5Healthy grounding (coherent)
> 2.0Question-focused (assistant asking clarifying questions)

Orbital Velocity

Rate of semantic movement in embedding space — how fast the conversation is changing direction.

  • Range: 0 to 180 degrees
  • Coherent region: 0 to 45 degrees
  • Formula: arccos(cos_sim(msg_t, msg_{t-1})) * (180 / pi)
VelocityInterpretation
< 25 degreesStable, on-topic
25 - 45 degreesModerate exploration (still coherent)
> 45 degreesChaotic movement, topic jumping

Coherence Region

A conversation enters the Coherence Region when:

  • SGI is between 0.5 and 2.0
  • Velocity is at or below 45 degrees

Conversations that enter and remain in this region show genuine transformational depth. This is the central finding from the S64 research papers.

How It Works

  1. Each message pair (user + assistant) is embedded using a vector model (Nomic, OpenAI, Cohere, etc.)
  2. The SDK computes SGI and velocity from the embedding vectors
  3. Results are returned in real-time (~500ms per ingestion)
  4. Aggregate statistics build a "conversational profile" over time

Try It

Research Baselines

The S64 validation suite includes 10 research baselines:

IDNameCategory
B01Surface DeceptionSynthetic
B02Implicit TransformationSynthetic
B03Rapid OscillationSynthetic
B04Stuck StatesSynthetic
B05Nested ComplexitySynthetic
B06Outcome AmbiguitySynthetic
B07Failed TransformationSynthetic
B08False CompletionSynthetic
B09Self-Discovery (Human)Naturalistic
B10Self-Discovery (AI)Naturalistic

These baselines cover a spectrum of conversational patterns, from surface-level exchanges to deep transformational dialogues, and are available in the Semantic Telemetry App's "Load Conversation" mode.

SDK Documentation

For technical integration details, see the SDK Reference.

Protocols are MIT Licensed. Platform code is AGPL.