Skip to content

Commit d1c1719

Browse files
authored
Refactor README content for clarity and conciseness
Removed redundant explanation of landing zones and clarified the process of moving from coding to AI agents.
1 parent 4e34933 commit d1c1719

File tree

1 file changed

+32
-2
lines changed

1 file changed

+32
-2
lines changed

README.md

Lines changed: 32 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@ Last updated: 2025-09-17
1111

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

14-
> 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.`
15-
1614
> [!IMPORTANT]
1715
> This example is based on a `public network site and is intended for demonstration purposes only`. It showcases how several Azure resources can work together to achieve the desired result. Consider the section below about [Important Considerations for Production Environment](#important-considerations-for-production-environment). Please note that `these demos are intended as a guide and are based on my personal experiences. For official guidance, support, or more detailed information, please refer to Microsoft's official documentation or contact Microsoft directly`: [Microsoft Sales and Support](https://support.microsoft.com/contactus?ContactUsExperienceEntryPointAssetId=S.HP.SMC-HOME)
1816
@@ -85,6 +83,38 @@ Last updated: 2025-09-17
8583

8684
</details>
8785

86+
> `How we move from basic coding all the way to AI agents?`
87+
88+
```mermaid
89+
flowchart LR
90+
A[Scripting: Line-by-line instructions] --> B[Machine Learning: Packages + statistical foundations]
91+
B --> C[LLMs: Reasoning, understanding, human-like responses]
92+
C --> D[Agents: LLMs with ability to act]
93+
94+
%% Styling
95+
classDef step fill:#4a90e2,stroke:#333,stroke-width:2px,color:#fff,font-weight:bold;
96+
class A,B,C,D step;
97+
98+
%% Extra notes
99+
A:::step
100+
B:::step
101+
C:::step
102+
D:::step
103+
```
104+
105+
<details>
106+
<summary><b> More details about it here </b> (Click to expand)</summary>
107+
108+
> - 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
109+
> - 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.`
110+
> - `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.`
111+
> - 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`
112+
113+
</details>
114+
115+
> [!NOTE]
116+
> 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.`
117+
88118
> How to parse PDFs from an Azure Storage Account, process them using a Open Framework (needs manual configuration), and store the results in Cosmos DB for further analysis. <br/> <br/>
89119
>
90120
> 1. Upload your PDFs to an Azure Blob Storage container. <br/>

0 commit comments

Comments
 (0)