agentic-ai-engineering-course 0.1.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (87) hide show
  1. agentic_ai_engineering_course-0.1.1/.env.example +3 -0
  2. agentic_ai_engineering_course-0.1.1/.gitignore +205 -0
  3. agentic_ai_engineering_course-0.1.1/.python-version +1 -0
  4. agentic_ai_engineering_course-0.1.1/LICENSE +196 -0
  5. agentic_ai_engineering_course-0.1.1/Makefile +11 -0
  6. agentic_ai_engineering_course-0.1.1/PKG-INFO +67 -0
  7. agentic_ai_engineering_course-0.1.1/README.md +47 -0
  8. agentic_ai_engineering_course-0.1.1/lessons/00_templates/article_guideline.md +182 -0
  9. agentic_ai_engineering_course-0.1.1/lessons/00_templates/notebook.ipynb +160 -0
  10. agentic_ai_engineering_course-0.1.1/lessons/01_ai_agents_landscape/article.md +103 -0
  11. agentic_ai_engineering_course-0.1.1/lessons/01_ai_agents_landscape/article_guideline.md +80 -0
  12. agentic_ai_engineering_course-0.1.1/lessons/01_ai_agents_landscape/research.md +3822 -0
  13. agentic_ai_engineering_course-0.1.1/lessons/02_workflows_vs_agents/article.md +286 -0
  14. agentic_ai_engineering_course-0.1.1/lessons/02_workflows_vs_agents/article.metadata.json +36 -0
  15. agentic_ai_engineering_course-0.1.1/lessons/02_workflows_vs_agents/article_guideline.md +272 -0
  16. agentic_ai_engineering_course-0.1.1/lessons/02_workflows_vs_agents/human_review.md +40 -0
  17. agentic_ai_engineering_course-0.1.1/lessons/02_workflows_vs_agents/media/autonomous_agent.webp +0 -0
  18. agentic_ai_engineering_course-0.1.1/lessons/02_workflows_vs_agents/media/the_prompt_chaining_workflow.png +0 -0
  19. agentic_ai_engineering_course-0.1.1/lessons/02_workflows_vs_agents/research.md +3950 -0
  20. agentic_ai_engineering_course-0.1.1/lessons/02_workflows_vs_agents/research.xml +3845 -0
  21. agentic_ai_engineering_course-0.1.1/lessons/03_context_engineering/article.md +400 -0
  22. agentic_ai_engineering_course-0.1.1/lessons/03_context_engineering/article.metadata.json +44 -0
  23. agentic_ai_engineering_course-0.1.1/lessons/03_context_engineering/article_guideline.md +281 -0
  24. agentic_ai_engineering_course-0.1.1/lessons/03_context_engineering/human_review.md +48 -0
  25. agentic_ai_engineering_course-0.1.1/lessons/03_context_engineering/media/context_engineering_guide_101.png +0 -0
  26. agentic_ai_engineering_course-0.1.1/lessons/03_context_engineering/media/prompt_vs_context_engineering_fine_tuning.png +0 -0
  27. agentic_ai_engineering_course-0.1.1/lessons/03_context_engineering/media/what_makes_up_the_context.png +0 -0
  28. agentic_ai_engineering_course-0.1.1/lessons/03_context_engineering/research.md +3006 -0
  29. agentic_ai_engineering_course-0.1.1/lessons/03_context_engineering/research.xml +2839 -0
  30. agentic_ai_engineering_course-0.1.1/lessons/04_structured_outputs/article.md +438 -0
  31. agentic_ai_engineering_course-0.1.1/lessons/04_structured_outputs/article.metadata.json +36 -0
  32. agentic_ai_engineering_course-0.1.1/lessons/04_structured_outputs/article_guideline.md +222 -0
  33. agentic_ai_engineering_course-0.1.1/lessons/04_structured_outputs/human_review.md +55 -0
  34. agentic_ai_engineering_course-0.1.1/lessons/04_structured_outputs/notebook.ipynb +633 -0
  35. agentic_ai_engineering_course-0.1.1/lessons/04_structured_outputs/research.md +5547 -0
  36. agentic_ai_engineering_course-0.1.1/lessons/04_structured_outputs/research.xml +5143 -0
  37. agentic_ai_engineering_course-0.1.1/lessons/05_workflow_patterns/article.md +672 -0
  38. agentic_ai_engineering_course-0.1.1/lessons/05_workflow_patterns/article.metadata.json +48 -0
  39. agentic_ai_engineering_course-0.1.1/lessons/05_workflow_patterns/article_guideline.md +242 -0
  40. agentic_ai_engineering_course-0.1.1/lessons/05_workflow_patterns/human_review.md +34 -0
  41. agentic_ai_engineering_course-0.1.1/lessons/05_workflow_patterns/notebook.ipynb +1841 -0
  42. agentic_ai_engineering_course-0.1.1/lessons/05_workflow_patterns/research.md +4821 -0
  43. agentic_ai_engineering_course-0.1.1/lessons/06_tools/article.md +874 -0
  44. agentic_ai_engineering_course-0.1.1/lessons/06_tools/article.metadata.json +48 -0
  45. agentic_ai_engineering_course-0.1.1/lessons/06_tools/article_guideline.md +350 -0
  46. agentic_ai_engineering_course-0.1.1/lessons/06_tools/human_review.md +70 -0
  47. agentic_ai_engineering_course-0.1.1/lessons/06_tools/notebook.ipynb +1955 -0
  48. agentic_ai_engineering_course-0.1.1/lessons/06_tools/research.md +8329 -0
  49. agentic_ai_engineering_course-0.1.1/lessons/06_tools/research.xml +7961 -0
  50. agentic_ai_engineering_course-0.1.1/lessons/07_reasoning_planning/article.md +217 -0
  51. agentic_ai_engineering_course-0.1.1/lessons/07_reasoning_planning/article_guideline.md +282 -0
  52. agentic_ai_engineering_course-0.1.1/lessons/07_reasoning_planning/human_review.md +41 -0
  53. agentic_ai_engineering_course-0.1.1/lessons/07_reasoning_planning/research.md +2275 -0
  54. agentic_ai_engineering_course-0.1.1/lessons/08_react_practice/article.md +581 -0
  55. agentic_ai_engineering_course-0.1.1/lessons/08_react_practice/article.metadata.json +44 -0
  56. agentic_ai_engineering_course-0.1.1/lessons/08_react_practice/article_guideline.md +267 -0
  57. agentic_ai_engineering_course-0.1.1/lessons/08_react_practice/human_review.md +42 -0
  58. agentic_ai_engineering_course-0.1.1/lessons/08_react_practice/notebook.ipynb +1177 -0
  59. agentic_ai_engineering_course-0.1.1/lessons/08_react_practice/research.md +5404 -0
  60. agentic_ai_engineering_course-0.1.1/lessons/09_memory_knowledge_access/article.md +177 -0
  61. agentic_ai_engineering_course-0.1.1/lessons/09_memory_knowledge_access/article.metadata.json +31 -0
  62. agentic_ai_engineering_course-0.1.1/lessons/09_memory_knowledge_access/article_guideline.md +99 -0
  63. agentic_ai_engineering_course-0.1.1/lessons/09_memory_knowledge_access/research.md +8061 -0
  64. agentic_ai_engineering_course-0.1.1/lessons/10_RAG_Focus/article.md +209 -0
  65. agentic_ai_engineering_course-0.1.1/lessons/10_RAG_Focus/article.metadata.json +31 -0
  66. agentic_ai_engineering_course-0.1.1/lessons/10_RAG_Focus/article_guideline.md +97 -0
  67. agentic_ai_engineering_course-0.1.1/lessons/10_RAG_Focus/research.md +3642 -0
  68. agentic_ai_engineering_course-0.1.1/lessons/11_multimodal/article.md +815 -0
  69. agentic_ai_engineering_course-0.1.1/lessons/11_multimodal/article.metadata.json +44 -0
  70. agentic_ai_engineering_course-0.1.1/lessons/11_multimodal/article_guideline.md +432 -0
  71. agentic_ai_engineering_course-0.1.1/lessons/11_multimodal/human_review.md +105 -0
  72. agentic_ai_engineering_course-0.1.1/lessons/11_multimodal/images/attention_is_all_you_need_0.jpeg +0 -0
  73. agentic_ai_engineering_course-0.1.1/lessons/11_multimodal/images/attention_is_all_you_need_1.jpeg +0 -0
  74. agentic_ai_engineering_course-0.1.1/lessons/11_multimodal/images/attention_is_all_you_need_2.jpeg +0 -0
  75. agentic_ai_engineering_course-0.1.1/lessons/11_multimodal/images/image_1.jpeg +0 -0
  76. agentic_ai_engineering_course-0.1.1/lessons/11_multimodal/images/image_2.jpeg +0 -0
  77. agentic_ai_engineering_course-0.1.1/lessons/11_multimodal/images/image_3.jpeg +0 -0
  78. agentic_ai_engineering_course-0.1.1/lessons/11_multimodal/images/image_4.jpeg +0 -0
  79. agentic_ai_engineering_course-0.1.1/lessons/11_multimodal/notebook.ipynb +2015 -0
  80. agentic_ai_engineering_course-0.1.1/lessons/11_multimodal/pdfs/attention_is_all_you_need_paper.pdf +0 -0
  81. agentic_ai_engineering_course-0.1.1/lessons/11_multimodal/research.md +7768 -0
  82. agentic_ai_engineering_course-0.1.1/lessons/11_multimodal/research.xml +7455 -0
  83. agentic_ai_engineering_course-0.1.1/lessons/utils/__init__.py +12 -0
  84. agentic_ai_engineering_course-0.1.1/lessons/utils/env.py +29 -0
  85. agentic_ai_engineering_course-0.1.1/lessons/utils/pretty_print.py +74 -0
  86. agentic_ai_engineering_course-0.1.1/pyproject.toml +50 -0
  87. agentic_ai_engineering_course-0.1.1/uv.lock +27 -0
