Anthropic Claude
flyteplugins-anthropic
This plugin provides integration between Flyte and Anthropic's Claude API, enabling you to use Flyte tasks as tools for Claude agents.
pip install flyteplugins-anthropicQuick Start(example, may need adjustment)
pip install flyteplugins-anthropic
from flytekit import task, workflow
from flyteplugins.anthropic import Agent, function_tool, run_agent
@task
def my_task() -> None:
function_tool(...)
@workflow
def my_workflow() -> None:
my_task()Available Imports (3)
A Claude agent configuration.
extends dataclass — configuration or data structure for plugin setup
from flyteplugins.anthropic import Agent
Task for Anthropic Claude.
from flyteplugins.anthropic import function_tool
Backend connector for Anthropic Claude.
from flyteplugins.anthropic import run_agent
Dependencies
Related Plugins
Deck
This plugin provides additional renderers to improve task visibility within Flytekit.
Envd
envd is a command-line tool that helps you create the container-based development environment for AI/ML.
Flyte Interactive
FlyteInteractive plugin provides users' favorite interface to develop and debug a flyte task interactively. We support vscode, jupyter (WIP), and neovim (WIP).
Google Gemini
This plugin provides integration between Flyte and Google's Gemini API, enabling you to use Flyte tasks as tools for Gemini agents.