The Context Problem
Token Economics and the Word That Means Everything
An analysis of how AI token economics has turned context into a billing unit, the grammatical sprawl of the word across noun/verb/adjective roles, and why capacity is not coherence.
Key Ideas
The article examines how a single word — context — has been stretched across three grammatical roles, each with distinct failure modes and cost implications.
Context-as-Noun
Context as the model's inputs and outputs — a long list where the AI model keeps a working memory for the conversation. The dominant usage in the industry. Cursor defines it as your model's inputs and outputs.
Context-as-Verb
The act of "contextualizing" — prepending background text to a prompt. Treats providing information as equivalent to establishing meaning. The limitation is that pasting documents is not the same as structured knowledge representation.
Context-as-Adjective
Phrases like "contextual AI" and "context-aware systems" that claim relational intelligence while the underlying noun may only deliver statistical proximity.
Context Rot
Documented by Chroma's 2025 study across 18 LLMs: as input length grows, model performance degrades even on simple tasks. Counterintuitively, shuffled context (randomly reordered sentences) produced better retrieval than logically organized context.
Neurosymbolic AI
The combination of data-driven and knowledge-driven techniques. Knowledge graphs and ontologies form the symbolic backbone; LLMs form the neural component. GraphRAG documented an 80% decrease in token usage vs. vector RAG.
Market for Lemons
Proposed by George Akerlof (1970). Applied to AI: foundation companies define the token, control coherence mechanisms, and bear no disclosure obligation. Buyers cannot inspect semantic quality before purchase.
Credence Good
Formalized by Darby and Karni (1973). AI processing is a credence good — quality cannot be verified even after consumption. One can evaluate output quality but cannot verify coherent vs. stochastic inference.
AI Model Context Pricing
The spread encodes a market stance: larger context commands higher value, and the most capable reasoning earns a premium rate per token.
| Model | Organization | Context Window | Input $/M | Output $/M | License |
|---|---|---|---|---|---|
| GPT-5.4 Pro | OpenAI | 1,050,000 | $5.00 | $180.00 | Proprietary |
| Claude Opus 4.6 | Anthropic | 1,000,000 | $5.00 | $25.00 | Proprietary |
| Gemini 2.5 Flash | 1,000,000 | $0.50 | $2.50 | Proprietary | |
| Grok 4.1 Fast | xAI | 2,000,000 | $0.20 | $0.50 | Proprietary |
| Llama 4 Scout | Meta | 10,000,000 | $0.08 | $0.30 | Open-weight |
| Llama 4 Maverick | Meta | 1,000,000 | $0.15 | $0.60 | Community |
| Grok 4 | xAI | 256,000 | $3.00 | $15.00 | Proprietary |
Frequently Asked Questions
Key questions derived from the article's analysis of context, token economics, and AI reliability.
What is context in information science?
How has AI token economics changed the meaning of context?
What are the three grammatical roles of context in AI discourse?
What is context rot?
What is context engineering?
How does the "Market for Lemons" apply to AI context pricing?
What is a credence good in the context of AI?
How do knowledge graphs reduce token costs?
Why is capacity not the same as coherence?
What did Gartner recommend for AI value derivation?
Defined Terms
Key terms from the article's analysis of context, token economics, and AI reliability.
Context Engineering & Neurosymbolic Solutions
Practical steps for managing context costs and building coherent AI systems.
Identify the grammatical role of context in your use case
Determine whether you need context-as-noun (working memory for conversation), context-as-verb (prepending background to prompts), or context-as-adjective (context-aware system design). Each role has distinct failure modes and cost implications.
Apply context engineering techniques to manage token costs
Use compaction to summarize and reinitialize context. Implement structured note-taking to persist critical state outside the window. Deploy sub-agent architectures to isolate focused tasks in clean context windows.
Build neurosymbolic knowledge structures for coherence
Pass well-formed knowledge graph subgraphs into context windows to deliver more inferential signal per token than raw text. Use ontologies derived from relational databases to reduce overall LLM usage costs.
Explore the Knowledge Graph
Pre-built SPARQL queries to explore the article's knowledge graph. Click "Run live query" to execute against URIBurner.
▼ Describe the Article
PREFIX schema: <http://schema.org/> DESCRIBE <https://open.substack.com/pub/jessicatalisman/p/the-context-problem#article> <https://open.substack.com/pub/jessicatalisman/p/the-context-problem#jessicaTalisman>
▼ Construct the FAQ Subgraph
PREFIX schema: <http://schema.org/> CONSTRUCT { ?q a schema:Question ; schema:name ?name ; schema:acceptedAnswer ?a . ?a a schema:Answer ; schema:text ?text . } FROM <https://linkeddata.uriburner.com/DAV/demos/daas/the-context-problem-jessica-talisman-substack.ttl> WHERE { ?q a schema:Question ; schema:name ?name ; schema:acceptedAnswer ?a . ?a schema:text ?text . }
▼ AI Models by Organization
PREFIX schema: <http://schema.org/> SELECT ?model ?modelName ?orgName ?contextWindow ?inputPrice ?outputPrice WHERE { GRAPH <https://linkeddata.uriburner.com/DAV/demos/daas/the-context-problem-jessica-talisman-substack.ttl> { ?model a schema:SoftwareApplication ; schema:name ?modelName ; schema:manufacturer ?org . ?org schema:name ?orgName . OPTIONAL { ?model :hasContextWindow ?contextWindow } OPTIONAL { ?model :hasInputPricing ?inputPrice } OPTIONAL { ?model :hasOutputPricing ?outputPrice } } } ORDER BY ?orgName ?modelName
KG Explorer
RDF Graph Workbench
0 nodes / 0 linksExplore Knowledge Graph using SPARQL
Choose a named graph and query recipe, edit the SPARQL if needed, then open the encoded URIBurner query.
text/x-html+tr. DESCRIBE and CONSTRUCT queries use text/x-html-nice-turtle, matching the SPARQL format guidance in the skill contract.Tools & Technologies
D3.js v7
Data-driven document manipulation for interactive graph visualization
URIBurner
Linked Data resolver and SPARQL endpoint for knowledge graph exploration
OpenLink Virtuoso
Universal server for RDF, SQL, and SPARQL data management
kg-generator skill
Knowledge Graph generation from web content using schema.org terms
rdf-infographic-skill
Interactive HTML infographic generation from RDF knowledge graphs
RDF / SPARQL
W3C standards for knowledge representation and query