Python SDK for PR Pilot, a text-to-task automation platform for Github.


Keywords
agentic, ai, artificial-intelligence, python, sdk, workflows
License
GPL-3.0
Install
pip install pr-pilot==1.7.0

Documentation

Arcane Engine Logo

Install | Documentation | Website

Arcane Kit

Welcome to the development kit for Arcane Engine, a platform that enables developers to create agentic workflows easily.

This project contains the official Python SDK.

Usage

Install the Python SDK using pip:

pip install arcane-engine

Use the ArcaneEngine class to create tasks and interact with the engine. Here's an example of how to create a task and wait for the result:

from arcane.engine import ArcaneEngine
from arcane.util import wait_for_result

engine = ArcaneEngine()
task = engine.create_task("arc-eng/kit", "Summarize the README file and create a Github issue with the result.")
result = wait_for_result(task)
print(f"Task completed. Result:\n\n{task.result}")