ai-data-science-team 0.0.0.9006__py3-none-any.whl → 0.0.0.9007__py3-none-any.whl
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.
- ai_data_science_team/_version.py +1 -1
- ai_data_science_team/agents/__init__.py +2 -1
- ai_data_science_team/agents/data_cleaning_agent.py +204 -19
- ai_data_science_team/agents/data_visualization_agent.py +331 -0
- ai_data_science_team/agents/data_wrangling_agent.py +56 -11
- ai_data_science_team/agents/feature_engineering_agent.py +40 -11
- ai_data_science_team/agents/sql_database_agent.py +30 -12
- ai_data_science_team/templates/__init__.py +8 -0
- ai_data_science_team/tools/metadata.py +110 -47
- ai_data_science_team/tools/regex.py +6 -0
- {ai_data_science_team-0.0.0.9006.dist-info → ai_data_science_team-0.0.0.9007.dist-info}/METADATA +41 -23
- ai_data_science_team-0.0.0.9007.dist-info/RECORD +21 -0
- {ai_data_science_team-0.0.0.9006.dist-info → ai_data_science_team-0.0.0.9007.dist-info}/WHEEL +1 -1
- ai_data_science_team-0.0.0.9006.dist-info/RECORD +0 -20
- {ai_data_science_team-0.0.0.9006.dist-info → ai_data_science_team-0.0.0.9007.dist-info}/LICENSE +0 -0
- {ai_data_science_team-0.0.0.9006.dist-info → ai_data_science_team-0.0.0.9007.dist-info}/top_level.txt +0 -0
{ai_data_science_team-0.0.0.9006.dist-info → ai_data_science_team-0.0.0.9007.dist-info}/METADATA
RENAMED
@@ -1,6 +1,6 @@
|
|
1
|
-
Metadata-Version: 2.
|
1
|
+
Metadata-Version: 2.2
|
2
2
|
Name: ai-data-science-team
|
3
|
-
Version: 0.0.0.
|
3
|
+
Version: 0.0.0.9007
|
4
4
|
Summary: Build and run an AI-powered data science team.
|
5
5
|
Home-page: https://github.com/business-science/ai-data-science-team
|
6
6
|
Author: Matt Dancho
|
@@ -21,12 +21,22 @@ Requires-Dist: plotly
|
|
21
21
|
Requires-Dist: streamlit
|
22
22
|
Requires-Dist: scikit-learn
|
23
23
|
Requires-Dist: xgboost
|
24
|
+
Dynamic: author
|
25
|
+
Dynamic: author-email
|
26
|
+
Dynamic: description
|
27
|
+
Dynamic: description-content-type
|
28
|
+
Dynamic: home-page
|
29
|
+
Dynamic: requires-dist
|
30
|
+
Dynamic: requires-python
|
31
|
+
Dynamic: summary
|
24
32
|
|
25
33
|
# Your AI Data Science Team (An Army Of Copilots)
|
26
34
|
|
27
35
|
**An AI-powered data science team of copilots that uses agents to help you perform common data science tasks 10X faster**.
|
28
36
|
|
29
|
-
Star ⭐ This GitHub (Takes 2 seconds and means a lot)
|
37
|
+
**Star ⭐ This GitHub (Takes 2 seconds and means a lot).**
|
38
|
+
|
39
|
+
*Beta - This Python library is under active development. There may be breaking changes that occur until release of 0.1.0.*
|
30
40
|
|
31
41
|
---
|
32
42
|
|
@@ -39,6 +49,24 @@ The AI Data Science Team of Copilots includes Agents that specialize data cleani
|
|
39
49
|
- Credit Card Risk
|
40
50
|
- And more
|
41
51
|
|
52
|
+
## Table of Contents
|
53
|
+
|
54
|
+
- [Your AI Data Science Team (An Army Of Copilots)](#your-ai-data-science-team-an-army-of-copilots)
|
55
|
+
- [Table of Contents](#table-of-contents)
|
56
|
+
- [Companies That Want An AI Data Science Team Copilot](#companies-that-want-an-ai-data-science-team-copilot)
|
57
|
+
- [Free Generative AI For Data Scientists Workshop](#free-generative-ai-for-data-scientists-workshop)
|
58
|
+
- [Data Science Agents](#data-science-agents)
|
59
|
+
- [Coming Soon: Multi-Agents](#coming-soon-multi-agents)
|
60
|
+
- [Agents Available Now](#agents-available-now)
|
61
|
+
- [Agents Coming Soon](#agents-coming-soon)
|
62
|
+
- [Disclaimer](#disclaimer)
|
63
|
+
- [Installation](#installation)
|
64
|
+
- [Usage](#usage)
|
65
|
+
- [Example 1: Feature Engineering with the Feature Engineering Agent](#example-1-feature-engineering-with-the-feature-engineering-agent)
|
66
|
+
- [Example 2: Cleaning Data with the Data Cleaning Agent](#example-2-cleaning-data-with-the-data-cleaning-agent)
|
67
|
+
- [Contributing](#contributing)
|
68
|
+
- [License](#license)
|
69
|
+
|
42
70
|
## Companies That Want An AI Data Science Team Copilot
|
43
71
|
|
44
72
|
If you are interested in having your own custom enteprise-grade AI Data Science Team Copilot, send inquiries here: [https://www.business-science.io/contact.html](https://www.business-science.io/contact.html)
|
@@ -53,12 +81,19 @@ This project is a work in progress. New data science agents will be released soo
|
|
53
81
|
|
54
82
|

|
55
83
|
|
84
|
+
### Coming Soon: Multi-Agents
|
85
|
+
|
86
|
+
This is the internals of the Business Intelligence SQL Agent I'm working on:
|
87
|
+
|
88
|
+

|
89
|
+
|
56
90
|
### Agents Available Now
|
57
91
|
|
58
92
|
1. **Data Wrangling Agent:** Merges, Joins, Preps and Wrangles data into a format that is ready for data analysis.
|
59
|
-
2. **Data
|
60
|
-
3. **
|
61
|
-
4. **
|
93
|
+
2. **Data Visualization Agent:** Creates visualizations to help you understand your data. Returns JSON serializable plotly visualizations.
|
94
|
+
3. **Data Cleaning Agent:** Performs Data Preparation steps including handling missing values, outliers, and data type conversions.
|
95
|
+
4. **Feature Engineering Agent:** Converts the prepared data into ML-ready data. Adds features to increase predictive accuracy of ML models.
|
96
|
+
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.
|
62
97
|
|
63
98
|
### Agents Coming Soon
|
64
99
|
|
@@ -79,23 +114,6 @@ This project is a work in progress. New data science agents will be released soo
|
|
79
114
|
|
80
115
|
By using this software, you agree to use it solely for learning purposes.
|
81
116
|
|
82
|
-
## Table of Contents
|
83
|
-
|
84
|
-
- [Your AI Data Science Team (An Army Of Copilots)](#your-ai-data-science-team-an-army-of-copilots)
|
85
|
-
- [Companies That Want An AI Data Science Team Copilot](#companies-that-want-an-ai-data-science-team-copilot)
|
86
|
-
- [Free Generative AI For Data Scientists Workshop](#free-generative-ai-for-data-scientists-workshop)
|
87
|
-
- [Data Science Agents](#data-science-agents)
|
88
|
-
- [Agents Available Now](#agents-available-now)
|
89
|
-
- [Agents Coming Soon](#agents-coming-soon)
|
90
|
-
- [Disclaimer](#disclaimer)
|
91
|
-
- [Table of Contents](#table-of-contents)
|
92
|
-
- [Installation](#installation)
|
93
|
-
- [Usage](#usage)
|
94
|
-
- [Example 1: Feature Engineering with the Feature Engineering Agent](#example-1-feature-engineering-with-the-feature-engineering-agent)
|
95
|
-
- [Example 2: Cleaning Data with the Data Cleaning Agent](#example-2-cleaning-data-with-the-data-cleaning-agent)
|
96
|
-
- [Contributing](#contributing)
|
97
|
-
- [License](#license)
|
98
|
-
|
99
117
|
## Installation
|
100
118
|
|
101
119
|
``` bash
|
@@ -0,0 +1,21 @@
|
|
1
|
+
ai_data_science_team/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
2
|
+
ai_data_science_team/_version.py,sha256=VJYpfOaKsXjGzPOsT6kYyVW6T9bFBqxt6Ph3qF8t-A8,26
|
3
|
+
ai_data_science_team/orchestration.py,sha256=xiIFOsrLwPdkSmtme7wNCCGv8XopnMTNElNzlZokL-4,303
|
4
|
+
ai_data_science_team/agents/__init__.py,sha256=rcF18rBsOuPJqJKvoffh6lwr4Nwm24MErM2u4H4Th9s,467
|
5
|
+
ai_data_science_team/agents/data_cleaning_agent.py,sha256=gixYY4wGehKK_ROgU7CVOzijghmVQGD4hyK9uKhc8Hw,20890
|
6
|
+
ai_data_science_team/agents/data_visualization_agent.py,sha256=wePFZbdB4kBah8m_iy6f4IDyjl6L6zBWzIgigJEXdk8,12933
|
7
|
+
ai_data_science_team/agents/data_wrangling_agent.py,sha256=5w1kytoWLE4p3hj0YHVuXcgCd304eNQac-Zrrgmnr2s,16735
|
8
|
+
ai_data_science_team/agents/feature_engineering_agent.py,sha256=UaaU3VkPhjOV0NbrYXedRb6eHOcOWWiGYhB_srrYWvg,17571
|
9
|
+
ai_data_science_team/agents/sql_database_agent.py,sha256=mRbEAPHP6NlwQac2_VL9RuyIfCCtrmXTrzu5RLzOoeU,16031
|
10
|
+
ai_data_science_team/templates/__init__.py,sha256=bNrKGmWXQG7GRczln_zVfUQLzxzp7hSwlLyNtLxleu4,278
|
11
|
+
ai_data_science_team/templates/agent_templates.py,sha256=xohVgEfxPcVukPLpPfV7mZ0cpFgp-oJVLZRWCv2V-WU,19948
|
12
|
+
ai_data_science_team/tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
13
|
+
ai_data_science_team/tools/logging.py,sha256=7wFOv6GGhXR_RPbh-8p0GyrS608XOnZtiaGK2IbDl_s,2081
|
14
|
+
ai_data_science_team/tools/metadata.py,sha256=tbnca_tDp67oBA6qD29AKVooJG10VqGr4vwzj4rPUas,8348
|
15
|
+
ai_data_science_team/tools/parsers.py,sha256=BAi-fJT7BBt9nRS3w5n9LDTsu7JAJsH8CAI9-Qf7jCs,2086
|
16
|
+
ai_data_science_team/tools/regex.py,sha256=vkfdvi9pDe582p-fh_7cB07Wb0dOR2CsiVq-wUO3mas,2491
|
17
|
+
ai_data_science_team-0.0.0.9007.dist-info/LICENSE,sha256=Xif0IRLdd2HGLATxV2EVp91aSY6KOuacRr_6BorKGzA,1084
|
18
|
+
ai_data_science_team-0.0.0.9007.dist-info/METADATA,sha256=KcMFR2V9_wbepdKsrlFdfc7UB7t-Hf7i75x67LPXw3Q,6783
|
19
|
+
ai_data_science_team-0.0.0.9007.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
20
|
+
ai_data_science_team-0.0.0.9007.dist-info/top_level.txt,sha256=CnoMgOphCoAdGTLueWdCVByVyjwOubaGiTB1lchdy4M,21
|
21
|
+
ai_data_science_team-0.0.0.9007.dist-info/RECORD,,
|
@@ -1,20 +0,0 @@
|
|
1
|
-
ai_data_science_team/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
2
|
-
ai_data_science_team/_version.py,sha256=kTc236xj1NaDUZVS5zSKWSI-QWDToxRsLpOvSdPaLxo,26
|
3
|
-
ai_data_science_team/orchestration.py,sha256=xiIFOsrLwPdkSmtme7wNCCGv8XopnMTNElNzlZokL-4,303
|
4
|
-
ai_data_science_team/agents/__init__.py,sha256=1lrC6l-wJJNguHM14cDhX_QX7PLr1V9H_j33d-KouMc,353
|
5
|
-
ai_data_science_team/agents/data_cleaning_agent.py,sha256=-16zPLqtsvwxWID6KI9j9-9qxN1hMb9si_CTKmiyvss,14884
|
6
|
-
ai_data_science_team/agents/data_wrangling_agent.py,sha256=kt-jYEdZzSGtOnFh7KQA5DzkHFRp0MINp7UqfwqMlV8,14768
|
7
|
-
ai_data_science_team/agents/feature_engineering_agent.py,sha256=FguDb7fSLXDgyMSJIwxphCZ-PlfCXsaCXsxtFp_9mrQ,16421
|
8
|
-
ai_data_science_team/agents/sql_database_agent.py,sha256=AVgm9e4GZZiQ6C7-vANjEpI256STi6jmQI6MuYdOXmU,15181
|
9
|
-
ai_data_science_team/templates/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
10
|
-
ai_data_science_team/templates/agent_templates.py,sha256=xohVgEfxPcVukPLpPfV7mZ0cpFgp-oJVLZRWCv2V-WU,19948
|
11
|
-
ai_data_science_team/tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
12
|
-
ai_data_science_team/tools/logging.py,sha256=7wFOv6GGhXR_RPbh-8p0GyrS608XOnZtiaGK2IbDl_s,2081
|
13
|
-
ai_data_science_team/tools/metadata.py,sha256=Vd3gX4K31A4o5IiM4pr9Al_8jkzGOtDCxWMd264AoAM,5772
|
14
|
-
ai_data_science_team/tools/parsers.py,sha256=BAi-fJT7BBt9nRS3w5n9LDTsu7JAJsH8CAI9-Qf7jCs,2086
|
15
|
-
ai_data_science_team/tools/regex.py,sha256=TLXSgYbSOL6e9IJt1BY3Is2O9MCjTVeXpdKR4CIMuQc,2330
|
16
|
-
ai_data_science_team-0.0.0.9006.dist-info/LICENSE,sha256=Xif0IRLdd2HGLATxV2EVp91aSY6KOuacRr_6BorKGzA,1084
|
17
|
-
ai_data_science_team-0.0.0.9006.dist-info/METADATA,sha256=BAkiV4V3ygds8ctQH6kDC99_HQp8vU6OA9Q6KDoHXVQ,6086
|
18
|
-
ai_data_science_team-0.0.0.9006.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
|
19
|
-
ai_data_science_team-0.0.0.9006.dist-info/top_level.txt,sha256=CnoMgOphCoAdGTLueWdCVByVyjwOubaGiTB1lchdy4M,21
|
20
|
-
ai_data_science_team-0.0.0.9006.dist-info/RECORD,,
|
{ai_data_science_team-0.0.0.9006.dist-info → ai_data_science_team-0.0.0.9007.dist-info}/LICENSE
RENAMED
File without changes
|
File without changes
|