Skip to main content

AI-Parrot Tools

ai-parrot-tools is a collection of tools and toolkits for AI-Parrot agents. Each tool wraps an external API or service behind a unified interface that agents can discover and invoke automatically.

Installation

pip install ai-parrot-tools

Install only the extras you need:

# Individual extras
pip install ai-parrot-tools[aws]
pip install ai-parrot-tools[slack]
pip install ai-parrot-tools[jira]
pip install ai-parrot-tools[google]
pip install ai-parrot-tools[finance]
pip install ai-parrot-tools[db]

# Everything
pip install ai-parrot-tools[all]

Available Extras

Extra Description
jira Jira issue tracking
slack Slack messaging
aws AWS services (EC2, S3, RDS, Lambda, ECS, IAM, etc.)
docker Docker container management
git Git repository operations
analysis Data analysis with pandas, numpy, autoviz
excel Excel and ODF spreadsheet support
sandbox Sandboxed code execution via Docker
codeinterpreter Interactive code interpreter
pulumi Pulumi infrastructure-as-code
sitesearch Website crawling and search
office365 Microsoft 365 / Graph API integration
scraping Web scraping with Selenium
finance Financial analysis (TA-Lib, yfinance, Alpaca)
db Database querying via QuerySource
flowtask FlowTask workflow integration
google Google APIs (Search, Maps, Routes)
arxiv arXiv paper search
wikipedia Wikipedia lookups
weather OpenWeatherMap
messaging MQTT and IMAP messaging
workday Workday SOAP/REST interfaces (zeep, pandas, aiohttp) — see parrot_tools.interfaces.workday

Quick Start

from parrot.bots import Agent

agent = Agent(
    name="assistant",
    instructions="You are a helpful assistant.",
    tools=["google_search", "weather", "calculator"],
)

response = await agent.chat("What's the weather in New York?")

Tools are registered by name. Pass a list of tool names to any AI-Parrot agent and they are loaded on demand.

Creating Custom Tools

Use the @tool decorator for simple functions:

from parrot.tools import tool

@tool
def get_stock_price(symbol: str) -> str:
    """Get the current stock price for a ticker symbol."""
    ...

Use AbstractToolkit for multi-tool collections:

from parrot.tools import AbstractToolkit

class MyToolkit(AbstractToolkit):
    name = "my_toolkit"
    description = "A collection of related tools."

    def get_tools(self):
        ...

Requirements

License

MIT

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

ai_parrot_tools-0.3.0.tar.gz (1.3 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

ai_parrot_tools-0.3.0-py3-none-any.whl (1.4 MB view details)

Uploaded Python 3

File details

Details for the file ai_parrot_tools-0.3.0.tar.gz.

File metadata

  • Download URL: ai_parrot_tools-0.3.0.tar.gz
  • Upload date:
  • Size: 1.3 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for ai_parrot_tools-0.3.0.tar.gz
Algorithm Hash digest
SHA256 d9535878e5e91cb56901d5003b8fd8fa12c5ba6212dc9a116191247f751b9b34
MD5 c16b4542a3a1c7722ef4ce866a42816a
BLAKE2b-256 714153a55e98a4e347db59dfaf5dedad38791ec3a9192ebbbf12770f1e7a257e

See more details on using hashes here.

Provenance

The following attestation bundles were made for ai_parrot_tools-0.3.0.tar.gz:

Publisher: release.yml on phenobarbital/ai-parrot

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ai_parrot_tools-0.3.0-py3-none-any.whl.

File metadata

File hashes

Hashes for ai_parrot_tools-0.3.0-py3-none-any.whl
Algorithm Hash digest
SHA256 43a05ce85108b6d06af7eff501fa0e27518434cf98eac0651cd3ef946750c935
MD5 6fcb2600a1b66e0a4cbaa552767222c2
BLAKE2b-256 bbf4645a1ccd779c690b16a5ed7b4672d0eba8d795487caa4a76ca5ab25115e4

See more details on using hashes here.

Provenance

The following attestation bundles were made for ai_parrot_tools-0.3.0-py3-none-any.whl:

Publisher: release.yml on phenobarbital/ai-parrot

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

This release

0.3.0 This release

2 files

0.2.1

2 files

0.2.0

1 file

0.1.89

2 files

0.1.88

2 files

0.1.87

2 files

0.1.86

1 file

0.1.85

2 files

0.1.84

2 files

0.1.82

1 file

0.1.81

1 file

0.1.80

2 files

0.1.79

2 files

0.1.78

2 files

0.1.75

2 files

0.1.74

2 files

0.1.73

2 files

0.1.72

2 files

0.1.71

2 files

0.1.70

2 files

0.1.69

2 files

0.1.67

2 files

0.1.66

2 files

0.1.65

2 files

0.1.64

2 files

0.1.63

2 files

0.1.62

2 files

0.1.61

2 files

0.1.60

2 files

0.1.59

2 files

0.1.58

2 files

0.1.57

2 files

0.1.56

2 files

0.1.54

2 files

0.1.53

2 files

0.1.52

2 files

0.1.51

2 files

0.1.50

2 files

0.1.49

2 files

0.1.48

2 files

0.1.47

2 files

0.1.46

2 files

0.1.45

2 files

0.1.44

2 files

0.1.43

2 files

0.1.42

2 files

0.1.41

2 files

0.1.40

2 files

0.1.39

2 files

0.1.38

2 files

0.1.36

2 files

0.1.35

2 files

0.1.34

2 files

0.1.33

2 files

0.1.32

2 files

0.1.31

2 files

0.1.30

2 files

0.1.28

2 files

0.1.27

2 files

0.1.26

2 files

0.1.25

2 files

0.1.24

2 files

0.1.23

2 files

0.1.22

1 file

0.1.21

1 file

0.1.19

2 files

0.1.18

2 files

0.1.17

2 files

0.1.16

2 files

0.1.15

2 files

0.1.14

2 files

0.1.13

2 files

0.1.12

2 files

0.1.11

2 files

0.1.10

2 files

0.1.8

2 files

0.1.6

2 files

0.1.5

2 files

0.1.4

2 files

0.1.3

2 files

0.1.2

2 files

0.1.0

2 files

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page