business-science / ai-data-science-team
- вторник, 27 января 2026 г. в 00:00:02
An AI-powered data science team of agents to help you perform common data science tasks 10X faster.
AI Data Science Team is a Python library of specialized agents for common data science workflows, plus a flagship app: AI Pipeline Studio. The Studio turns your work into a visual, reproducible pipeline, while the AI team handles data loading, cleaning, visualization, and modeling.
Status: Beta. Breaking changes may occur until 0.1.0.
Please ⭐ us on GitHub (it takes 2 seconds and means a lot).
AI Pipeline Studio is the main example of the AI Data Science Team in action.
Highlights:
Run it:
streamlit run apps/ai-pipeline-studio-app/app.pyFull app docs: apps/ai-pipeline-studio-app/README.md
Clone the repo and install in editable mode:
pip install -e .streamlit run apps/ai-pipeline-studio-app/app.pyThe repository includes both the AI Pipeline Studio app and the underlying AI Data Science Team library. The library provides agent building blocks and multi-agent workflows for:
Agent examples live in examples/. Notable agents:
See all apps in apps/. Notable apps:
apps/ai-pipeline-studio-app/apps/exploratory-copilot-app/apps/pandas-data-analyst-app/from langchain_openai import ChatOpenAI
llm = ChatOpenAI(
model_name="gpt-4.1-mini",
)ollama serve
ollama pull llama3.1:8bfrom langchain_ollama import ChatOllama
llm = ChatOllama(
model="llama3.1:8b",
)Want to learn how to build AI agents and AI apps for real data science workflows? Join my next‑gen AI workshop: https://learn.business-science.io/ai-register