Developing
Set Up Your Connection
from pydantic import BaseModel
from integrations_sdk.server import start_workflow_server
class Options(BaseModel):
baseUrl: str
class Secrets(BaseModel):
apiKey: str
app = start_workflow_server(
"fns",
"http://localhost:9000",
"engine-api-key",
Options,
Secrets,
dev_mode=True # Set to true.
)Test Creating Your Connection
Adding an Action
Read More
Last updated
Was this helpful?

