Learn about workflows in Inferable
executionId
. Inferable will use this executionId
as an idempotency key.
If you trigger the same workflow with the same executionId
, only the first execution will be executed, and the subsequent executions will no-op.
context
object. This context object is used to access the Inferable SDK and other services.
For example, you can use the llm
object to interact with an LLM.
ctx.llm
- Interacting with LLMsctx.agents
- Interacting with agentsctx.memo
- Memoizing intermediate resultsctx.log
- Logging for workflow observability