ai-data-science-team 0.0.0.9006__tar.gz → 0.0.0.9008__tar.gz

Sign up to get free protection for your applications and to get access to all the features.
Files changed (42) hide show
  1. ai_data_science_team-0.0.0.9008/MANIFEST.in +1 -0
  2. ai_data_science_team-0.0.0.9008/PKG-INFO +231 -0
  3. ai_data_science_team-0.0.0.9008/README.md +193 -0
  4. ai_data_science_team-0.0.0.9008/ai_data_science_team/_version.py +1 -0
  5. ai_data_science_team-0.0.0.9008/ai_data_science_team/agents/__init__.py +6 -0
  6. ai_data_science_team-0.0.0.9008/ai_data_science_team/agents/data_cleaning_agent.py +681 -0
  7. ai_data_science_team-0.0.0.9008/ai_data_science_team/agents/data_visualization_agent.py +764 -0
  8. ai_data_science_team-0.0.0.9008/ai_data_science_team/agents/data_wrangling_agent.py +846 -0
  9. ai_data_science_team-0.0.0.9008/ai_data_science_team/agents/feature_engineering_agent.py +809 -0
  10. ai_data_science_team-0.0.0.9008/ai_data_science_team/agents/sql_database_agent.py +743 -0
  11. ai_data_science_team-0.0.0.9008/ai_data_science_team/multiagents/__init__.py +1 -0
  12. ai_data_science_team-0.0.0.9008/ai_data_science_team/multiagents/sql_data_analyst.py +286 -0
  13. ai_data_science_team-0.0.0.9008/ai_data_science_team/multiagents/supervised_data_analyst.py +2 -0
  14. ai_data_science_team-0.0.0.9008/ai_data_science_team/templates/__init__.py +9 -0
  15. {ai_data_science_team-0.0.0.9006 → ai_data_science_team-0.0.0.9008}/ai_data_science_team/templates/agent_templates.py +247 -42
  16. {ai_data_science_team-0.0.0.9006 → ai_data_science_team-0.0.0.9008}/ai_data_science_team/tools/metadata.py +110 -47
  17. {ai_data_science_team-0.0.0.9006 → ai_data_science_team-0.0.0.9008}/ai_data_science_team/tools/regex.py +33 -0
  18. ai_data_science_team-0.0.0.9008/ai_data_science_team/utils/plotly.py +24 -0
  19. ai_data_science_team-0.0.0.9008/ai_data_science_team.egg-info/PKG-INFO +231 -0
  20. {ai_data_science_team-0.0.0.9006 → ai_data_science_team-0.0.0.9008}/ai_data_science_team.egg-info/SOURCES.txt +9 -1
  21. ai_data_science_team-0.0.0.9008/requirements.txt +13 -0
  22. {ai_data_science_team-0.0.0.9006 → ai_data_science_team-0.0.0.9008}/setup.py +11 -17
  23. ai_data_science_team-0.0.0.9006/PKG-INFO +0 -165
  24. ai_data_science_team-0.0.0.9006/README.md +0 -141
  25. ai_data_science_team-0.0.0.9006/ai_data_science_team/_version.py +0 -1
  26. ai_data_science_team-0.0.0.9006/ai_data_science_team/agents/__init__.py +0 -5
  27. ai_data_science_team-0.0.0.9006/ai_data_science_team/agents/data_cleaning_agent.py +0 -355
  28. ai_data_science_team-0.0.0.9006/ai_data_science_team/agents/data_wrangling_agent.py +0 -362
  29. ai_data_science_team-0.0.0.9006/ai_data_science_team/agents/feature_engineering_agent.py +0 -376
  30. ai_data_science_team-0.0.0.9006/ai_data_science_team/agents/sql_database_agent.py +0 -379
  31. ai_data_science_team-0.0.0.9006/ai_data_science_team.egg-info/PKG-INFO +0 -165
  32. {ai_data_science_team-0.0.0.9006 → ai_data_science_team-0.0.0.9008}/LICENSE +0 -0
  33. {ai_data_science_team-0.0.0.9006 → ai_data_science_team-0.0.0.9008}/ai_data_science_team/__init__.py +0 -0
  34. {ai_data_science_team-0.0.0.9006 → ai_data_science_team-0.0.0.9008}/ai_data_science_team/orchestration.py +0 -0
  35. {ai_data_science_team-0.0.0.9006/ai_data_science_team/templates → ai_data_science_team-0.0.0.9008/ai_data_science_team/tools}/__init__.py +0 -0
  36. {ai_data_science_team-0.0.0.9006 → ai_data_science_team-0.0.0.9008}/ai_data_science_team/tools/logging.py +0 -0
  37. {ai_data_science_team-0.0.0.9006 → ai_data_science_team-0.0.0.9008}/ai_data_science_team/tools/parsers.py +0 -0
  38. {ai_data_science_team-0.0.0.9006/ai_data_science_team/tools → ai_data_science_team-0.0.0.9008/ai_data_science_team/utils}/__init__.py +0 -0
  39. {ai_data_science_team-0.0.0.9006 → ai_data_science_team-0.0.0.9008}/ai_data_science_team.egg-info/dependency_links.txt +0 -0
  40. {ai_data_science_team-0.0.0.9006 → ai_data_science_team-0.0.0.9008}/ai_data_science_team.egg-info/requires.txt +0 -0
  41. {ai_data_science_team-0.0.0.9006 → ai_data_science_team-0.0.0.9008}/ai_data_science_team.egg-info/top_level.txt +0 -0
  42. {ai_data_science_team-0.0.0.9006 → ai_data_science_team-0.0.0.9008}/setup.cfg +0 -0
