Flow Decorator
Automatic tracing for AI features
Overview
The Flow decorator creates and manages traces for AI features. When applied to a function, it:
- Creates a new trace on function invocation.
- Adds all logging calls made in the function’s execution context to the trace.
- Completes the trace when the function exits.
Decorator Definition
Python
TypeScript
The decorated function will have the same signature as the decorated function.
Parameters
Behavior
Python
TypeScript
The decorated function creates a Flow Log when called. All Logs created inside the decorated function are added to its trace.
The Flow Log’s fields are populated as follows:
If the decorated function returns a ChatMessage object, the output_message
field is populated. Otherwise, the output
field is populated with the stringified return value.
If user code throws an exception, the error
field is populated with the exception message and function returns None
.
Usage
Tracing Decorators
Logs created by other Humanloop decorators or SDK calls to the trace.
Tracing SDK Calls
Logs created through the Humanloop SDK are added to the trace.
Constraints
Nested Traces
- Cannot call
flows.log()
inside a decorated function. This will raise aHumanloopRuntimeError
- To create nested traces, call another flow-decorated function.
Trace management
Python
TypeScript
- The decorator traces the Logs created in its scope, including other Humanloop decorators or SDK calls.
- Passing
trace_parent_id
argument to an SDK logging call inside the decorated function is ignored and emits a warning; the Log is added to the trace of the decorated function.
Error Handling
Python
TypeScript
- User code exceptions are caught and logged inside the Flow Log’s
error
field. The decorated function returnsNone
on exception. HumanloopRuntimeError
exceptions indicate incorrect decorator or SDK usage and are re-raised instead of being logged undererror
.
Related Documentation
A explanation of Flows and their role in the Humanloop platform is found in our Flows documentation.