Skip to content

Commit 3150aac

Browse files
authored
Enhance README with AI progression details and flowchart
Expanded the README with a flowchart and detailed explanations of the progression from scripting to AI agents, including machine learning and LLMs.
1 parent 68fc33c commit 3150aac

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

README.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,36 @@ Last updated: 2025-10-29
1111

1212
-----------------------------
1313

14+
> `How we move from basic coding all the way to AI agents?`
15+
16+
17+
```mermaid
18+
flowchart LR
19+
A[Scripting: Line-by-line instructions] --> B[Machine Learning: Packages + statistical foundations]
20+
B --> C[LLMs: Reasoning, understanding, human-like responses]
21+
C --> D[Agents: LLMs with ability to act]
22+
23+
%% Styling
24+
classDef step fill:#4a90e2,stroke:#333,stroke-width:2px,color:#fff,font-weight:bold;
25+
class A,B,C,D step;
26+
27+
%% Extra notes
28+
A:::step
29+
B:::step
30+
C:::step
31+
D:::step
32+
```
33+
34+
<details>
35+
<summary><b> More details about it here </b> (Click to expand)</summary>
36+
37+
> - We all `start with scripting`, no matter the language, it’s the first step. `Simple/complex instructions, written line by line`, to get something done
38+
> - Then comes `machine learning`. At this stage, we’re not reinventing the math, we’re `leveraging powerful packages built on deep statistical and mathematical foundations.` These tools let us `automate smarter processes, like reviewing claims with predictive analytics. You’re not just coding anymore; you’re building systems that learn and adapt.`
39+
> - `LLMs`. This is what most people mean when they say `AI.` Think of `yourself as the architect, and the LLM as your strategic engine. You can plug into it via an API, a key, or through integrated services. It’s not just about automation, it’s about reasoning, understanding, and generating human-like responses.`
40+
> - And finally, `agents`. These are LLMs with the `ability to act`. They don’t just respond, `they take initiative. They can create code, trigger workflows, make decisions, interact with tools, with other agents. It’s where intelligence meets execution`
41+
42+
</details>
43+
1444
> [!NOTE]
1545
> A landing zone is a general `cloud framework that sets up the core structure for all workloads`. Each use case (like an app, data pipeline, or API) then builds on top of this framework, using the `same environments (Dev → Test → UAT → Prod) and CI/CD pipelines to move code safely into production.` It’s general by design, but `applied per use case.`
1646

0 commit comments

Comments
 (0)