Install | Documentation | Website
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.
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}")