@@ -0,0 +1,3 @@
1
+ # --- Gemini ---
2
+
3
+ GOOGLE_API_KEY=...
@@ -0,0 +1,205 @@
1
+ # Byte-compiled / optimized / DLL files
2
+ __pycache__/
3
+ *.py[cod]
4
+ *$py.class
5
+
6
+ # C extensions
7
+ *.so
8
+
9
+ # Distribution / packaging
10
+ .Python
11
+ build/
12
+ develop-eggs/
13
+ dist/
14
+ downloads/
15
+ eggs/
16
+ .eggs/
17
+ lib/
18
+ lib64/
19
+ parts/
20
+ sdist/
21
+ var/
22
+ wheels/
23
+ share/python-wheels/
24
+ *.egg-info/
25
+ .installed.cfg
26
+ *.egg
27
+ MANIFEST
28
+
29
+ # PyInstaller
30
+ # Usually these files are written by a python script from a template
31
+ # before PyInstaller builds the exe, so as to inject date/other infos into it.
32
+ *.manifest
33
+ *.spec
34
+
35
+ # Installer logs
36
+ pip-log.txt
37
+ pip-delete-this-directory.txt
38
+
39
+ # Unit test / coverage reports
40
+ htmlcov/
41
+ .tox/
42
+ .nox/
43
+ .coverage
44
+ .coverage.*
45
+ .cache
46
+ nosetests.xml
47
+ coverage.xml
48
+ *.cover
49
+ *.py,cover
50
+ .hypothesis/
51
+ .pytest_cache/
52
+ cover/
53
+
54
+ # Translations
55
+ *.mo
56
+ *.pot
57
+
58
+ # Django stuff:
59
+ *.log
60
+ local_settings.py
61
+ db.sqlite3
62
+ db.sqlite3-journal
63
+
64
+ # Flask stuff:
65
+ instance/
66
+ .webassets-cache
67
+
68
+ # Scrapy stuff:
69
+ .scrapy
70
+
71
+ # Sphinx documentation
72
+ docs/_build/
73
+
74
+ # PyBuilder
75
+ .pybuilder/
76
+ target/
77
+
78
+ # Jupyter Notebook
79
+ .ipynb_checkpoints
80
+
81
+ # IPython
82
+ profile_default/
83
+ ipython_config.py
84
+
85
+ # pyenv
86
+ # For a library or package, you might want to ignore these files since the code is
87
+ # intended to run in multiple environments; otherwise, check them in:
88
+ # .python-version
89
+
90
+ # pipenv
91
+ # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
92
+ # However, in case of collaboration, if having platform-specific dependencies or dependencies
93
+ # having no cross-platform support, pipenv may install dependencies that don't work, or not
94
+ # install all needed dependencies.
95
+ #Pipfile.lock
96
+
97
+ # UV
98
+ # Similar to Pipfile.lock, it is generally recommended to include uv.lock in version control.
99
+ # This is especially recommended for binary packages to ensure reproducibility, and is more
100
+ # commonly ignored for libraries.
101
+ #uv.lock
102
+
103
+ # poetry
104
+ # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
105
+ # This is especially recommended for binary packages to ensure reproducibility, and is more
106
+ # commonly ignored for libraries.
107
+ # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
108
+ #poetry.lock
109
+
110
+ # pdm
111
+ # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
112
+ #pdm.lock
113
+ # pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
114
+ # in version control.
115
+ # https://pdm.fming.dev/latest/usage/project/#working-with-version-control
116
+ .pdm.toml
117
+ .pdm-python
118
+ .pdm-build/
119
+
120
+ # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
121
+ __pypackages__/
122
+
123
+ # Celery stuff
124
+ celerybeat-schedule
125
+ celerybeat.pid
126
+
127
+ # SageMath parsed files
128
+ *.sage.py
129
+
130
+ # Environments
131
+ .env
132
+ .venv
133
+ env/
134
+ venv/
135
+ ENV/
136
+ env.bak/
137
+ venv.bak/
138
+
139
+ # Spyder project settings
140
+ .spyderproject
141
+ .spyproject
142
+
143
+ # Rope project settings
144
+ .ropeproject
145
+
146
+ # mkdocs documentation
147
+ /site
148
+
149
+ # mypy
150
+ .mypy_cache/
151
+ .dmypy.json
152
+ dmypy.json
153
+
154
+ # Pyre type checker
155
+ .pyre/
156
+
157
+ # pytype static type analyzer
158
+ .pytype/
159
+
160
+ # Cython debug symbols
161
+ cython_debug/
162
+
163
+ # PyCharm
164
+ # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
165
+ # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
166
+ # and can be added to the global gitignore or merged into this file. For a more nuclear
167
+ # option (not recommended) you can uncomment the following to ignore the entire idea folder.
168
+ #.idea/
169
+
170
+ # VSCode / Cursor
171
+ .vscode/
172
+
173
+ # Obsidian
174
+ .obsidian/
175
+
176
+ # Ruff stuff:
177
+ .ruff_cache/
178
+
179
+ # PyPI configuration file
180
+ .pypirc
181
+
182
+ # MacOS
183
+ .DS_Store
184
+
185
+ # Brown Agent
186
+ .brown
187
+ .debug/
188
+ agent_graph.png
189
+ article_outline.md
190
+ article_stage_1.md
191
+ article_stage_1.metadata.json
192
+ article_stage_2.md
193
+ article_stage_2.metadata.json
194
+ article_stage_3.md
195
+ article_stage_3.metadata.json
196
+ reflection_scores.md
197
+ sources.md
198
+ style_guideline.md
199
+ article_error*
200
+ offline_ranked_human_review.md
201
+ checkpoints/
202
+
203
+ # Nova Agent
204
+ .nova
205
+ .research
@@ -0,0 +1 @@
1
+ 3.13.0
@@ -0,0 +1,196 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity granting the License.
13
+
14
+ "Legal Entity" shall mean the union of the acting entity and all
15
+ other entities that control, are controlled by, or are under common
16
+ control with that entity. For the purposes of this definition,
17
+ "control" means (i) the power, direct or indirect, to cause the
18
+ direction or management of such entity, whether by contract or
19
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
20
+ outstanding shares, or (iii) beneficial ownership of such entity.
21
+
22
+ "You" (or "Your") shall mean an individual or Legal Entity
23
+ exercising permissions granted by this License.
24
+
25
+ "Source" form shall mean the preferred form for making modifications,
26
+ including but not limited to software source code, documentation
27
+ source, and configuration files.
28
+
29
+ "Object" form shall mean any form resulting from mechanical
30
+ transformation or translation of a Source form, including but
31
+ not limited to compiled object code, generated documentation,
32
+ and conversions to other media types.
33
+
34
+ "Work" shall mean the work of authorship, whether in Source or
35
+ Object form, made available under the License, as indicated by a
36
+ copyright notice that is included in or attached to the work
37
+ (which shall not include communications that are clearly marked or
38
+ otherwise designated in writing by the copyright owner as "Not a Contribution").
39
+
40
+ "Contribution" shall mean any work of authorship, including
41
+ the original version of the Work and any modifications or additions
42
+ to that Work or Derivative Works thereof, that is intentionally
43
+ submitted to Licensor for inclusion in the Work by the copyright owner
44
+ or by an individual or Legal Entity authorized to submit on behalf of
45
+ the copyright owner. For the purposes of this definition, "submitted"
46
+ means any form of electronic, verbal, or written communication sent
47
+ to the Licensor or its representatives, including but not limited to
48
+ communication on electronic mailing lists, source code control systems,
49
+ and issue tracking systems that are managed by, or on behalf of, the
50
+ Licensor for the purpose of discussing and improving the Work, but
51
+ excluding communication that is conspicuously marked or otherwise
52
+ designated in writing by the copyright owner as "Not a Contribution."
53
+
54
+ "Contributor" shall mean Licensor and any individual or Legal Entity
55
+ on behalf of whom a Contribution has been received by Licensor and
56
+ subsequently incorporated within the Work.
57
+
58
+ 2. Grant of Copyright License. Subject to the terms and conditions of
59
+ this License, each Contributor hereby grants to You a perpetual,
60
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
61
+ copyright license to use, reproduce, modify, merge, publish,
62
+ distribute, sublicense, and/or sell copies of the Work, and to
63
+ permit persons to whom the Work is furnished to do so, subject to
64
+ the following conditions:
65
+
66
+ The above copyright notice and this permission notice shall be
67
+ included in all copies or substantial portions of the Work.
68
+
69
+ 3. Grant of Patent License. Subject to the terms and conditions of
70
+ this License, each Contributor hereby grants to You a perpetual,
71
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
72
+ (except as stated in this section) patent license to make, have made,
73
+ use, offer to sell, sell, import, and otherwise transfer the Work,
74
+ where such license applies only to those patent claims licensable
75
+ by such Contributor that are necessarily infringed by their
76
+ Contribution(s) alone or by combination of their Contribution(s)
77
+ with the Work to which such Contribution(s) was submitted. If You
78
+ institute patent litigation against any entity (including a
79
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
80
+ or a Contribution incorporated within the Work constitutes direct
81
+ or contributory patent infringement, then any patent licenses
82
+ granted to You under this License for that Work shall terminate
83
+ as of the date such litigation is filed.
84
+
85
+ 4. Redistribution. You may reproduce and distribute copies of the
86
+ Work or Derivative Works thereof in any medium, with or without
87
+ modifications, and in Source or Object form, provided that You
88
+ meet the following conditions:
89
+
90
+ (a) You must give any other recipients of the Work or
91
+ Derivative Works a copy of this License; and
92
+
93
+ (b) You must cause any modified files to carry prominent notices
94
+ stating that You changed the files; and
95
+
96
+ (c) You must retain, in the Source form of any Derivative Works
97
+ that You distribute, all copyright, trademark, patent,
98
+ and attribution notices from the Source form of the Work,
99
+ excluding those notices that do not pertain to any part of
100
+ the Derivative Works; and
101
+
102
+ (d) If the Work includes a "NOTICE" file as part of its
103
+ distribution, then any Derivative Works that You distribute must
104
+ include a readable copy of the attribution notices contained
105
+ within such NOTICE file, excluding those notices that do not
106
+ pertain to any part of the Derivative Works, in at least one
107
+ of the following places: within a NOTICE file distributed
108
+ as part of the Derivative Works; within the Source form or
109
+ documentation, if provided along with the Derivative Works; or,
110
+ within a display generated by the Derivative Works, if and
111
+ wherever such third-party notices normally appear. The contents
112
+ of the NOTICE file are for informational purposes only and
113
+ do not modify the License. You may add Your own attribution
114
+ notices within Derivative Works that You distribute, alongside
115
+ or as an addendum to the NOTICE text from the Work, provided
116
+ that such additional attribution notices cannot be construed
117
+ as modifying the License.
118
+
119
+ You may add Your own copyright notice to Your modifications and
120
+ may provide additional or different license terms and conditions
121
+ for use, reproduction, or distribution of Your modifications, or
122
+ for any such Derivative Works as a whole, provided Your use,
123
+ reproduction, and distribution of the Work otherwise complies with
124
+ the conditions stated in this License.
125
+
126
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
127
+ any Contribution intentionally submitted for inclusion in the Work
128
+ by You to the Licensor shall be under the terms and conditions of
129
+ this License, without any additional terms or conditions.
130
+ Notwithstanding the above, nothing herein shall supersede or modify
131
+ the terms of any separate license agreement you may have executed
132
+ with Licensor regarding such Contributions.
133
+
134
+ 6. Trademarks. This License does not grant permission to use the trade
135
+ names, trademarks, service marks, or product names of the Licensor,
136
+ except as required for reasonable and customary use in describing the
137
+ origin of the Work and reproducing the content of the NOTICE file.
138
+
139
+ 7. Disclaimer of Warranty. Unless required by applicable law or
140
+ agreed to in writing, Licensor provides the Work (and each
141
+ Contributor provides its Contributions) on an "AS IS" BASIS,
142
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
143
+ implied, including, without limitation, any warranties or conditions
144
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
145
+ PARTICULAR PURPOSE. You are solely responsible for determining the
146
+ appropriateness of using or redistributing the Work and assume any
147
+ risks associated with Your exercise of permissions under this License.
148
+
149
+ 8. Limitation of Liability. In no event and under no legal theory,
150
+ whether in tort (including negligence), contract, or otherwise,
151
+ unless required by applicable law (such as deliberate and grossly
152
+ negligent acts) or agreed to in writing, shall any Contributor be
153
+ liable to You for damages, including any direct, indirect, special,
154
+ incidental, or consequential damages of any character arising as a
155
+ result of this License or out of the use or inability to use the
156
+ Work (including but not limited to damages for loss of goodwill,
157
+ work stoppage, computer failure or malfunction, or any and all
158
+ other commercial damages or losses), even if such Contributor
159
+ has been advised of the possibility of such damages.
160
+
161
+ 9. Accepting Warranty or Additional Support. You may choose to offer,
162
+ and to charge a fee for, warranty, support, indemnity or other
163
+ liability obligations and/or rights consistent with this License.
164
+ However, in accepting such obligations, You may act only on Your
165
+ own behalf and on Your sole responsibility, not on behalf of any
166
+ other Contributor, and only if You agree to indemnify, defend,
167
+ and hold each Contributor harmless for any liability incurred by,
168
+ or claims asserted against, such Contributor by reason of your
169
+ accepting any such warranty or additional support.
170
+
171
+ END OF TERMS AND CONDITIONS
172
+
173
+ APPENDIX: How to apply the Apache License to your work.
174
+
175
+ To apply the Apache License to your work, attach the following
176
+ boilerplate notice, with the fields enclosed by brackets "[]"
177
+ replaced with your own identifying information. (Don't include
178
+ the brackets!) The text should be enclosed in the appropriate
179
+ comment syntax for the file format. We also recommend that a
180
+ file or class name and description of purpose be included on the
181
+ same page as the copyright notice for easier identification within
182
+ third-party archives.
183
+
184
+ Copyright 2024 Agentic AI Engineering Course
185
+
186
+ Licensed under the Apache License, Version 2.0 (the "License");
187
+ you may not use this file except in compliance with the License.
188
+ You may obtain a copy of the License at
189
+
190
+ http://www.apache.org/licenses/LICENSE-2.0
191
+
192
+ Unless required by applicable law or agreed to in writing, software
193
+ distributed under the License is distributed on an "AS IS" BASIS,
194
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
195
+ See the License for the specific language governing permissions and
196
+ limitations under the License.
@@ -0,0 +1,11 @@
1
+ build:
2
+ uv version --bump patch # or minor/major
3
+ uv build
4
+
5
+ publish:
6
+ uv publish
7
+
8
+ clean:
9
+ rm -rf dist
10
+ rm -rf build
11
+ rm -rf *.egg-info
@@ -0,0 +1,67 @@
1
+ Metadata-Version: 2.4
2
+ Name: agentic-ai-engineering-course
3
+ Version: 0.1.1
4
+ Summary: Python modules for the Agentic AI Engineering course.
5
+ Project-URL: Homepage, https://github.com/towardsai/agentic-ai-engineering-course
6
+ Project-URL: Repository, https://github.com/towardsai/agentic-ai-engineering-course
7
+ Project-URL: Issues, https://github.com/towardsai/agentic-ai-engineering-course/issues
8
+ Author-email: Paul Iusztin <p.b.iusztin@gmail.com>, Fabio chiusano <chiusanofabio94@gmail.com>, Omar solano <omarsolano27@gmail.com>
9
+ License: Apache-2.0
10
+ License-File: LICENSE
11
+ Keywords: agents,ai,course,utilities
12
+ Classifier: Development Status :: 3 - Alpha
13
+ Classifier: Intended Audience :: Developers
14
+ Classifier: License :: OSI Approved :: Apache Software License
15
+ Classifier: Programming Language :: Python :: 3
16
+ Classifier: Programming Language :: Python :: 3.13
17
+ Requires-Python: >=3.13
18
+ Requires-Dist: python-dotenv>=1.1.0
19
+ Description-Content-Type: text/markdown
20
+
21
+ # Course AI Agents Utils
22
+
23
+ A collection of utility functions for AI agents development, extracted from the AI Agents course by Towards AI and Decoding ML.
24
+
25
+ ## Installation
26
+
27
+ ```bash
28
+ pip install course-ai-agents-utils
29
+ ```
30
+
31
+ ## Usage
32
+
33
+ ### Environment Utilities
34
+
35
+ ```python
36
+ from lessons.utils import load
37
+
38
+ # Load environment variables from .env file
39
+ load()
40
+
41
+ # Load with custom path and required variables
42
+ load(dotenv_path="path/to/.env", required_env_vars=["API_KEY", "SECRET"])
43
+ ```
44
+
45
+ ### Pretty Print Utilities
46
+
47
+ ```python
48
+ from lessons.utils import wrapped, function_call, Color
49
+
50
+ # Pretty print text with custom formatting
51
+ wrapped("Hello World", title="My Message", header_color=Color.BLUE)
52
+
53
+ # Pretty print function calls
54
+ function_call(
55
+ function_call=my_function_call,
56
+ title="Function Execution",
57
+ header_color=Color.GREEN
58
+ )
59
+ ```
60
+
61
+ ## Development
62
+
63
+ This package is part of the AI Agents course materials. For the full course experience, visit the main repository.
64
+
65
+ ## License
66
+
67
+ Apache License 2.0 - see LICENSE file for details.
@@ -0,0 +1,47 @@
1
+ # Course AI Agents Utils
2
+
3
+ A collection of utility functions for AI agents development, extracted from the AI Agents course by Towards AI and Decoding ML.
4
+
5
+ ## Installation
6
+
7
+ ```bash
8
+ pip install course-ai-agents-utils
9
+ ```
10
+
11
+ ## Usage
12
+
13
+ ### Environment Utilities
14
+
15
+ ```python
16
+ from lessons.utils import load
17
+
18
+ # Load environment variables from .env file
19
+ load()
20
+
21
+ # Load with custom path and required variables
22
+ load(dotenv_path="path/to/.env", required_env_vars=["API_KEY", "SECRET"])
23
+ ```
24
+
25
+ ### Pretty Print Utilities
26
+
27
+ ```python
28
+ from lessons.utils import wrapped, function_call, Color
29
+
30
+ # Pretty print text with custom formatting
31
+ wrapped("Hello World", title="My Message", header_color=Color.BLUE)
32
+
33
+ # Pretty print function calls
34
+ function_call(
35
+ function_call=my_function_call,
36
+ title="Function Execution",
37
+ header_color=Color.GREEN
38
+ )
39
+ ```
40
+
41
+ ## Development
42
+
43
+ This package is part of the AI Agents course materials. For the full course experience, visit the main repository.
44
+
45
+ ## License
46
+
47
+ Apache License 2.0 - see LICENSE file for details.