currently I basically need to define a seperate wrapper function with Attachment parameters just to store the attachments.
This adds wrapper functions and complication to my codebase, and makes it hard to use the traceable decorator directly on a fastapi route for example.
Feature request
so what i would like to do is the following inside a function that has a
traceable
decorator:but that currently does not work and the attachments do not show up in the dashboard.
So this this current example from the docs does work:
but this does not:
Motivation
currently I basically need to define a seperate wrapper function with
Attachment
parameters just to store the attachments. This adds wrapper functions and complication to my codebase, and makes it hard to use the traceable decorator directly on a fastapi route for example.