Skip to content

Installation

gitpavleenbali edited this page Feb 17, 2026 · 4 revisions

Installation

Multiple installation options to fit your needs.


Basic Installation

pip install pyai

With Specific Providers

OpenAI

pip install pyai[openai]

Anthropic Claude

pip install pyai[anthropic]

Azure OpenAI (Recommended for Enterprise)

pip install pyai[azure]

Includes:

  • Azure Identity (Azure AD authentication)
  • Azure AI Search integration
  • OpenAI SDK for Azure

With Integrations

LangChain

pip install pyai[langchain]

Microsoft Semantic Kernel

pip install pyai[semantic-kernel]

Vector Databases

pip install pyai[vector]

Includes: ChromaDB, FAISS, Pinecone, Qdrant

Web & Documents

pip install pyai[web]      # aiohttp, requests, beautifulsoup
pip install pyai[docs]     # PDF, DOCX processing

Full Installation

pip install pyai[all]

Installs everything: all providers, integrations, and utilities.


Development Installation

pip install pyai[dev]

Includes: pytest, black, ruff, mypy, pre-commit


Installation Extras Summary

Extra Packages Included
openai OpenAI SDK
anthropic Anthropic Claude SDK
azure Azure Identity, AI Search, OpenAI
langchain LangChain integration
semantic-kernel Microsoft Semantic Kernel
vector ChromaDB, FAISS, Pinecone, Qdrant
web aiohttp, requests, beautifulsoup4
docs pypdf, python-docx
all Everything above
dev pytest, black, ruff, mypy

From Source

git clone https://github.com/gitpavleenbali/PYAI.git
cd PYAI
pip install -e ".[dev]"

Verify Installation

import pyai
print(pyai.__version__)  # 0.4.0

Next Steps

🧠 PYAI Wiki

Home


πŸš€ Getting Started


πŸ’‘ Core Concepts


🎯 One-Liner APIs


πŸ€– Agent Framework


πŸ”— Multi-Agent


πŸ› οΈ Tools & Skills


🏒 Enterprise


πŸŽ™οΈ Voice


πŸ–ΌοΈ Multimodal


πŸ“Š Vector DB


🌐 OpenAPI


πŸ”Œ Plugins


🀝 A2A Protocol


πŸ”’ Security


πŸ“š Reference


Intelligence, Embedded.

Clone this wiki locally