Installing the SDK
This page provides instructions for installing the SDK and configuring your development environment for the Ebbot Integrations SDK.
Installation
uv init workflow_server_demouv add integrations_sdk git+https://github.com/ebbot-ai/integrations_sdk.git@mainCreate the server
from pydantic import BaseModel
from integrations_sdk.server import start_workflow_server
class Options(BaseModel):
notSecret: str
class Secrets(BaseModel):
secret: str
app = start_workflow_server(
"fns",
"http://localhost:9000",
"engine-api-key",
Options,
Secrets,
install_instructions="Docs on point, README magic",
docs="My docs",
auth_token="optional-shared-token",
)Setting up the server for development
Starting the server
What the server exposes
Setting up your server for production
DevelopingLast updated
Was this helpful?

