Skip to content

Commit 909e8a4

Browse files
committed
docs(notes): add core LLM essentials guide
1 parent bcd75ba commit 909e8a4

File tree

3 files changed

+64
-2
lines changed

3 files changed

+64
-2
lines changed

_posts/en/2025-01-11-notes-en.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,9 @@ generated: false
77
translated: false
88
---
99

10-
These 2131 notes are primarily generated by AI chatbots. I used them to summarize key points and will walk through them to enhance my understanding.
10+
These 2132 notes are primarily generated by AI chatbots. I used them to summarize key points and will walk through them to enhance my understanding.
1111

12+
* [Core Essentials of LLM Applications](/notes/2025-09-05-core-llm-essentials-en)
1213
* [AI Model Context Window Capacities](/notes/2025-09-03-ai-model-context-window-en)
1314
* [Alphabet Hits $186.66B in H1 2025](/notes/2025-09-03-alphabet-h1-2025-revenue-en)
1415
* [Building Trust Takes Time and Consistency](/notes/2025-09-03-building-trust-consistency-en)
Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
---
2+
title: Core Essentials of LLM Applications
3+
lang: en
4+
layout: post
5+
audio: false
6+
translated: false
7+
generated: true
8+
image: false
9+
---
10+
11+
Yes, you’re thinking about it in the right direction. For most real-world applications built on LLMs (or any agent framework), the *essential information* comes down to a few fixed pieces. Everything else can usually be generated or scaffolded dynamically. Let me break it down:
12+
13+
---
14+
15+
### 1. **Customized or Vertical Agent Code**
16+
17+
This is your application’s unique “glue.” It defines:
18+
19+
* The **specialized logic** for your vertical (finance, healthcare, e-commerce, etc.).
20+
* The **integration points** (APIs, databases, internal tools).
21+
* The **workflow orchestration** (how the agent reacts step by step, what functions it calls, what state it keeps).
22+
23+
This is what differentiates your app from a generic chatbot.
24+
25+
---
26+
27+
### 2. **Original Logs / Data**
28+
29+
Your application’s **real data** is gold.
30+
31+
* Transaction logs, knowledge bases, user histories, product catalogs, etc.
32+
* This is the source of truth that makes your agent contextually relevant and useful.
33+
34+
The more structured and trustworthy this data is, the stronger your application becomes.
35+
36+
---
37+
38+
### 3. **Prompt and Context**
39+
40+
This is where you tell the model:
41+
42+
* **How to think**: rules, tone, guardrails, task-specific instructions.
43+
* **What to see**: injecting relevant context (from logs, user query, memory, or retrieval).
44+
45+
Prompts are the “interface” between the raw model and your customized code/data.
46+
47+
---
48+
49+
### 4. **Everything Else Can Be Generated**
50+
51+
UI scaffolding, boilerplate templates, summaries, natural-language expansions, even parts of the integration code — these can often be generated automatically or semi-automatically. The differentiators (logic, data, prompt/context design) are the parts you can’t outsource to generation alone.
52+
53+
---
54+
55+
👉 So your summary is on point:
56+
The **essentials** are (1) your agent logic/code, (2) your real logs/data, and (3) the prompt/context shaping. The rest (like response formatting, helper text, or generic flows) can indeed be generated.
57+
58+
---
59+
60+
Would you like me to sketch a **minimal stack diagram** that shows these layers visually (essential vs. generatable)? That might make the separation clearer.

original/2025-01-11-notes-en.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,9 @@ generated: false
77
translated: false
88
---
99

10-
These 2131 notes are primarily generated by AI chatbots. I used them to summarize key points and will walk through them to enhance my understanding.
10+
These 2132 notes are primarily generated by AI chatbots. I used them to summarize key points and will walk through them to enhance my understanding.
1111

12+
* [Core Essentials of LLM Applications](/notes/2025-09-05-core-llm-essentials-en)
1213
* [AI Model Context Window Capacities](/notes/2025-09-03-ai-model-context-window-en)
1314
* [Alphabet Hits $186.66B in H1 2025](/notes/2025-09-03-alphabet-h1-2025-revenue-en)
1415
* [Building Trust Takes Time and Consistency](/notes/2025-09-03-building-trust-consistency-en)

0 commit comments

Comments
 (0)