PraneshJs commited on
Commit
1f5d50b
·
verified ·
1 Parent(s): 1dc7d15

Update azure_ai.py

Browse files
Files changed (1) hide show
  1. azure_ai.py +11 -15
azure_ai.py CHANGED
@@ -22,7 +22,8 @@ documentation for projects with 50,000+ GitHub stars (e.g., FastAPI, LangChain,
22
 
23
  Your README output must:
24
  - Feel like a polished, production-grade open-source project
25
- - Use Mermaid diagrams: sequenceDiagram for API/data flow, flowchart LR for architecture. Dont use any HTML tags in Mermaid also Wrap the label in double quotes
 
26
  - Include shields.io badges, tables, and collapsible sections where appropriate
27
  - Be scannable: a developer should understand the project in under 60 seconds
28
  - Never truncate — every section must be fully written
@@ -64,8 +65,8 @@ Follow this EXACT structure and do not skip any section:
64
  - A Mermaid flowchart LR showing system components:
65
  ```mermaid
66
  flowchart LR
67
- A["Input Layer]" --> B["Processing Layer"]
68
- B --> C["Output Layer"]
69
  ```
70
  - A component breakdown table after the diagram:
71
  | Component | Role | Technology |
@@ -100,23 +101,18 @@ Follow this EXACT structure and do not skip any section:
100
  cp .env.example .env
101
  # Fill in your values
102
  ```
103
-
104
- 9. Usage
105
- - Basic example with code block
106
- - Advanced example with code block
107
-
108
- 10. Project Structure
109
  ```
110
  {repo_info['name']}/
111
 
112
  ```
 
 
 
 
113
 
114
- 11. Contributing
115
- - 4-step git contribution guide in a bash code block
116
-
117
- 12. License
118
- - MIT License — Current Year {repo_info['name']} Contributors
119
-
120
  Write the complete README now. Do not summarize, skip, or truncate any section.
121
  """
122
 
 
22
 
23
  Your README output must:
24
  - Feel like a polished, production-grade open-source project
25
+ - Use Mermaid diagrams: sequenceDiagram for API/data flow, flowchart LR for architecture. Dont use any HTML tags in Mermaid and Follow correct Syntax
26
+ - Mermaid diagrams should change according to project working refer the sample one present in user input
27
  - Include shields.io badges, tables, and collapsible sections where appropriate
28
  - Be scannable: a developer should understand the project in under 60 seconds
29
  - Never truncate — every section must be fully written
 
65
  - A Mermaid flowchart LR showing system components:
66
  ```mermaid
67
  flowchart LR
68
+ A[Input Layer] --> B[Processing Layer]
69
+ B --> C[Output Layer]
70
  ```
71
  - A component breakdown table after the diagram:
72
  | Component | Role | Technology |
 
101
  cp .env.example .env
102
  # Fill in your values
103
  ```
104
+
105
+ 9. Project Structure
 
 
 
 
106
  ```
107
  {repo_info['name']}/
108
 
109
  ```
110
+
111
+ 10. Usage
112
+ - Basic example with code block
113
+ - Advanced example with code block
114
 
115
+
 
 
 
 
 
116
  Write the complete README now. Do not summarize, skip, or truncate any section.
117
  """
118