@log Decorator
Easily capture function inputs and outputs as spans in your traces
The @log
decorator provides a simple way to capture the inputs and outputs of a function as a span within a trace. This is particularly useful for tracking the execution of your AI application without having to manually create and manage spans.
Overview
When you decorate a function with @log
, Galileo automatically:
- Captures the function’s input arguments
- Tracks the function’s execution
- Records the function’s return value
- Creates an appropriate span in the current trace
This approach is less automatic than using wrappers but more flexible, as you can decorate any function in your codebase, not just LLM calls.
Basic Usage
To use the @log
decorator, simply import it from the Galileo package and apply it to your functions:
Span Types
By default, the @log
decorator creates a workflow span, but you can specify different span types depending on what your function does:
Span Type Descriptions
- Workflow: A span that can have child spans, useful for nesting several child spans to denote a thread within a trace. If you add the
@log
decorator to a parent method, calls that are made within that scope are automatically logged in the same trace. - Llm: Captures the input, output, and settings of an LLM call. This span gets automatically created when our client library wrappers (OpenAI and Anthropic) are used. Cannot have nested children.
- Retriever: Contains the output documents of a retrieval operation. Useful for tracking what documents were retrieved in RAG applications.
- Tool: Captures the input and output of a tool call. Used to decorate functions that are invoked as tools in agent-based systems.
Nested Spans Example
One of the most powerful features of the @log
decorator is its ability to create nested spans, which helps visualize the flow of your application:
Additional Parameters
The @log
decorator accepts several optional parameters to customize the logging behavior:
Context Management
You can also use the galileo_context
to set the project and log stream for all decorated functions within its scope:
Handling Generators
The @log
decorator also works with generator functions, both synchronous and asynchronous:
Best Practices
-
Decorate high-level functions: For the clearest traces, decorate the highest-level functions that encompass meaningful units of work.
-
Use appropriate span types: Choose the span type that best represents what your function does.
-
Combine with wrappers: The
@log
decorator works seamlessly with Galileo’s wrappers, allowing you to create rich, nested traces. -
Add meaningful tags: Use the
params
parameter to add metadata that will make it easier to filter and analyze your traces later. -
Be mindful of performance: While the decorator adds minimal overhead, be cautious about decorating very frequently called or performance-critical functions.
Related Resources
- GalileoLogger - For more manual control over logging
- OpenAI Wrapper - For automatic logging of OpenAI calls
- Langchain Integration - For logging Langchain workflows
- galileo_context - For managing trace context and automatic flushing