importlogfirelogfire.instrument_pydantic()# Defaults to record='all'
Note that if you only use the last option then only model classes defined and imported after calling logfire.instrument_pydantic
will be instrumented.
Note
Remember to call logfire.configure() at some point, whether before or after
calling logfire.instrument_pydantic and defining model classes.
Model validations will only start being logged after calling logfire.configure().
By default, third party modules are not instrumented by the plugin to avoid noise. You can enable instrumentation for those
using the include configuration.
logfire.instrument_pydantic(include={'openai'})
You can also disable instrumentation for your own modules using the
exclude configuration.