mirror of
https://github.com/karpathy/nanochat.git
synced 2025-12-06 04:12:13 +00:00
8 lines
210 B
Python
8 lines
210 B
Python
import inspect
|
|
from kfp import dsl
|
|
|
|
try:
|
|
print("Available methods:", [m for m in dir(dsl.PipelineTask) if 'pod' in m or 'label' in m or 'annotation' in m or 'env' in m])
|
|
except Exception as e:
|
|
print(e)
|