---
id: "concept-native-ai-apps"
type: "concept"
source_timestamps: ["00:16:11", "00:16:16"]
tags: ["software-development", "product-design"]
related: ["action-build-native-ai", "concept-local-ai-economics"]
sources: ["s19-apple-trillion"]
sourceVaultSlug: "s19-apple-trillion"
originDay: 19
---
# Native AI Apps vs. AI-Enabled Apps

## Definition

Applications **designed from the ground up** to exploit the zero-marginal-cost, continuous-running nature of local AI — rather than just wrapping a cloud API into a traditional interface.

## The Two Patterns

### AI-Enabled App (today's default)
- Takes a traditional software interface
- Wraps a cloud LLM API (GPT-4, Claude, Gemini) as a thin layer
- Inference is expensive, episodic, request/response
- Context windows are rationed; every token has a cost-anxiety budget
- Architecture inherits all the constraints of [[concept-cloud-ai-economics]]

### Native AI App (the opportunity)
- Built assuming AI inference is **locally available and essentially free** (see [[concept-local-ai-economics]])
- Continuous background agents that watch user activity and offer help proactively
- Reads the user's *entire history* without context-window cost anxiety
- Invokes models thousands of times per hour
- Designed around always-on, zero-marginal-cost inference

## Examples of Native AI Patterns

- A document agent that re-summarizes your entire knowledge base every morning
- A coding assistant that continuously profiles your work-in-progress against your full repo history
- A clinical-note assistant that runs continuously during a patient visit
- A legal research tool that pre-reads every filing in your firm's history before you ask a question

## Strategic Recommendation

See [[action-build-native-ai]]. Builders are advised to focus on Native AI apps, since they leverage the unique fixed-cost economics of local compute rather than reselling expensive cloud tokens at razor-thin margins.


## Related across days
- [[concept-agent-callable-primitive]]
- [[concept-thin-wrappers]]
- [[claim-thin-wrappers-dead]]
