Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Connect to Threadify Engine and start tracking workflows
import { Threadify } from '@threadify/sdk'; const threadify = await Threadify.connect('your-api-key', 'my-service'); await threadify.close()
ctx := context.Background() conn, err := threadify.Connect(ctx, "your-api-key", threadify.WithServiceName("my-service"), ) if err != nil { log.Fatal(err) } defer conn.Close()
from threadify import Threadify # Connect with your API key and service name connection = await Threadify.connect( "your-api-key", service_name="my-service", )
apiKey
serviceName
options
maxInFlight
reconnect
timeout