Hi! Is it possible to add `compute_kind` when usin...
# ask-community
j
Hi! Is it possible to add
compute_kind
when using the method
AssetsDefinition.from_op
? Thanks
🤖 1
p
Hi Jordan! Would it work to add a
kind
tag to your op, directly?
Copy code
@op(tags={"kind": "foo"})
def my_op():
    pass

my_asset = AssetDefinition.from_op(my_op)
j
Perfect, thanks !