.wire file, sends it to the executor, and reads the JSON result.
1. Start the executor
2. Create hello.wire
endpoint can be any OpenAI-compatible backend URL, as long as that backend supports /responses.
3. Use the Playground (fastest way to test)
You can test.wire files directly in the Playground with a visual interface, without manually base64-encoding workflow source.
Open:
- Paste or edit your
.wiresource. - Fill
inputandsecretsas JSON. - Run the workflow and inspect output and events.
4. Encode the workflow (CLI/API path)
- Linux
- macOS
5. Execute it
6. Use streaming when needed
/execute returns Server-Sent Events when you request text/event-stream:
Common setup issues
Common setup issues
- Ensure Docker is running and port
13703is not already in use. - If your response is empty, verify
workflow_source_base64is populated. - If provider calls fail, confirm
secrets.api_keycontains a valid key.
What to do next
What to do next
- Read Core Concepts to understand workflow structure.
- Use Executor API for request and event details.
- Explore Examples for more complex patterns.