_config
MethodologyThe locked configuration folder in our folder system. Holds brand, voice, integrations, credentials, and anything else that must stay fixed for the duration of the project. Read only during execution.
Our take. The single most common cause of inconsistent AI assisted work is configuration drift. Lock _config at kickoff. Any mid project change requires explicit approval and a versioned commit.
CARC
HealthcareClaim Adjustment Reason Code. The code a payer attaches to a claim adjustment to explain why they paid less than billed. CARCs are paired with RARCs to give the full reason for a denial or adjustment.
Cloud LLM
AIA large language model hosted by a provider like Anthropic, OpenAI, or Google. Your application sends prompts over the internet and receives completions. Convenient, fast, and the right choice for many use cases.
Our take. If your data is sensitive, a cloud LLM may not be the right call regardless of cost. Read the local LLM entry next.
CMS
HealthcareCenters for Medicare and Medicaid Services. The federal agency that runs Medicare and Medicaid in the United States. CMS publishes coding rules, fee schedules, and policy changes that affect every healthcare practice.
Context window
AIThe maximum amount of text a language model can read in a single turn. Measured in tokens. When you exceed the window, older context gets dropped and the model loses awareness of it.
Our take. Most teams overload the context window with whole project history when each stage needs only its own context. That is a system design failure, not a model limitation.