@@ -0,0 +1 @@
1
+ include requirements.txt
@@ -0,0 +1,231 @@
1
+ Metadata-Version: 2.2
2
+ Name: ai-data-science-team
3
+ Version: 0.0.0.9008
4
+ Summary: Build and run an AI-powered data science team.
5
+ Home-page: https://github.com/business-science/ai-data-science-team
6
+ Author: Matt Dancho
7
+ Author-email: mdancho@business-science.io
8
+ Classifier: Programming Language :: Python :: 3
9
+ Classifier: Programming Language :: Python :: 3.9
10
+ Classifier: Programming Language :: Python :: 3.10
11
+ Classifier: Programming Language :: Python :: 3.11
12
+ Classifier: Programming Language :: Python :: 3.12
13
+ Requires-Python: >=3.9
14
+ Description-Content-Type: text/markdown
15
+ License-File: LICENSE
16
+ Requires-Dist: openpyxl
17
+ Requires-Dist: langchain
18
+ Requires-Dist: langchain_community
19
+ Requires-Dist: langchain_openai
20
+ Requires-Dist: langchain_experimental
21
+ Requires-Dist: langgraph>=0.2.57
22
+ Requires-Dist: openai
23
+ Requires-Dist: pandas
24
+ Requires-Dist: numpy
25
+ Requires-Dist: plotly
26
+ Requires-Dist: streamlit
27
+ Requires-Dist: scikit-learn
28
+ Requires-Dist: xgboost
29
+ Dynamic: author
30
+ Dynamic: author-email
31
+ Dynamic: classifier
32
+ Dynamic: description
33
+ Dynamic: description-content-type
34
+ Dynamic: home-page
35
+ Dynamic: requires-dist
36
+ Dynamic: requires-python
37
+ Dynamic: summary
38
+
39
+ <div align="center">
40
+ <a href="https://github.com/business-science/ai-data-science-team">
41
+ <picture>
42
+ <img src="/img/ai_data_science_team_logo.jpg" alt="AI Data Science Team" width="400">
43
+ </picture>
44
+ </a>
45
+ </div>
46
+ <div align="center">
47
+ <em>An AI-powered data science team of agents to help you perform common data science tasks 10X faster</em>
48
+ </div>
49
+ <div align="center">
50
+ <a href="https://pypi.python.org/pypi/ai-data-science-team"><img src="https://img.shields.io/pypi/v/ai-data-science-team.svg" alt="PyPI"></a>
51
+ <a href="https://github.com/business-science/ai-data-science-team"><img src="https://img.shields.io/pypi/pyversions/ai-data-science-team.svg" alt="versions"></a>
52
+ <a href="https://github.com/business-science/ai-data-science-team/blob/main/LICENSE"><img src="https://img.shields.io/github/license/business-science/ai-data-science-team.svg?v" alt="license"></a>
53
+ </div>
54
+
55
+
56
+ # Your AI Data Science Team (An Army Of Agents)
57
+
58
+ **An AI-powered data science team of agents to help you perform common data science tasks 10X faster**.
59
+
60
+ [**Please ⭐ us on GitHub (it takes 2 seconds and means a lot).**](https://github.com/business-science/ai-data-science-team)
61
+
62
+ *Beta - This Python library is under active development. There may be breaking changes that occur until release of 0.1.0.*
63
+
64
+ ---
65
+
66
+ The AI Data Science Team of Copilots includes Agents that specialize data cleaning, preparation, feature engineering, modeling (machine learning), and interpretation of various business problems like:
67
+
68
+ - Churn Modeling
69
+ - Employee Attrition
70
+ - Lead Scoring
71
+ - Insurance Risk
72
+ - Credit Card Risk
73
+ - And more
74
+
75
+ ## Table of Contents
76
+
77
+ - [Your AI Data Science Team (An Army Of Agents)](#your-ai-data-science-team-an-army-of-agents)
78
+ - [Table of Contents](#table-of-contents)
79
+ - [Companies That Want A Custom AI Data Science Team (And AI Apps)](#companies-that-want-a-custom-ai-data-science-team-and-ai-apps)
80
+ - [Free How To Build AI Agents for Data Scientists Workshop](#free-how-to-build-ai-agents-for-data-scientists-workshop)
81
+ - [Data Science Agents](#data-science-agents)
82
+ - [Coming Soon: Multi-Agents](#coming-soon-multi-agents)
83
+ - [...And after that, the Multi-Agent Data Science Apps](#and-after-that-the-multi-agent-data-science-apps)
84
+ - [Agents Available Now](#agents-available-now)
85
+ - [Agents Coming Soon](#agents-coming-soon)
86
+ - [Disclaimer](#disclaimer)
87
+ - [Installation](#installation)
88
+ - [Usage](#usage)
89
+ - [Example 1: Feature Engineering with the Feature Engineering Agent](#example-1-feature-engineering-with-the-feature-engineering-agent)
90
+ - [Example 2: Cleaning Data with the Data Cleaning Agent](#example-2-cleaning-data-with-the-data-cleaning-agent)
91
+ - [Contributing](#contributing)
92
+ - [License](#license)
93
+ - [Want To Become A Full-Stack Generative AI Data Scientist?](#want-to-become-a-full-stack-generative-ai-data-scientist)
94
+
95
+ ## Companies That Want A Custom AI Data Science Team (And AI Apps)
96
+
97
+ Want to have your own _customized_ enterprise-grade AI Data Science Team and domain-specifici AI-powered Apps?
98
+
99
+ **Send inquiries here:** [https://www.business-science.io/contact.html](https://www.business-science.io/contact.html)
100
+
101
+ ## Free How To Build AI Agents for Data Scientists Workshop
102
+
103
+ If you're an aspiring data scientist who wants to learn how to build AI Agents and AI Apps for your company that performs Data Science, Business Intelligence, Churn Modeling, Time Series Forecasting, and more, then I'd love to help you.
104
+
105
+ [**Register for my next Generative AI for Data Scientists workshop here.**](https://learn.business-science.io/ai-register)
106
+
107
+ ## Data Science Agents
108
+
109
+ This project is a work in progress. New data science agents will be released soon.
110
+
111
+ ![Data Science Team](/img/ai_data_science_team.jpg)
112
+
113
+ ### Coming Soon: Multi-Agents
114
+
115
+ This is the internals of the Business Intelligence SQL Agent I'm working on:
116
+
117
+ ![Business Intelligence SQL Agent](/img/multi_agent_sql_data_visualization.jpg)
118
+
119
+ ### ...And after that, the Multi-Agent Data Science Apps
120
+
121
+ This is a top secret project I'm working on. It's a multi-agent data science app that performs time series forecasting.
122
+
123
+ ![Multi-Agent Data Science App](/img/ai_powered_apps.jpg)
124
+
125
+ ### Agents Available Now
126
+
127
+ 1. **Data Wrangling Agent:** Merges, Joins, Preps and Wrangles data into a format that is ready for data analysis.
128
+ 2. **Data Visualization Agent:** Creates visualizations to help you understand your data. Returns JSON serializable plotly visualizations.
129
+ 3. **Data Cleaning Agent:** Performs Data Preparation steps including handling missing values, outliers, and data type conversions.
130
+ 4. **Feature Engineering Agent:** Converts the prepared data into ML-ready data. Adds features to increase predictive accuracy of ML models.
131
+ 5. **SQL Database Agent:** Connects to SQL databases to pull data into the data science environment. Creates pipelines to automate data extraction. Performs Joins, Aggregations, and other SQL Query operations.
132
+
133
+ ### Agents Coming Soon
134
+
135
+ 1. **Data Analyst:** Analyzes data structure, creates exploratory visualizations, and performs correlation analysis to identify relationships.
136
+ 2. **Machine Learning Agent:** Builds and logs the machine learning models.
137
+ 3. **Interpretability Agent:** Performs Interpretable ML to explain why the model returned predictions including which features were the most important to the model.
138
+ 4. **Supervisor:** Forms task list. Moderates sub-agents. Returns completed assignment.
139
+
140
+ ## Disclaimer
141
+
142
+ **This project is for educational purposes only.**
143
+
144
+ - It is not intended to replace your company's data science team
145
+ - No warranties or guarantees provided
146
+ - Creator assumes no liability for financial loss
147
+ - Consult an experienced Generative AI Data Scientist for building your own custom AI Data Science Team
148
+ - If you want a custom enterprise-grade AI Data Science Team, [send inquiries here](https://www.business-science.io/contact.html).
149
+
150
+ By using this software, you agree to use it solely for learning purposes.
151
+
152
+ ## Installation
153
+
154
+ ``` bash
155
+ pip install git+https://github.com/business-science/ai-data-science-team.git --upgrade
156
+ ```
157
+
158
+ ## Usage
159
+
160
+ [See all examples here.](/examples)
161
+
162
+ ### Example 1: Feature Engineering with the Feature Engineering Agent
163
+
164
+ [See the full example here.](/examples/feature_engineering_agent.ipynb)
165
+
166
+ ``` python
167
+ feature_engineering_agent = FeatureEngineeringAgent(model = llm)
168
+
169
+ feature_engineering_agent.invoke_agent(
170
+ data_raw = df,
171
+ user_instructions = "Make sure to scale and center numeric features",
172
+ target_variable = "Churn",
173
+ max_retries = 3,
174
+ )
175
+ ```
176
+
177
+ ``` bash
178
+ ---FEATURE ENGINEERING AGENT----
179
+ * CREATE FEATURE ENGINEER CODE
180
+ * EXECUTING AGENT CODE
181
+ * EXPLAIN AGENT CODE
182
+ ```
183
+
184
+ ``` python
185
+ feature_engineering_agent.get_data_engineered()
186
+ ```
187
+
188
+ ### Example 2: Cleaning Data with the Data Cleaning Agent
189
+
190
+ [See the full example here.](/examples/data_cleaning_agent.ipynb)
191
+
192
+ ``` python
193
+ data_cleaning_agent = DataCleaningAgent(model = llm)
194
+
195
+ response = data_cleaning_agent.invoke_agent(
196
+ data_raw = df,
197
+ user_instructions = "Don't remove outliers when cleaning the data.",
198
+ max_retries = 3,
199
+ )
200
+ ```
201
+
202
+ ``` bash
203
+ ---DATA CLEANING AGENT----
204
+ * CREATE DATA CLEANER CODE
205
+ * EXECUTING AGENT CODE
206
+ * EXPLAIN AGENT CODE
207
+ ```
208
+
209
+ ``` python
210
+ data_cleaning_agent.get_data_cleaned()
211
+ ```
212
+
213
+ ## Contributing
214
+
215
+ 1. Fork the repository
216
+ 2. Create a feature branch
217
+ 3. Commit your changes
218
+ 4. Push to the branch
219
+ 5. Create a Pull Request
220
+
221
+ ## License
222
+
223
+ This project is licensed under the MIT License. See LICENSE file for details.
224
+
225
+ # Want To Become A Full-Stack Generative AI Data Scientist?
226
+
227
+ ![Generative AI Data Scientist](/img/become_a_generative_ai_data_scientist.jpg)
228
+
229
+ I teach Generative AI Data Science to help you build AI-powered data science apps. [**Register for my next Generative AI for Data Scientists workshop here.**](https://learn.business-science.io/ai-register)
230
+
231
+
@@ -0,0 +1,193 @@
1
+ <div align="center">
2
+ <a href="https://github.com/business-science/ai-data-science-team">
3
+ <picture>
4
+ <img src="/img/ai_data_science_team_logo.jpg" alt="AI Data Science Team" width="400">
5
+ </picture>
6
+ </a>
7
+ </div>
8
+ <div align="center">
9
+ <em>An AI-powered data science team of agents to help you perform common data science tasks 10X faster</em>
10
+ </div>
11
+ <div align="center">
12
+ <a href="https://pypi.python.org/pypi/ai-data-science-team"><img src="https://img.shields.io/pypi/v/ai-data-science-team.svg" alt="PyPI"></a>
13
+ <a href="https://github.com/business-science/ai-data-science-team"><img src="https://img.shields.io/pypi/pyversions/ai-data-science-team.svg" alt="versions"></a>
14
+ <a href="https://github.com/business-science/ai-data-science-team/blob/main/LICENSE"><img src="https://img.shields.io/github/license/business-science/ai-data-science-team.svg?v" alt="license"></a>
15
+ </div>
16
+
17
+
18
+ # Your AI Data Science Team (An Army Of Agents)
19
+
20
+ **An AI-powered data science team of agents to help you perform common data science tasks 10X faster**.
21
+
22
+ [**Please ⭐ us on GitHub (it takes 2 seconds and means a lot).**](https://github.com/business-science/ai-data-science-team)
23
+
24
+ *Beta - This Python library is under active development. There may be breaking changes that occur until release of 0.1.0.*
25
+
26
+ ---
27
+
28
+ The AI Data Science Team of Copilots includes Agents that specialize data cleaning, preparation, feature engineering, modeling (machine learning), and interpretation of various business problems like:
29
+
30
+ - Churn Modeling
31
+ - Employee Attrition
32
+ - Lead Scoring
33
+ - Insurance Risk
34
+ - Credit Card Risk
35
+ - And more
36
+
37
+ ## Table of Contents
38
+
39
+ - [Your AI Data Science Team (An Army Of Agents)](#your-ai-data-science-team-an-army-of-agents)
40
+ - [Table of Contents](#table-of-contents)
41
+ - [Companies That Want A Custom AI Data Science Team (And AI Apps)](#companies-that-want-a-custom-ai-data-science-team-and-ai-apps)
42
+ - [Free How To Build AI Agents for Data Scientists Workshop](#free-how-to-build-ai-agents-for-data-scientists-workshop)
43
+ - [Data Science Agents](#data-science-agents)
44
+ - [Coming Soon: Multi-Agents](#coming-soon-multi-agents)
45
+ - [...And after that, the Multi-Agent Data Science Apps](#and-after-that-the-multi-agent-data-science-apps)
46
+ - [Agents Available Now](#agents-available-now)
47
+ - [Agents Coming Soon](#agents-coming-soon)
48
+ - [Disclaimer](#disclaimer)
49
+ - [Installation](#installation)
50
+ - [Usage](#usage)
51
+ - [Example 1: Feature Engineering with the Feature Engineering Agent](#example-1-feature-engineering-with-the-feature-engineering-agent)
52
+ - [Example 2: Cleaning Data with the Data Cleaning Agent](#example-2-cleaning-data-with-the-data-cleaning-agent)
53
+ - [Contributing](#contributing)
54
+ - [License](#license)
55
+ - [Want To Become A Full-Stack Generative AI Data Scientist?](#want-to-become-a-full-stack-generative-ai-data-scientist)
56
+
57
+ ## Companies That Want A Custom AI Data Science Team (And AI Apps)
58
+
59
+ Want to have your own _customized_ enterprise-grade AI Data Science Team and domain-specifici AI-powered Apps?
60
+
61
+ **Send inquiries here:** [https://www.business-science.io/contact.html](https://www.business-science.io/contact.html)
62
+
63
+ ## Free How To Build AI Agents for Data Scientists Workshop
64
+
65
+ If you're an aspiring data scientist who wants to learn how to build AI Agents and AI Apps for your company that performs Data Science, Business Intelligence, Churn Modeling, Time Series Forecasting, and more, then I'd love to help you.
66
+
67
+ [**Register for my next Generative AI for Data Scientists workshop here.**](https://learn.business-science.io/ai-register)
68
+
69
+ ## Data Science Agents
70
+
71
+ This project is a work in progress. New data science agents will be released soon.
72
+
73
+ ![Data Science Team](/img/ai_data_science_team.jpg)
74
+
75
+ ### Coming Soon: Multi-Agents
76
+
77
+ This is the internals of the Business Intelligence SQL Agent I'm working on:
78
+
79
+ ![Business Intelligence SQL Agent](/img/multi_agent_sql_data_visualization.jpg)
80
+
81
+ ### ...And after that, the Multi-Agent Data Science Apps
82
+
83
+ This is a top secret project I'm working on. It's a multi-agent data science app that performs time series forecasting.
84
+
85
+ ![Multi-Agent Data Science App](/img/ai_powered_apps.jpg)
86
+
87
+ ### Agents Available Now
88
+
89
+ 1. **Data Wrangling Agent:** Merges, Joins, Preps and Wrangles data into a format that is ready for data analysis.
90
+ 2. **Data Visualization Agent:** Creates visualizations to help you understand your data. Returns JSON serializable plotly visualizations.
91
+ 3. **Data Cleaning Agent:** Performs Data Preparation steps including handling missing values, outliers, and data type conversions.
92
+ 4. **Feature Engineering Agent:** Converts the prepared data into ML-ready data. Adds features to increase predictive accuracy of ML models.
93
+ 5. **SQL Database Agent:** Connects to SQL databases to pull data into the data science environment. Creates pipelines to automate data extraction. Performs Joins, Aggregations, and other SQL Query operations.
94
+
95
+ ### Agents Coming Soon
96
+
97
+ 1. **Data Analyst:** Analyzes data structure, creates exploratory visualizations, and performs correlation analysis to identify relationships.
98
+ 2. **Machine Learning Agent:** Builds and logs the machine learning models.
99
+ 3. **Interpretability Agent:** Performs Interpretable ML to explain why the model returned predictions including which features were the most important to the model.
100
+ 4. **Supervisor:** Forms task list. Moderates sub-agents. Returns completed assignment.
101
+
102
+ ## Disclaimer
103
+
104
+ **This project is for educational purposes only.**
105
+
106
+ - It is not intended to replace your company's data science team
107
+ - No warranties or guarantees provided
108
+ - Creator assumes no liability for financial loss
109
+ - Consult an experienced Generative AI Data Scientist for building your own custom AI Data Science Team
110
+ - If you want a custom enterprise-grade AI Data Science Team, [send inquiries here](https://www.business-science.io/contact.html).
111
+
112
+ By using this software, you agree to use it solely for learning purposes.
113
+
114
+ ## Installation
115
+
116
+ ``` bash
117
+ pip install git+https://github.com/business-science/ai-data-science-team.git --upgrade
118
+ ```
119
+
120
+ ## Usage
121
+
122
+ [See all examples here.](/examples)
123
+
124
+ ### Example 1: Feature Engineering with the Feature Engineering Agent
125
+
126
+ [See the full example here.](/examples/feature_engineering_agent.ipynb)
127
+
128
+ ``` python
129
+ feature_engineering_agent = FeatureEngineeringAgent(model = llm)
130
+
131
+ feature_engineering_agent.invoke_agent(
132
+ data_raw = df,
133
+ user_instructions = "Make sure to scale and center numeric features",
134
+ target_variable = "Churn",
135
+ max_retries = 3,
136
+ )
137
+ ```
138
+
139
+ ``` bash
140
+ ---FEATURE ENGINEERING AGENT----
141
+ * CREATE FEATURE ENGINEER CODE
142
+ * EXECUTING AGENT CODE
143
+ * EXPLAIN AGENT CODE
144
+ ```
145
+
146
+ ``` python
147
+ feature_engineering_agent.get_data_engineered()
148
+ ```
149
+
150
+ ### Example 2: Cleaning Data with the Data Cleaning Agent
151
+
152
+ [See the full example here.](/examples/data_cleaning_agent.ipynb)
153
+
154
+ ``` python
155
+ data_cleaning_agent = DataCleaningAgent(model = llm)
156
+
157
+ response = data_cleaning_agent.invoke_agent(
158
+ data_raw = df,
159
+ user_instructions = "Don't remove outliers when cleaning the data.",
160
+ max_retries = 3,
161
+ )
162
+ ```
163
+
164
+ ``` bash
165
+ ---DATA CLEANING AGENT----
166
+ * CREATE DATA CLEANER CODE
167
+ * EXECUTING AGENT CODE
168
+ * EXPLAIN AGENT CODE
169
+ ```
170
+
171
+ ``` python
172
+ data_cleaning_agent.get_data_cleaned()
173
+ ```
174
+
175
+ ## Contributing
176
+
177
+ 1. Fork the repository
178
+ 2. Create a feature branch
179
+ 3. Commit your changes
180
+ 4. Push to the branch
181
+ 5. Create a Pull Request
182
+
183
+ ## License
184
+
185
+ This project is licensed under the MIT License. See LICENSE file for details.
186
+
187
+ # Want To Become A Full-Stack Generative AI Data Scientist?
188
+
189
+ ![Generative AI Data Scientist](/img/become_a_generative_ai_data_scientist.jpg)
190
+
191
+ I teach Generative AI Data Science to help you build AI-powered data science apps. [**Register for my next Generative AI for Data Scientists workshop here.**](https://learn.business-science.io/ai-register)
192
+
193
+
@@ -0,0 +1 @@
1
+ __version__ = "0.0.0.9008"
@@ -0,0 +1,6 @@
1
+ from ai_data_science_team.agents.data_cleaning_agent import make_data_cleaning_agent, DataCleaningAgent
2
+ from ai_data_science_team.agents.feature_engineering_agent import make_feature_engineering_agent, FeatureEngineeringAgent
3
+ from ai_data_science_team.agents.data_wrangling_agent import make_data_wrangling_agent, DataWranglingAgent
4
+ from ai_data_science_team.agents.sql_database_agent import make_sql_database_agent, SQLDatabaseAgent
5
+ from ai_data_science_team.agents.data_visualization_agent import make_data_visualization_agent, DataVisualizationAgent
6
+