wandb 0.19.10__py3-none-win_amd64.whl → 0.19.11__py3-none-win_amd64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- wandb/__init__.py +1 -1
- wandb/__init__.pyi +3 -3
- wandb/_pydantic/__init__.py +2 -3
- wandb/_pydantic/base.py +11 -31
- wandb/_pydantic/utils.py +8 -1
- wandb/_pydantic/v1_compat.py +3 -3
- wandb/apis/public/api.py +590 -22
- wandb/apis/public/artifacts.py +13 -5
- wandb/apis/public/automations.py +1 -1
- wandb/apis/public/integrations.py +22 -10
- wandb/apis/public/registries/__init__.py +0 -0
- wandb/apis/public/registries/_freezable_list.py +179 -0
- wandb/apis/public/{registries.py → registries/registries_search.py} +22 -129
- wandb/apis/public/registries/registry.py +357 -0
- wandb/apis/public/registries/utils.py +140 -0
- wandb/apis/public/runs.py +58 -56
- wandb/automations/__init__.py +16 -24
- wandb/automations/_filters/expressions.py +12 -10
- wandb/automations/_filters/operators.py +10 -19
- wandb/automations/_filters/run_metrics.py +231 -82
- wandb/automations/_generated/__init__.py +27 -34
- wandb/automations/_generated/create_automation.py +17 -0
- wandb/automations/_generated/delete_automation.py +17 -0
- wandb/automations/_generated/fragments.py +40 -25
- wandb/automations/_generated/{get_triggers.py → get_automations.py} +5 -5
- wandb/automations/_generated/get_automations_by_entity.py +26 -0
- wandb/automations/_generated/operations.py +35 -98
- wandb/automations/_generated/update_automation.py +17 -0
- wandb/automations/_utils.py +178 -64
- wandb/automations/_validators.py +94 -2
- wandb/automations/actions.py +113 -98
- wandb/automations/automations.py +47 -69
- wandb/automations/events.py +139 -87
- wandb/automations/integrations.py +23 -4
- wandb/automations/scopes.py +22 -20
- wandb/bin/gpu_stats.exe +0 -0
- wandb/bin/wandb-core +0 -0
- wandb/env.py +11 -0
- wandb/old/settings.py +4 -1
- wandb/proto/v3/wandb_internal_pb2.py +240 -236
- wandb/proto/v3/wandb_telemetry_pb2.py +10 -10
- wandb/proto/v4/wandb_internal_pb2.py +236 -236
- wandb/proto/v4/wandb_telemetry_pb2.py +10 -10
- wandb/proto/v5/wandb_internal_pb2.py +236 -236
- wandb/proto/v5/wandb_telemetry_pb2.py +10 -10
- wandb/proto/v6/wandb_internal_pb2.py +236 -236
- wandb/proto/v6/wandb_telemetry_pb2.py +10 -10
- wandb/sdk/artifacts/_generated/__init__.py +42 -1
- wandb/sdk/artifacts/_generated/add_aliases.py +21 -0
- wandb/sdk/artifacts/_generated/delete_aliases.py +21 -0
- wandb/sdk/artifacts/_generated/fetch_linked_artifacts.py +67 -0
- wandb/sdk/artifacts/_generated/fragments.py +35 -0
- wandb/sdk/artifacts/_generated/input_types.py +12 -0
- wandb/sdk/artifacts/_generated/operations.py +101 -0
- wandb/sdk/artifacts/_generated/update_artifact.py +26 -0
- wandb/sdk/artifacts/_graphql_fragments.py +1 -0
- wandb/sdk/artifacts/_validators.py +120 -1
- wandb/sdk/artifacts/artifact.py +380 -203
- wandb/sdk/artifacts/artifact_file_cache.py +4 -6
- wandb/sdk/artifacts/artifact_manifest_entry.py +11 -2
- wandb/sdk/artifacts/storage_policies/wandb_storage_policy.py +182 -1
- wandb/sdk/artifacts/storage_policy.py +3 -0
- wandb/sdk/data_types/video.py +46 -32
- wandb/sdk/interface/interface.py +2 -3
- wandb/sdk/internal/internal_api.py +21 -31
- wandb/sdk/internal/sender.py +5 -2
- wandb/sdk/launch/sweeps/utils.py +8 -0
- wandb/sdk/projects/_generated/__init__.py +47 -0
- wandb/sdk/projects/_generated/delete_project.py +22 -0
- wandb/sdk/projects/_generated/enums.py +4 -0
- wandb/sdk/projects/_generated/fetch_registry.py +22 -0
- wandb/sdk/projects/_generated/fragments.py +41 -0
- wandb/sdk/projects/_generated/input_types.py +13 -0
- wandb/sdk/projects/_generated/operations.py +88 -0
- wandb/sdk/projects/_generated/rename_project.py +27 -0
- wandb/sdk/projects/_generated/upsert_registry_project.py +27 -0
- wandb/sdk/service/service.py +9 -1
- wandb/sdk/wandb_init.py +32 -5
- wandb/sdk/wandb_run.py +37 -9
- wandb/sdk/wandb_settings.py +6 -7
- wandb/sdk/wandb_setup.py +12 -0
- wandb/util.py +7 -3
- {wandb-0.19.10.dist-info → wandb-0.19.11.dist-info}/METADATA +1 -1
- {wandb-0.19.10.dist-info → wandb-0.19.11.dist-info}/RECORD +87 -70
- wandb/automations/_generated/create_filter_trigger.py +0 -21
- wandb/automations/_generated/delete_trigger.py +0 -19
- wandb/automations/_generated/get_triggers_by_entity.py +0 -24
- wandb/automations/_generated/update_filter_trigger.py +0 -21
- {wandb-0.19.10.dist-info → wandb-0.19.11.dist-info}/WHEEL +0 -0
- {wandb-0.19.10.dist-info → wandb-0.19.11.dist-info}/entry_points.txt +0 -0
- {wandb-0.19.10.dist-info → wandb-0.19.11.dist-info}/licenses/LICENSE +0 -0
@@ -25,7 +25,7 @@ _sym_db = _symbol_database.Default()
|
|
25
25
|
from wandb.proto import wandb_base_pb2 as wandb_dot_proto_dot_wandb__base__pb2
|
26
26
|
|
27
27
|
|
28
|
-
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n!wandb/proto/wandb_telemetry.proto\x12\x0ewandb_internal\x1a\x1cwandb/proto/wandb_base.proto\"\xdb\x03\n\x0fTelemetryRecord\x12-\n\x0cimports_init\x18\x01 \x01(\x0b\x32\x17.wandb_internal.Imports\x12/\n\x0eimports_finish\x18\x02 \x01(\x0b\x32\x17.wandb_internal.Imports\x12(\n\x07\x66\x65\x61ture\x18\x03 \x01(\x0b\x32\x17.wandb_internal.Feature\x12\x16\n\x0epython_version\x18\x04 \x01(\t\x12\x13\n\x0b\x63li_version\x18\x05 \x01(\t\x12\x1b\n\x13huggingface_version\x18\x06 \x01(\t\x12 \n\x03\x65nv\x18\x08 \x01(\x0b\x32\x13.wandb_internal.Env\x12%\n\x05label\x18\t \x01(\x0b\x32\x16.wandb_internal.Labels\x12.\n\ndeprecated\x18\n \x01(\x0b\x32\x1a.wandb_internal.Deprecated\x12&\n\x06issues\x18\x0b \x01(\x0b\x32\x16.wandb_internal.Issues\x12\x14\n\x0c\x63ore_version\x18\x0c \x01(\t\x12\x10\n\x08platform\x18\r \x01(\t\x12+\n\x05_info\x18\xc8\x01 \x01(\x0b\x32\x1b.wandb_internal._RecordInfo\"\x11\n\x0fTelemetryResult\"\xf5\r\n\x07Imports\x12\r\n\x05torch\x18\x01 \x01(\x08\x12\r\n\x05keras\x18\x02 \x01(\x08\x12\x12\n\ntensorflow\x18\x03 \x01(\x08\x12\x0e\n\x06\x66\x61stai\x18\x04 \x01(\x08\x12\x0f\n\x07sklearn\x18\x05 \x01(\x08\x12\x0f\n\x07xgboost\x18\x06 \x01(\x08\x12\x10\n\x08\x63\x61tboost\x18\x07 \x01(\x08\x12\x10\n\x08lightgbm\x18\x08 \x01(\x08\x12\x19\n\x11pytorch_lightning\x18\t \x01(\x08\x12\x0e\n\x06ignite\x18\n \x01(\x08\x12\x14\n\x0ctransformers\x18\x0b \x01(\x08\x12\x0b\n\x03jax\x18\x0c \x01(\x08\x12\x10\n\x08metaflow\x18\r \x01(\x08\x12\x10\n\x08\x61llennlp\x18\x0e \x01(\x08\x12\x11\n\tautogluon\x18\x0f \x01(\x08\x12\x11\n\tautokeras\x18\x10 \x01(\x08\x12\x10\n\x08\x63\x61talyst\x18\x12 \x01(\x08\x12\x10\n\x08\x64\x65\x65pchem\x18\x15 \x01(\x08\x12\x0f\n\x07\x64\x65\x65pctr\x18\x16 \x01(\x08\x12\x0f\n\x07pycaret\x18\x1c \x01(\x08\x12\x14\n\x0cpytorchvideo\x18\x1d \x01(\x08\x12\x0b\n\x03ray\x18\x1e \x01(\x08\x12\x1a\n\x12simpletransformers\x18\x1f \x01(\x08\x12\x0e\n\x06skorch\x18 \x01(\x08\x12\r\n\x05spacy\x18! \x01(\x08\x12\r\n\x05\x66lash\x18\" \x01(\x08\x12\x0e\n\x06optuna\x18# \x01(\x08\x12\x0f\n\x07recbole\x18$ \x01(\x08\x12\x0c\n\x04mmcv\x18% \x01(\x08\x12\r\n\x05mmdet\x18& \x01(\x08\x12\x11\n\ttorchdrug\x18\' \x01(\x08\x12\x11\n\ttorchtext\x18( \x01(\x08\x12\x13\n\x0btorchvision\x18) \x01(\x08\x12\r\n\x05\x65legy\x18* \x01(\x08\x12\x12\n\ndetectron2\x18+ \x01(\x08\x12\r\n\x05\x66lair\x18, \x01(\x08\x12\x0c\n\x04\x66lax\x18- \x01(\x08\x12\x0c\n\x04syft\x18. \x01(\x08\x12\x0b\n\x03TTS\x18/ \x01(\x08\x12\r\n\x05monai\x18\x30 \x01(\x08\x12\x17\n\x0fhuggingface_hub\x18\x31 \x01(\x08\x12\r\n\x05hydra\x18\x32 \x01(\x08\x12\x10\n\x08\x64\x61tasets\x18\x33 \x01(\x08\x12\x0e\n\x06sacred\x18\x34 \x01(\x08\x12\x0e\n\x06joblib\x18\x35 \x01(\x08\x12\x0c\n\x04\x64\x61sk\x18\x36 \x01(\x08\x12\x0f\n\x07\x61syncio\x18\x37 \x01(\x08\x12\x11\n\tpaddleocr\x18\x38 \x01(\x08\x12\r\n\x05ppdet\x18\x39 \x01(\x08\x12\x11\n\tpaddleseg\x18: \x01(\x08\x12\x11\n\tpaddlenlp\x18; \x01(\x08\x12\r\n\x05mmseg\x18< \x01(\x08\x12\r\n\x05mmocr\x18= \x01(\x08\x12\r\n\x05mmcls\x18> \x01(\x08\x12\x0c\n\x04timm\x18? \x01(\x08\x12\x0f\n\x07\x66\x61irseq\x18@ \x01(\x08\x12\x12\n\ndeepchecks\x18\x41 \x01(\x08\x12\x10\n\x08\x63omposer\x18\x42 \x01(\x08\x12\x10\n\x08sparseml\x18\x43 \x01(\x08\x12\x10\n\x08\x61nomalib\x18\x44 \x01(\x08\x12\r\n\x05zenml\x18\x45 \x01(\x08\x12\x12\n\ncolossalai\x18\x46 \x01(\x08\x12\x12\n\naccelerate\x18G \x01(\x08\x12\x0e\n\x06merlin\x18H \x01(\x08\x12\x0f\n\x07nanodet\x18I \x01(\x08\x12#\n\x1bsegmentation_models_pytorch\x18J \x01(\x08\x12\x1d\n\x15sentence_transformers\x18K \x01(\x08\x12\x0b\n\x03\x64gl\x18L \x01(\x08\x12\x17\n\x0ftorch_geometric\x18M \x01(\x08\x12\x0c\n\x04jina\x18N \x01(\x08\x12\x0e\n\x06kornia\x18O \x01(\x08\x12\x16\n\x0e\x61lbumentations\x18P \x01(\x08\x12\x10\n\x08keras_cv\x18Q \x01(\x08\x12\x10\n\x08mmengine\x18R \x01(\x08\x12\x11\n\tdiffusers\x18S \x01(\x08\x12\x0b\n\x03trl\x18T \x01(\x08\x12\x0c\n\x04trlx\x18U \x01(\x08\x12\x11\n\tlangchain\x18V \x01(\x08\x12\x13\n\x0bllama_index\x18W \x01(\x08\x12\x15\n\rstability_sdk\x18X \x01(\x08\x12\x0f\n\x07prefect\x18Y \x01(\x08\x12\x13\n\x0bprefect_ray\x18Z \x01(\x08\x12\x10\n\x08pinecone\x18[ \x01(\x08\x12\x10\n\x08\x63hromadb\x18\\ \x01(\x08\x12\x10\n\x08weaviate\x18] \x01(\x08\x12\x13\n\x0bpromptlayer\x18^ \x01(\x08\x12\x0e\n\x06openai\x18_ \x01(\x08\x12\x0e\n\x06\x63ohere\x18` \x01(\x08\x12\x11\n\tanthropic\x18\x61 \x01(\x08\x12\x0c\n\x04peft\x18\x62 \x01(\x08\x12\x0f\n\x07optimum\x18\x63 \x01(\x08\x12\x10\n\x08\x65valuate\x18\x64 \x01(\x08\x12\x10\n\x08langflow\x18\x65 \x01(\x08\x12\x12\n\nkeras_core\x18\x66 \x01(\x08\x12\x18\n\x10lightning_fabric\x18g \x01(\x08\x12\x1c\n\x14\x63urated_transformers\x18h \x01(\x08\x12\x0e\n\x06orjson\x18i \x01(\x08\x12\x11\n\tlightning\x18j \x01(\x08\"\xf4\x0c\n\x07\x46\x65\x61ture\x12\r\n\x05watch\x18\x01 \x01(\x08\x12\x0e\n\x06\x66inish\x18\x02 \x01(\x08\x12\x0c\n\x04save\x18\x03 \x01(\x08\x12\x0f\n\x07offline\x18\x04 \x01(\x08\x12\x0f\n\x07resumed\x18\x05 \x01(\x08\x12\x0c\n\x04grpc\x18\x06 \x01(\x08\x12\x0e\n\x06metric\x18\x07 \x01(\x08\x12\r\n\x05keras\x18\x08 \x01(\x08\x12\x11\n\tsagemaker\x18\t \x01(\x08\x12\x1c\n\x14\x61rtifact_incremental\x18\n \x01(\x08\x12\x10\n\x08metaflow\x18\x0b \x01(\x08\x12\x0f\n\x07prodigy\x18\x0c \x01(\x08\x12\x15\n\rset_init_name\x18\r \x01(\x08\x12\x13\n\x0bset_init_id\x18\x0e \x01(\x08\x12\x15\n\rset_init_tags\x18\x0f \x01(\x08\x12\x17\n\x0fset_init_config\x18\x10 \x01(\x08\x12\x14\n\x0cset_run_name\x18\x11 \x01(\x08\x12\x14\n\x0cset_run_tags\x18\x12 \x01(\x08\x12\x17\n\x0fset_config_item\x18\x13 \x01(\x08\x12\x0e\n\x06launch\x18\x14 \x01(\x08\x12\x1c\n\x14torch_profiler_trace\x18\x15 \x01(\x08\x12\x0b\n\x03sb3\x18\x16 \x01(\x08\x12\x0f\n\x07service\x18\x17 \x01(\x08\x12\x17\n\x0finit_return_run\x18\x18 \x01(\x08\x12\x1f\n\x17lightgbm_wandb_callback\x18\x19 \x01(\x08\x12\x1c\n\x14lightgbm_log_summary\x18\x1a \x01(\x08\x12\x1f\n\x17\x63\x61tboost_wandb_callback\x18\x1b \x01(\x08\x12\x1c\n\x14\x63\x61tboost_log_summary\x18\x1c \x01(\x08\x12\x17\n\x0ftensorboard_log\x18\x1d \x01(\x08\x12\x16\n\x0e\x65stimator_hook\x18\x1e \x01(\x08\x12\x1e\n\x16xgboost_wandb_callback\x18\x1f \x01(\x08\x12\"\n\x1axgboost_old_wandb_callback\x18 \x01(\x08\x12\x0e\n\x06\x61ttach\x18! \x01(\x08\x12\x19\n\x11tensorboard_patch\x18\" \x01(\x08\x12\x18\n\x10tensorboard_sync\x18# \x01(\x08\x12\x15\n\rkfp_wandb_log\x18$ \x01(\x08\x12\x1b\n\x13maybe_run_overwrite\x18% \x01(\x08\x12\x1c\n\x14keras_metrics_logger\x18& \x01(\x08\x12\x1e\n\x16keras_model_checkpoint\x18\' \x01(\x08\x12!\n\x19keras_wandb_eval_callback\x18( \x01(\x08\x12\x1d\n\x15\x66low_control_overflow\x18) \x01(\x08\x12\x0c\n\x04sync\x18* \x01(\x08\x12\x1d\n\x15\x66low_control_disabled\x18+ \x01(\x08\x12\x1b\n\x13\x66low_control_custom\x18, \x01(\x08\x12\x18\n\x10service_disabled\x18- \x01(\x08\x12\x14\n\x0copen_metrics\x18. \x01(\x08\x12\x1a\n\x12ultralytics_yolov8\x18/ \x01(\x08\x12\x17\n\x0fimporter_mlflow\x18\x30 \x01(\x08\x12\x15\n\rsync_tfevents\x18\x31 \x01(\x08\x12\x15\n\rasync_uploads\x18\x32 \x01(\x08\x12\x16\n\x0eopenai_autolog\x18\x33 \x01(\x08\x12\x18\n\x10langchain_tracer\x18\x34 \x01(\x08\x12\x16\n\x0e\x63ohere_autolog\x18\x35 \x01(\x08\x12\x1b\n\x13hf_pipeline_autolog\x18\x36 \x01(\x08\x12\x0c\n\x04\x63ore\x18\x37 \x01(\x08\x12\r\n\x05lib_c\x18\x38 \x01(\x08\x12\x0f\n\x07lib_cpp\x18\x39 \x01(\x08\x12\x19\n\x11openai_finetuning\x18: \x01(\x08\x12\x19\n\x11\x64iffusers_autolog\x18; \x01(\x08\x12\x1f\n\x17lightning_fabric_logger\x18< \x01(\x08\x12\x14\n\x0cset_step_log\x18= \x01(\x08\x12\x13\n\x0bset_summary\x18> \x01(\x08\x12\x16\n\x0emetric_summary\x18? \x01(\x08\x12\x13\n\x0bmetric_goal\x18@ \x01(\x08\x12\x15\n\rmetric_hidden\x18\x41 \x01(\x08\x12\x18\n\x10metric_step_sync\x18\x42 \x01(\x08\x12\x13\n\x0bshared_mode\x18\x43 \x01(\x08\x12#\n\x1bserver_side_derived_summary\x18\x44 \x01(\x08\x12\x1b\n\x13user_provided_label\x18\x45 \x01(\x08\"\x96\x02\n\x03\x45nv\x12\x0f\n\x07jupyter\x18\x01 \x01(\x08\x12\x0e\n\x06kaggle\x18\x02 \x01(\x08\x12\x0f\n\x07windows\x18\x03 \x01(\x08\x12\x0e\n\x06m1_gpu\x18\x04 \x01(\x08\x12\x13\n\x0bstart_spawn\x18\x05 \x01(\x08\x12\x12\n\nstart_fork\x18\x06 \x01(\x08\x12\x18\n\x10start_forkserver\x18\x07 \x01(\x08\x12\x14\n\x0cstart_thread\x18\x08 \x01(\x08\x12\x10\n\x08maybe_mp\x18\t \x01(\x08\x12\x10\n\x08trainium\x18\n \x01(\x08\x12\x0b\n\x03pex\x18\x0b \x01(\x08\x12\r\n\x05\x63olab\x18\x0c \x01(\x08\x12\x0f\n\x07ipython\x18\r \x01(\x08\x12\x12\n\naws_lambda\x18\x0e \x01(\x08\x12\x0f\n\x07\x61md_gpu\x18\x0f \x01(\x08\"H\n\x06Labels\x12\x13\n\x0b\x63ode_string\x18\x01 \x01(\t\x12\x13\n\x0brepo_string\x18\x02 \x01(\t\x12\x14\n\x0c\x63ode_version\x18\x03 \x01(\t\"\xba\x05\n\nDeprecated\x12!\n\x19keras_callback__data_type\x18\x01 \x01(\x08\x12\x11\n\trun__mode\x18\x02 \x01(\x08\x12\x19\n\x11run__save_no_args\x18\x03 \x01(\x08\x12\x11\n\trun__join\x18\x04 \x01(\x08\x12\r\n\x05plots\x18\x05 \x01(\x08\x12\x15\n\rrun__log_sync\x18\x06 \x01(\x08\x12!\n\x19init__config_include_keys\x18\x07 \x01(\x08\x12!\n\x19init__config_exclude_keys\x18\x08 \x01(\x08\x12\"\n\x1akeras_callback__save_model\x18\t \x01(\x08\x12\x18\n\x10langchain_tracer\x18\n \x01(\x08\x12\x1a\n\x12\x61rtifact__get_path\x18\x0b \x01(\x08\x12#\n\x1b\x61rtifactmanifestentry__name\x18\x0c \x01(\x08\x12\x1e\n\x16\x61pi__artifact_versions\x18\r \x01(\x08\x12(\n artifact_collection__change_type\x18\x0e \x01(\x08\x12\x1f\n\x17run__define_metric_copy\x18\x0f \x01(\x08\x12\x14\n\x0crun_disabled\x18\x10 \x01(\x08\x12\x16\n\x0ekeras_callback\x18\x11 \x01(\x08\x12$\n\x1crun__define_metric_best_goal\x18\x12 \x01(\x08\x12\x19\n\x11run__finish_quiet\x18\x13 \x01(\x08\x12\x18\n\x10run__reinit_bool\x18\x14 \x01(\x08\x12\x14\n\x0crun__get_url\x18\x15 \x01(\x08\x12\x19\n\x11run__project_name\x18\x16 \x01(\x08\x12\x1c\n\x14run__get_project_url\x18\x17 \x01(\x08\x12\x1a\n\x12run__get_sweep_url\x18\x18 \x01(\x08\"|\n\x06Issues\x12%\n\x1dsettings__validation_warnings\x18\x01 \x01(\x08\x12!\n\x19settings__unexpected_args\x18\x02 \x01(\x08\x12(\n settings__preprocessing_warnings\x18\x03 \x01(\x08\x42\x1bZ\x19\x63ore/pkg/service_go_protob\x06proto3')
|
28
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n!wandb/proto/wandb_telemetry.proto\x12\x0ewandb_internal\x1a\x1cwandb/proto/wandb_base.proto\"\xdb\x03\n\x0fTelemetryRecord\x12-\n\x0cimports_init\x18\x01 \x01(\x0b\x32\x17.wandb_internal.Imports\x12/\n\x0eimports_finish\x18\x02 \x01(\x0b\x32\x17.wandb_internal.Imports\x12(\n\x07\x66\x65\x61ture\x18\x03 \x01(\x0b\x32\x17.wandb_internal.Feature\x12\x16\n\x0epython_version\x18\x04 \x01(\t\x12\x13\n\x0b\x63li_version\x18\x05 \x01(\t\x12\x1b\n\x13huggingface_version\x18\x06 \x01(\t\x12 \n\x03\x65nv\x18\x08 \x01(\x0b\x32\x13.wandb_internal.Env\x12%\n\x05label\x18\t \x01(\x0b\x32\x16.wandb_internal.Labels\x12.\n\ndeprecated\x18\n \x01(\x0b\x32\x1a.wandb_internal.Deprecated\x12&\n\x06issues\x18\x0b \x01(\x0b\x32\x16.wandb_internal.Issues\x12\x14\n\x0c\x63ore_version\x18\x0c \x01(\t\x12\x10\n\x08platform\x18\r \x01(\t\x12+\n\x05_info\x18\xc8\x01 \x01(\x0b\x32\x1b.wandb_internal._RecordInfo\"\x11\n\x0fTelemetryResult\"\xf5\r\n\x07Imports\x12\r\n\x05torch\x18\x01 \x01(\x08\x12\r\n\x05keras\x18\x02 \x01(\x08\x12\x12\n\ntensorflow\x18\x03 \x01(\x08\x12\x0e\n\x06\x66\x61stai\x18\x04 \x01(\x08\x12\x0f\n\x07sklearn\x18\x05 \x01(\x08\x12\x0f\n\x07xgboost\x18\x06 \x01(\x08\x12\x10\n\x08\x63\x61tboost\x18\x07 \x01(\x08\x12\x10\n\x08lightgbm\x18\x08 \x01(\x08\x12\x19\n\x11pytorch_lightning\x18\t \x01(\x08\x12\x0e\n\x06ignite\x18\n \x01(\x08\x12\x14\n\x0ctransformers\x18\x0b \x01(\x08\x12\x0b\n\x03jax\x18\x0c \x01(\x08\x12\x10\n\x08metaflow\x18\r \x01(\x08\x12\x10\n\x08\x61llennlp\x18\x0e \x01(\x08\x12\x11\n\tautogluon\x18\x0f \x01(\x08\x12\x11\n\tautokeras\x18\x10 \x01(\x08\x12\x10\n\x08\x63\x61talyst\x18\x12 \x01(\x08\x12\x10\n\x08\x64\x65\x65pchem\x18\x15 \x01(\x08\x12\x0f\n\x07\x64\x65\x65pctr\x18\x16 \x01(\x08\x12\x0f\n\x07pycaret\x18\x1c \x01(\x08\x12\x14\n\x0cpytorchvideo\x18\x1d \x01(\x08\x12\x0b\n\x03ray\x18\x1e \x01(\x08\x12\x1a\n\x12simpletransformers\x18\x1f \x01(\x08\x12\x0e\n\x06skorch\x18 \x01(\x08\x12\r\n\x05spacy\x18! \x01(\x08\x12\r\n\x05\x66lash\x18\" \x01(\x08\x12\x0e\n\x06optuna\x18# \x01(\x08\x12\x0f\n\x07recbole\x18$ \x01(\x08\x12\x0c\n\x04mmcv\x18% \x01(\x08\x12\r\n\x05mmdet\x18& \x01(\x08\x12\x11\n\ttorchdrug\x18\' \x01(\x08\x12\x11\n\ttorchtext\x18( \x01(\x08\x12\x13\n\x0btorchvision\x18) \x01(\x08\x12\r\n\x05\x65legy\x18* \x01(\x08\x12\x12\n\ndetectron2\x18+ \x01(\x08\x12\r\n\x05\x66lair\x18, \x01(\x08\x12\x0c\n\x04\x66lax\x18- \x01(\x08\x12\x0c\n\x04syft\x18. \x01(\x08\x12\x0b\n\x03TTS\x18/ \x01(\x08\x12\r\n\x05monai\x18\x30 \x01(\x08\x12\x17\n\x0fhuggingface_hub\x18\x31 \x01(\x08\x12\r\n\x05hydra\x18\x32 \x01(\x08\x12\x10\n\x08\x64\x61tasets\x18\x33 \x01(\x08\x12\x0e\n\x06sacred\x18\x34 \x01(\x08\x12\x0e\n\x06joblib\x18\x35 \x01(\x08\x12\x0c\n\x04\x64\x61sk\x18\x36 \x01(\x08\x12\x0f\n\x07\x61syncio\x18\x37 \x01(\x08\x12\x11\n\tpaddleocr\x18\x38 \x01(\x08\x12\r\n\x05ppdet\x18\x39 \x01(\x08\x12\x11\n\tpaddleseg\x18: \x01(\x08\x12\x11\n\tpaddlenlp\x18; \x01(\x08\x12\r\n\x05mmseg\x18< \x01(\x08\x12\r\n\x05mmocr\x18= \x01(\x08\x12\r\n\x05mmcls\x18> \x01(\x08\x12\x0c\n\x04timm\x18? \x01(\x08\x12\x0f\n\x07\x66\x61irseq\x18@ \x01(\x08\x12\x12\n\ndeepchecks\x18\x41 \x01(\x08\x12\x10\n\x08\x63omposer\x18\x42 \x01(\x08\x12\x10\n\x08sparseml\x18\x43 \x01(\x08\x12\x10\n\x08\x61nomalib\x18\x44 \x01(\x08\x12\r\n\x05zenml\x18\x45 \x01(\x08\x12\x12\n\ncolossalai\x18\x46 \x01(\x08\x12\x12\n\naccelerate\x18G \x01(\x08\x12\x0e\n\x06merlin\x18H \x01(\x08\x12\x0f\n\x07nanodet\x18I \x01(\x08\x12#\n\x1bsegmentation_models_pytorch\x18J \x01(\x08\x12\x1d\n\x15sentence_transformers\x18K \x01(\x08\x12\x0b\n\x03\x64gl\x18L \x01(\x08\x12\x17\n\x0ftorch_geometric\x18M \x01(\x08\x12\x0c\n\x04jina\x18N \x01(\x08\x12\x0e\n\x06kornia\x18O \x01(\x08\x12\x16\n\x0e\x61lbumentations\x18P \x01(\x08\x12\x10\n\x08keras_cv\x18Q \x01(\x08\x12\x10\n\x08mmengine\x18R \x01(\x08\x12\x11\n\tdiffusers\x18S \x01(\x08\x12\x0b\n\x03trl\x18T \x01(\x08\x12\x0c\n\x04trlx\x18U \x01(\x08\x12\x11\n\tlangchain\x18V \x01(\x08\x12\x13\n\x0bllama_index\x18W \x01(\x08\x12\x15\n\rstability_sdk\x18X \x01(\x08\x12\x0f\n\x07prefect\x18Y \x01(\x08\x12\x13\n\x0bprefect_ray\x18Z \x01(\x08\x12\x10\n\x08pinecone\x18[ \x01(\x08\x12\x10\n\x08\x63hromadb\x18\\ \x01(\x08\x12\x10\n\x08weaviate\x18] \x01(\x08\x12\x13\n\x0bpromptlayer\x18^ \x01(\x08\x12\x0e\n\x06openai\x18_ \x01(\x08\x12\x0e\n\x06\x63ohere\x18` \x01(\x08\x12\x11\n\tanthropic\x18\x61 \x01(\x08\x12\x0c\n\x04peft\x18\x62 \x01(\x08\x12\x0f\n\x07optimum\x18\x63 \x01(\x08\x12\x10\n\x08\x65valuate\x18\x64 \x01(\x08\x12\x10\n\x08langflow\x18\x65 \x01(\x08\x12\x12\n\nkeras_core\x18\x66 \x01(\x08\x12\x18\n\x10lightning_fabric\x18g \x01(\x08\x12\x1c\n\x14\x63urated_transformers\x18h \x01(\x08\x12\x0e\n\x06orjson\x18i \x01(\x08\x12\x11\n\tlightning\x18j \x01(\x08\"\x94\r\n\x07\x46\x65\x61ture\x12\r\n\x05watch\x18\x01 \x01(\x08\x12\x0e\n\x06\x66inish\x18\x02 \x01(\x08\x12\x0c\n\x04save\x18\x03 \x01(\x08\x12\x0f\n\x07offline\x18\x04 \x01(\x08\x12\x0f\n\x07resumed\x18\x05 \x01(\x08\x12\x0c\n\x04grpc\x18\x06 \x01(\x08\x12\x0e\n\x06metric\x18\x07 \x01(\x08\x12\r\n\x05keras\x18\x08 \x01(\x08\x12\x11\n\tsagemaker\x18\t \x01(\x08\x12\x1c\n\x14\x61rtifact_incremental\x18\n \x01(\x08\x12\x10\n\x08metaflow\x18\x0b \x01(\x08\x12\x0f\n\x07prodigy\x18\x0c \x01(\x08\x12\x15\n\rset_init_name\x18\r \x01(\x08\x12\x13\n\x0bset_init_id\x18\x0e \x01(\x08\x12\x15\n\rset_init_tags\x18\x0f \x01(\x08\x12\x17\n\x0fset_init_config\x18\x10 \x01(\x08\x12\x14\n\x0cset_run_name\x18\x11 \x01(\x08\x12\x14\n\x0cset_run_tags\x18\x12 \x01(\x08\x12\x17\n\x0fset_config_item\x18\x13 \x01(\x08\x12\x0e\n\x06launch\x18\x14 \x01(\x08\x12\x1c\n\x14torch_profiler_trace\x18\x15 \x01(\x08\x12\x0b\n\x03sb3\x18\x16 \x01(\x08\x12\x0f\n\x07service\x18\x17 \x01(\x08\x12\x17\n\x0finit_return_run\x18\x18 \x01(\x08\x12\x1f\n\x17lightgbm_wandb_callback\x18\x19 \x01(\x08\x12\x1c\n\x14lightgbm_log_summary\x18\x1a \x01(\x08\x12\x1f\n\x17\x63\x61tboost_wandb_callback\x18\x1b \x01(\x08\x12\x1c\n\x14\x63\x61tboost_log_summary\x18\x1c \x01(\x08\x12\x17\n\x0ftensorboard_log\x18\x1d \x01(\x08\x12\x16\n\x0e\x65stimator_hook\x18\x1e \x01(\x08\x12\x1e\n\x16xgboost_wandb_callback\x18\x1f \x01(\x08\x12\"\n\x1axgboost_old_wandb_callback\x18 \x01(\x08\x12\x0e\n\x06\x61ttach\x18! \x01(\x08\x12\x19\n\x11tensorboard_patch\x18\" \x01(\x08\x12\x18\n\x10tensorboard_sync\x18# \x01(\x08\x12\x15\n\rkfp_wandb_log\x18$ \x01(\x08\x12\x1b\n\x13maybe_run_overwrite\x18% \x01(\x08\x12\x1c\n\x14keras_metrics_logger\x18& \x01(\x08\x12\x1e\n\x16keras_model_checkpoint\x18\' \x01(\x08\x12!\n\x19keras_wandb_eval_callback\x18( \x01(\x08\x12\x1d\n\x15\x66low_control_overflow\x18) \x01(\x08\x12\x0c\n\x04sync\x18* \x01(\x08\x12\x1d\n\x15\x66low_control_disabled\x18+ \x01(\x08\x12\x1b\n\x13\x66low_control_custom\x18, \x01(\x08\x12\x18\n\x10service_disabled\x18- \x01(\x08\x12\x14\n\x0copen_metrics\x18. \x01(\x08\x12\x1a\n\x12ultralytics_yolov8\x18/ \x01(\x08\x12\x17\n\x0fimporter_mlflow\x18\x30 \x01(\x08\x12\x15\n\rsync_tfevents\x18\x31 \x01(\x08\x12\x15\n\rasync_uploads\x18\x32 \x01(\x08\x12\x16\n\x0eopenai_autolog\x18\x33 \x01(\x08\x12\x18\n\x10langchain_tracer\x18\x34 \x01(\x08\x12\x16\n\x0e\x63ohere_autolog\x18\x35 \x01(\x08\x12\x1b\n\x13hf_pipeline_autolog\x18\x36 \x01(\x08\x12\x0c\n\x04\x63ore\x18\x37 \x01(\x08\x12\r\n\x05lib_c\x18\x38 \x01(\x08\x12\x0f\n\x07lib_cpp\x18\x39 \x01(\x08\x12\x19\n\x11openai_finetuning\x18: \x01(\x08\x12\x19\n\x11\x64iffusers_autolog\x18; \x01(\x08\x12\x1f\n\x17lightning_fabric_logger\x18< \x01(\x08\x12\x14\n\x0cset_step_log\x18= \x01(\x08\x12\x13\n\x0bset_summary\x18> \x01(\x08\x12\x16\n\x0emetric_summary\x18? \x01(\x08\x12\x13\n\x0bmetric_goal\x18@ \x01(\x08\x12\x15\n\rmetric_hidden\x18\x41 \x01(\x08\x12\x18\n\x10metric_step_sync\x18\x42 \x01(\x08\x12\x13\n\x0bshared_mode\x18\x43 \x01(\x08\x12#\n\x1bserver_side_derived_summary\x18\x44 \x01(\x08\x12\x1b\n\x13user_provided_label\x18\x45 \x01(\x08\x12\x1e\n\x16\x64\x63gm_profiling_enabled\x18\x46 \x01(\x08\"\x96\x02\n\x03\x45nv\x12\x0f\n\x07jupyter\x18\x01 \x01(\x08\x12\x0e\n\x06kaggle\x18\x02 \x01(\x08\x12\x0f\n\x07windows\x18\x03 \x01(\x08\x12\x0e\n\x06m1_gpu\x18\x04 \x01(\x08\x12\x13\n\x0bstart_spawn\x18\x05 \x01(\x08\x12\x12\n\nstart_fork\x18\x06 \x01(\x08\x12\x18\n\x10start_forkserver\x18\x07 \x01(\x08\x12\x14\n\x0cstart_thread\x18\x08 \x01(\x08\x12\x10\n\x08maybe_mp\x18\t \x01(\x08\x12\x10\n\x08trainium\x18\n \x01(\x08\x12\x0b\n\x03pex\x18\x0b \x01(\x08\x12\r\n\x05\x63olab\x18\x0c \x01(\x08\x12\x0f\n\x07ipython\x18\r \x01(\x08\x12\x12\n\naws_lambda\x18\x0e \x01(\x08\x12\x0f\n\x07\x61md_gpu\x18\x0f \x01(\x08\"H\n\x06Labels\x12\x13\n\x0b\x63ode_string\x18\x01 \x01(\t\x12\x13\n\x0brepo_string\x18\x02 \x01(\t\x12\x14\n\x0c\x63ode_version\x18\x03 \x01(\t\"\xba\x05\n\nDeprecated\x12!\n\x19keras_callback__data_type\x18\x01 \x01(\x08\x12\x11\n\trun__mode\x18\x02 \x01(\x08\x12\x19\n\x11run__save_no_args\x18\x03 \x01(\x08\x12\x11\n\trun__join\x18\x04 \x01(\x08\x12\r\n\x05plots\x18\x05 \x01(\x08\x12\x15\n\rrun__log_sync\x18\x06 \x01(\x08\x12!\n\x19init__config_include_keys\x18\x07 \x01(\x08\x12!\n\x19init__config_exclude_keys\x18\x08 \x01(\x08\x12\"\n\x1akeras_callback__save_model\x18\t \x01(\x08\x12\x18\n\x10langchain_tracer\x18\n \x01(\x08\x12\x1a\n\x12\x61rtifact__get_path\x18\x0b \x01(\x08\x12#\n\x1b\x61rtifactmanifestentry__name\x18\x0c \x01(\x08\x12\x1e\n\x16\x61pi__artifact_versions\x18\r \x01(\x08\x12(\n artifact_collection__change_type\x18\x0e \x01(\x08\x12\x1f\n\x17run__define_metric_copy\x18\x0f \x01(\x08\x12\x14\n\x0crun_disabled\x18\x10 \x01(\x08\x12\x16\n\x0ekeras_callback\x18\x11 \x01(\x08\x12$\n\x1crun__define_metric_best_goal\x18\x12 \x01(\x08\x12\x19\n\x11run__finish_quiet\x18\x13 \x01(\x08\x12\x18\n\x10run__reinit_bool\x18\x14 \x01(\x08\x12\x14\n\x0crun__get_url\x18\x15 \x01(\x08\x12\x19\n\x11run__project_name\x18\x16 \x01(\x08\x12\x1c\n\x14run__get_project_url\x18\x17 \x01(\x08\x12\x1a\n\x12run__get_sweep_url\x18\x18 \x01(\x08\"|\n\x06Issues\x12%\n\x1dsettings__validation_warnings\x18\x01 \x01(\x08\x12!\n\x19settings__unexpected_args\x18\x02 \x01(\x08\x12(\n settings__preprocessing_warnings\x18\x03 \x01(\x08\x42\x1bZ\x19\x63ore/pkg/service_go_protob\x06proto3')
|
29
29
|
|
30
30
|
_globals = globals()
|
31
31
|
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
@@ -40,13 +40,13 @@ if not _descriptor._USE_C_DESCRIPTORS:
|
|
40
40
|
_globals['_IMPORTS']._serialized_start=581
|
41
41
|
_globals['_IMPORTS']._serialized_end=2362
|
42
42
|
_globals['_FEATURE']._serialized_start=2365
|
43
|
-
_globals['_FEATURE']._serialized_end=
|
44
|
-
_globals['_ENV']._serialized_start=
|
45
|
-
_globals['_ENV']._serialized_end=
|
46
|
-
_globals['_LABELS']._serialized_start=
|
47
|
-
_globals['_LABELS']._serialized_end=
|
48
|
-
_globals['_DEPRECATED']._serialized_start=
|
49
|
-
_globals['_DEPRECATED']._serialized_end=
|
50
|
-
_globals['_ISSUES']._serialized_start=
|
51
|
-
_globals['_ISSUES']._serialized_end=
|
43
|
+
_globals['_FEATURE']._serialized_end=4049
|
44
|
+
_globals['_ENV']._serialized_start=4052
|
45
|
+
_globals['_ENV']._serialized_end=4330
|
46
|
+
_globals['_LABELS']._serialized_start=4332
|
47
|
+
_globals['_LABELS']._serialized_end=4404
|
48
|
+
_globals['_DEPRECATED']._serialized_start=4407
|
49
|
+
_globals['_DEPRECATED']._serialized_end=5105
|
50
|
+
_globals['_ISSUES']._serialized_start=5107
|
51
|
+
_globals['_ISSUES']._serialized_end=5231
|
52
52
|
# @@protoc_insertion_point(module_scope)
|
@@ -1,5 +1,6 @@
|
|
1
1
|
# Generated by ariadne-codegen
|
2
2
|
|
3
|
+
from .add_aliases import AddAliases, AddAliasesAddAliases
|
3
4
|
from .artifact_collection_membership_files import (
|
4
5
|
ArtifactCollectionMembershipFiles,
|
5
6
|
ArtifactCollectionMembershipFilesProject,
|
@@ -17,6 +18,7 @@ from .create_artifact_collection_tag_assignments import (
|
|
17
18
|
CreateArtifactCollectionTagAssignmentsCreateArtifactCollectionTagAssignments,
|
18
19
|
CreateArtifactCollectionTagAssignmentsCreateArtifactCollectionTagAssignmentsTags,
|
19
20
|
)
|
21
|
+
from .delete_aliases import DeleteAliases, DeleteAliasesDeleteAliases
|
20
22
|
from .delete_artifact_collection_tag_assignments import (
|
21
23
|
DeleteArtifactCollectionTagAssignments,
|
22
24
|
DeleteArtifactCollectionTagAssignmentsDeleteArtifactCollectionTagAssignments,
|
@@ -32,6 +34,16 @@ from .delete_artifact_sequence import (
|
|
32
34
|
DeleteArtifactSequenceDeleteArtifactSequenceArtifactCollection,
|
33
35
|
)
|
34
36
|
from .enums import ArtifactCollectionState, ArtifactState
|
37
|
+
from .fetch_linked_artifacts import (
|
38
|
+
FetchLinkedArtifacts,
|
39
|
+
FetchLinkedArtifactsArtifact,
|
40
|
+
FetchLinkedArtifactsArtifactArtifactMemberships,
|
41
|
+
FetchLinkedArtifactsArtifactArtifactMembershipsEdges,
|
42
|
+
FetchLinkedArtifactsArtifactArtifactMembershipsEdgesNode,
|
43
|
+
FetchLinkedArtifactsArtifactArtifactMembershipsEdgesNodeAliases,
|
44
|
+
FetchLinkedArtifactsArtifactArtifactMembershipsEdgesNodeArtifactCollection,
|
45
|
+
FetchLinkedArtifactsArtifactArtifactMembershipsEdgesNodeArtifactCollectionProject,
|
46
|
+
)
|
35
47
|
from .fragments import (
|
36
48
|
ArtifactCollectionsFragment,
|
37
49
|
ArtifactCollectionsFragmentEdges,
|
@@ -47,6 +59,8 @@ from .fragments import (
|
|
47
59
|
ArtifactFragmentCurrentManifest,
|
48
60
|
ArtifactFragmentCurrentManifestFile,
|
49
61
|
ArtifactFragmentTags,
|
62
|
+
ArtifactPortfolioTypeFields,
|
63
|
+
ArtifactSequenceTypeFields,
|
50
64
|
ArtifactsFragment,
|
51
65
|
ArtifactsFragmentEdges,
|
52
66
|
ArtifactsFragmentPageInfo,
|
@@ -59,19 +73,22 @@ from .fragments import (
|
|
59
73
|
FilesFragmentEdgesNode,
|
60
74
|
FilesFragmentPageInfo,
|
61
75
|
)
|
62
|
-
from .input_types import TagInput
|
76
|
+
from .input_types import ArtifactAliasInput, ArtifactCollectionAliasInput, TagInput
|
63
77
|
from .move_artifact_collection import (
|
64
78
|
MoveArtifactCollection,
|
65
79
|
MoveArtifactCollectionMoveArtifactSequence,
|
66
80
|
MoveArtifactCollectionMoveArtifactSequenceArtifactCollection,
|
67
81
|
)
|
68
82
|
from .operations import (
|
83
|
+
ADD_ALIASES_GQL,
|
69
84
|
ARTIFACT_COLLECTION_MEMBERSHIP_FILES_GQL,
|
70
85
|
ARTIFACT_VERSION_FILES_GQL,
|
71
86
|
CREATE_ARTIFACT_COLLECTION_TAG_ASSIGNMENTS_GQL,
|
87
|
+
DELETE_ALIASES_GQL,
|
72
88
|
DELETE_ARTIFACT_COLLECTION_TAG_ASSIGNMENTS_GQL,
|
73
89
|
DELETE_ARTIFACT_PORTFOLIO_GQL,
|
74
90
|
DELETE_ARTIFACT_SEQUENCE_GQL,
|
91
|
+
FETCH_LINKED_ARTIFACTS_GQL,
|
75
92
|
MOVE_ARTIFACT_COLLECTION_GQL,
|
76
93
|
PROJECT_ARTIFACT_COLLECTION_GQL,
|
77
94
|
PROJECT_ARTIFACT_COLLECTIONS_GQL,
|
@@ -80,6 +97,7 @@ from .operations import (
|
|
80
97
|
PROJECT_ARTIFACTS_GQL,
|
81
98
|
RUN_INPUT_ARTIFACTS_GQL,
|
82
99
|
RUN_OUTPUT_ARTIFACTS_GQL,
|
100
|
+
UPDATE_ARTIFACT_GQL,
|
83
101
|
UPDATE_ARTIFACT_PORTFOLIO_GQL,
|
84
102
|
UPDATE_ARTIFACT_SEQUENCE_GQL,
|
85
103
|
)
|
@@ -126,6 +144,7 @@ from .run_output_artifacts import (
|
|
126
144
|
RunOutputArtifactsProjectRunOutputArtifactsEdges,
|
127
145
|
RunOutputArtifactsProjectRunOutputArtifactsPageInfo,
|
128
146
|
)
|
147
|
+
from .update_artifact import UpdateArtifact, UpdateArtifactUpdateArtifact
|
129
148
|
from .update_artifact_portfolio import (
|
130
149
|
UpdateArtifactPortfolio,
|
131
150
|
UpdateArtifactPortfolioUpdateArtifactPortfolio,
|
@@ -138,12 +157,15 @@ from .update_artifact_sequence import (
|
|
138
157
|
)
|
139
158
|
|
140
159
|
__all__ = [
|
160
|
+
"ADD_ALIASES_GQL",
|
141
161
|
"ARTIFACT_COLLECTION_MEMBERSHIP_FILES_GQL",
|
142
162
|
"ARTIFACT_VERSION_FILES_GQL",
|
143
163
|
"CREATE_ARTIFACT_COLLECTION_TAG_ASSIGNMENTS_GQL",
|
164
|
+
"DELETE_ALIASES_GQL",
|
144
165
|
"DELETE_ARTIFACT_COLLECTION_TAG_ASSIGNMENTS_GQL",
|
145
166
|
"DELETE_ARTIFACT_PORTFOLIO_GQL",
|
146
167
|
"DELETE_ARTIFACT_SEQUENCE_GQL",
|
168
|
+
"FETCH_LINKED_ARTIFACTS_GQL",
|
147
169
|
"MOVE_ARTIFACT_COLLECTION_GQL",
|
148
170
|
"PROJECT_ARTIFACTS_GQL",
|
149
171
|
"PROJECT_ARTIFACT_COLLECTIONS_GQL",
|
@@ -152,6 +174,7 @@ __all__ = [
|
|
152
174
|
"PROJECT_ARTIFACT_TYPE_GQL",
|
153
175
|
"RUN_INPUT_ARTIFACTS_GQL",
|
154
176
|
"RUN_OUTPUT_ARTIFACTS_GQL",
|
177
|
+
"UPDATE_ARTIFACT_GQL",
|
155
178
|
"UPDATE_ARTIFACT_PORTFOLIO_GQL",
|
156
179
|
"UPDATE_ARTIFACT_SEQUENCE_GQL",
|
157
180
|
"DeleteArtifactSequence",
|
@@ -217,6 +240,22 @@ __all__ = [
|
|
217
240
|
"RunInputArtifactsProjectRunInputArtifacts",
|
218
241
|
"RunInputArtifactsProjectRunInputArtifactsEdges",
|
219
242
|
"RunInputArtifactsProjectRunInputArtifactsPageInfo",
|
243
|
+
"FetchLinkedArtifacts",
|
244
|
+
"FetchLinkedArtifactsArtifact",
|
245
|
+
"FetchLinkedArtifactsArtifactArtifactMemberships",
|
246
|
+
"FetchLinkedArtifactsArtifactArtifactMembershipsEdges",
|
247
|
+
"FetchLinkedArtifactsArtifactArtifactMembershipsEdgesNode",
|
248
|
+
"FetchLinkedArtifactsArtifactArtifactMembershipsEdgesNodeAliases",
|
249
|
+
"FetchLinkedArtifactsArtifactArtifactMembershipsEdgesNodeArtifactCollection",
|
250
|
+
"FetchLinkedArtifactsArtifactArtifactMembershipsEdgesNodeArtifactCollectionProject",
|
251
|
+
"AddAliases",
|
252
|
+
"AddAliasesAddAliases",
|
253
|
+
"DeleteAliases",
|
254
|
+
"DeleteAliasesDeleteAliases",
|
255
|
+
"UpdateArtifact",
|
256
|
+
"UpdateArtifactUpdateArtifact",
|
257
|
+
"ArtifactAliasInput",
|
258
|
+
"ArtifactCollectionAliasInput",
|
220
259
|
"TagInput",
|
221
260
|
"ArtifactCollectionsFragment",
|
222
261
|
"ArtifactCollectionsFragmentEdges",
|
@@ -232,6 +271,8 @@ __all__ = [
|
|
232
271
|
"ArtifactFragmentCurrentManifest",
|
233
272
|
"ArtifactFragmentCurrentManifestFile",
|
234
273
|
"ArtifactFragmentTags",
|
274
|
+
"ArtifactPortfolioTypeFields",
|
275
|
+
"ArtifactSequenceTypeFields",
|
235
276
|
"ArtifactTypeFragment",
|
236
277
|
"ArtifactTypesFragment",
|
237
278
|
"ArtifactTypesFragmentEdges",
|
@@ -0,0 +1,21 @@
|
|
1
|
+
# Generated by ariadne-codegen
|
2
|
+
# Source: tools/graphql_codegen/artifacts/
|
3
|
+
|
4
|
+
from __future__ import annotations
|
5
|
+
|
6
|
+
from typing import Optional
|
7
|
+
|
8
|
+
from pydantic import Field
|
9
|
+
|
10
|
+
from wandb._pydantic import GQLBase
|
11
|
+
|
12
|
+
|
13
|
+
class AddAliases(GQLBase):
|
14
|
+
add_aliases: Optional[AddAliasesAddAliases] = Field(alias="addAliases")
|
15
|
+
|
16
|
+
|
17
|
+
class AddAliasesAddAliases(GQLBase):
|
18
|
+
success: bool
|
19
|
+
|
20
|
+
|
21
|
+
AddAliases.model_rebuild()
|
@@ -0,0 +1,21 @@
|
|
1
|
+
# Generated by ariadne-codegen
|
2
|
+
# Source: tools/graphql_codegen/artifacts/
|
3
|
+
|
4
|
+
from __future__ import annotations
|
5
|
+
|
6
|
+
from typing import Optional
|
7
|
+
|
8
|
+
from pydantic import Field
|
9
|
+
|
10
|
+
from wandb._pydantic import GQLBase
|
11
|
+
|
12
|
+
|
13
|
+
class DeleteAliases(GQLBase):
|
14
|
+
delete_aliases: Optional[DeleteAliasesDeleteAliases] = Field(alias="deleteAliases")
|
15
|
+
|
16
|
+
|
17
|
+
class DeleteAliasesDeleteAliases(GQLBase):
|
18
|
+
success: bool
|
19
|
+
|
20
|
+
|
21
|
+
DeleteAliases.model_rebuild()
|
@@ -0,0 +1,67 @@
|
|
1
|
+
# Generated by ariadne-codegen
|
2
|
+
# Source: tools/graphql_codegen/artifacts/
|
3
|
+
|
4
|
+
from __future__ import annotations
|
5
|
+
|
6
|
+
from typing import List, Literal, Optional
|
7
|
+
|
8
|
+
from pydantic import Field
|
9
|
+
|
10
|
+
from wandb._pydantic import GQLBase, Typename
|
11
|
+
|
12
|
+
|
13
|
+
class FetchLinkedArtifacts(GQLBase):
|
14
|
+
artifact: Optional[FetchLinkedArtifactsArtifact]
|
15
|
+
|
16
|
+
|
17
|
+
class FetchLinkedArtifactsArtifact(GQLBase):
|
18
|
+
artifact_memberships: FetchLinkedArtifactsArtifactArtifactMemberships = Field(
|
19
|
+
alias="artifactMemberships"
|
20
|
+
)
|
21
|
+
|
22
|
+
|
23
|
+
class FetchLinkedArtifactsArtifactArtifactMemberships(GQLBase):
|
24
|
+
edges: List[FetchLinkedArtifactsArtifactArtifactMembershipsEdges]
|
25
|
+
|
26
|
+
|
27
|
+
class FetchLinkedArtifactsArtifactArtifactMembershipsEdges(GQLBase):
|
28
|
+
node: Optional[FetchLinkedArtifactsArtifactArtifactMembershipsEdgesNode]
|
29
|
+
|
30
|
+
|
31
|
+
class FetchLinkedArtifactsArtifactArtifactMembershipsEdgesNode(GQLBase):
|
32
|
+
aliases: List[FetchLinkedArtifactsArtifactArtifactMembershipsEdgesNodeAliases]
|
33
|
+
version_index: Optional[int] = Field(alias="versionIndex")
|
34
|
+
artifact_collection: Optional[
|
35
|
+
FetchLinkedArtifactsArtifactArtifactMembershipsEdgesNodeArtifactCollection
|
36
|
+
] = Field(alias="artifactCollection")
|
37
|
+
|
38
|
+
|
39
|
+
class FetchLinkedArtifactsArtifactArtifactMembershipsEdgesNodeAliases(GQLBase):
|
40
|
+
alias: str
|
41
|
+
|
42
|
+
|
43
|
+
class FetchLinkedArtifactsArtifactArtifactMembershipsEdgesNodeArtifactCollection(
|
44
|
+
GQLBase
|
45
|
+
):
|
46
|
+
project: Optional[
|
47
|
+
FetchLinkedArtifactsArtifactArtifactMembershipsEdgesNodeArtifactCollectionProject
|
48
|
+
]
|
49
|
+
name: str
|
50
|
+
typename__: Typename[
|
51
|
+
Literal["ArtifactCollection", "ArtifactPortfolio", "ArtifactSequence"]
|
52
|
+
]
|
53
|
+
|
54
|
+
|
55
|
+
class FetchLinkedArtifactsArtifactArtifactMembershipsEdgesNodeArtifactCollectionProject(
|
56
|
+
GQLBase
|
57
|
+
):
|
58
|
+
entity_name: str = Field(alias="entityName")
|
59
|
+
name: str
|
60
|
+
|
61
|
+
|
62
|
+
FetchLinkedArtifacts.model_rebuild()
|
63
|
+
FetchLinkedArtifactsArtifact.model_rebuild()
|
64
|
+
FetchLinkedArtifactsArtifactArtifactMemberships.model_rebuild()
|
65
|
+
FetchLinkedArtifactsArtifactArtifactMembershipsEdges.model_rebuild()
|
66
|
+
FetchLinkedArtifactsArtifactArtifactMembershipsEdgesNode.model_rebuild()
|
67
|
+
FetchLinkedArtifactsArtifactArtifactMembershipsEdgesNodeArtifactCollection.model_rebuild()
|
@@ -110,6 +110,18 @@ class ArtifactFragmentTags(GQLBase):
|
|
110
110
|
name: str
|
111
111
|
|
112
112
|
|
113
|
+
class ArtifactPortfolioTypeFields(GQLBase):
|
114
|
+
typename__: Typename[Literal["ArtifactPortfolio"]] = "ArtifactPortfolio"
|
115
|
+
id: GQLId
|
116
|
+
name: str
|
117
|
+
|
118
|
+
|
119
|
+
class ArtifactSequenceTypeFields(GQLBase):
|
120
|
+
typename__: Typename[Literal["ArtifactSequence"]] = "ArtifactSequence"
|
121
|
+
id: GQLId
|
122
|
+
name: str
|
123
|
+
|
124
|
+
|
113
125
|
class ArtifactTypeFragment(GQLBase):
|
114
126
|
typename__: Typename[Literal["ArtifactType"]] = "ArtifactType"
|
115
127
|
id: GQLId
|
@@ -179,8 +191,31 @@ class FilesFragmentPageInfo(GQLBase):
|
|
179
191
|
|
180
192
|
|
181
193
|
ArtifactCollectionsFragment.model_rebuild()
|
194
|
+
ArtifactCollectionsFragmentEdges.model_rebuild()
|
195
|
+
ArtifactCollectionsFragmentEdgesNode.model_rebuild()
|
196
|
+
ArtifactCollectionsFragmentPageInfo.model_rebuild()
|
182
197
|
ArtifactFragment.model_rebuild()
|
198
|
+
ArtifactFragmentAliases.model_rebuild()
|
199
|
+
ArtifactFragmentAliasesArtifactCollection.model_rebuild()
|
200
|
+
ArtifactFragmentAliasesArtifactCollectionProject.model_rebuild()
|
201
|
+
ArtifactFragmentArtifactSequence.model_rebuild()
|
202
|
+
ArtifactFragmentArtifactSequenceProject.model_rebuild()
|
203
|
+
ArtifactFragmentArtifactType.model_rebuild()
|
204
|
+
ArtifactFragmentCurrentManifest.model_rebuild()
|
205
|
+
ArtifactFragmentCurrentManifestFile.model_rebuild()
|
206
|
+
ArtifactFragmentTags.model_rebuild()
|
207
|
+
ArtifactPortfolioTypeFields.model_rebuild()
|
208
|
+
ArtifactSequenceTypeFields.model_rebuild()
|
183
209
|
ArtifactTypeFragment.model_rebuild()
|
184
210
|
ArtifactTypesFragment.model_rebuild()
|
211
|
+
ArtifactTypesFragmentEdges.model_rebuild()
|
212
|
+
ArtifactTypesFragmentPageInfo.model_rebuild()
|
185
213
|
ArtifactsFragment.model_rebuild()
|
214
|
+
ArtifactsFragmentEdges.model_rebuild()
|
215
|
+
ArtifactsFragmentPageInfo.model_rebuild()
|
186
216
|
FilesFragment.model_rebuild()
|
217
|
+
FilesFragmentEdges.model_rebuild()
|
218
|
+
FilesFragmentEdgesNode.model_rebuild()
|
219
|
+
FilesFragmentPageInfo.model_rebuild()
|
220
|
+
ArtifactFragment.model_rebuild()
|
221
|
+
ArtifactTypeFragment.model_rebuild()
|
@@ -10,6 +10,18 @@ from pydantic import Field
|
|
10
10
|
from wandb._pydantic import GQLBase
|
11
11
|
|
12
12
|
|
13
|
+
class ArtifactAliasInput(GQLBase):
|
14
|
+
artifact_collection_name: str = Field(alias="artifactCollectionName")
|
15
|
+
alias: str
|
16
|
+
|
17
|
+
|
18
|
+
class ArtifactCollectionAliasInput(GQLBase):
|
19
|
+
alias: str
|
20
|
+
entity_name: str = Field(alias="entityName")
|
21
|
+
project_name: str = Field(alias="projectName")
|
22
|
+
artifact_collection_name: str = Field(alias="artifactCollectionName")
|
23
|
+
|
24
|
+
|
13
25
|
class TagInput(GQLBase):
|
14
26
|
tag_category_name: Optional[str] = Field(alias="tagCategoryName", default=None)
|
15
27
|
tag_name: str = Field(alias="tagName")
|
@@ -2,12 +2,15 @@
|
|
2
2
|
# Source: tools/graphql_codegen/artifacts/
|
3
3
|
|
4
4
|
__all__ = [
|
5
|
+
"ADD_ALIASES_GQL",
|
5
6
|
"ARTIFACT_COLLECTION_MEMBERSHIP_FILES_GQL",
|
6
7
|
"ARTIFACT_VERSION_FILES_GQL",
|
7
8
|
"CREATE_ARTIFACT_COLLECTION_TAG_ASSIGNMENTS_GQL",
|
9
|
+
"DELETE_ALIASES_GQL",
|
8
10
|
"DELETE_ARTIFACT_COLLECTION_TAG_ASSIGNMENTS_GQL",
|
9
11
|
"DELETE_ARTIFACT_PORTFOLIO_GQL",
|
10
12
|
"DELETE_ARTIFACT_SEQUENCE_GQL",
|
13
|
+
"FETCH_LINKED_ARTIFACTS_GQL",
|
11
14
|
"MOVE_ARTIFACT_COLLECTION_GQL",
|
12
15
|
"PROJECT_ARTIFACTS_GQL",
|
13
16
|
"PROJECT_ARTIFACT_COLLECTIONS_GQL",
|
@@ -16,6 +19,7 @@ __all__ = [
|
|
16
19
|
"PROJECT_ARTIFACT_TYPE_GQL",
|
17
20
|
"RUN_INPUT_ARTIFACTS_GQL",
|
18
21
|
"RUN_OUTPUT_ARTIFACTS_GQL",
|
22
|
+
"UPDATE_ARTIFACT_GQL",
|
19
23
|
"UPDATE_ARTIFACT_PORTFOLIO_GQL",
|
20
24
|
"UPDATE_ARTIFACT_SEQUENCE_GQL",
|
21
25
|
]
|
@@ -508,3 +512,100 @@ fragment ArtifactFragment on Artifact {
|
|
508
512
|
updatedAt
|
509
513
|
}
|
510
514
|
"""
|
515
|
+
|
516
|
+
FETCH_LINKED_ARTIFACTS_GQL = """
|
517
|
+
query FetchLinkedArtifacts($artifactID: ID!) {
|
518
|
+
artifact(id: $artifactID) {
|
519
|
+
artifactMemberships {
|
520
|
+
edges {
|
521
|
+
node {
|
522
|
+
aliases {
|
523
|
+
alias
|
524
|
+
}
|
525
|
+
versionIndex
|
526
|
+
artifactCollection {
|
527
|
+
project {
|
528
|
+
entityName
|
529
|
+
name
|
530
|
+
}
|
531
|
+
name
|
532
|
+
__typename
|
533
|
+
}
|
534
|
+
}
|
535
|
+
}
|
536
|
+
}
|
537
|
+
}
|
538
|
+
}
|
539
|
+
"""
|
540
|
+
|
541
|
+
ADD_ALIASES_GQL = """
|
542
|
+
mutation AddAliases($artifactID: ID!, $aliases: [ArtifactCollectionAliasInput!]!) {
|
543
|
+
addAliases(input: {artifactID: $artifactID, aliases: $aliases}) {
|
544
|
+
success
|
545
|
+
}
|
546
|
+
}
|
547
|
+
"""
|
548
|
+
|
549
|
+
DELETE_ALIASES_GQL = """
|
550
|
+
mutation DeleteAliases($artifactID: ID!, $aliases: [ArtifactCollectionAliasInput!]!) {
|
551
|
+
deleteAliases(input: {artifactID: $artifactID, aliases: $aliases}) {
|
552
|
+
success
|
553
|
+
}
|
554
|
+
}
|
555
|
+
"""
|
556
|
+
|
557
|
+
UPDATE_ARTIFACT_GQL = """
|
558
|
+
mutation UpdateArtifact($artifactID: ID!, $description: String, $metadata: JSONString, $ttlDurationSeconds: Int64, $tagsToAdd: [TagInput!], $tagsToDelete: [TagInput!], $aliases: [ArtifactAliasInput!]) {
|
559
|
+
updateArtifact(
|
560
|
+
input: {artifactID: $artifactID, description: $description, metadata: $metadata, ttlDurationSeconds: $ttlDurationSeconds, tagsToAdd: $tagsToAdd, tagsToDelete: $tagsToDelete, aliases: $aliases}
|
561
|
+
) {
|
562
|
+
artifact {
|
563
|
+
...ArtifactFragment
|
564
|
+
}
|
565
|
+
}
|
566
|
+
}
|
567
|
+
|
568
|
+
fragment ArtifactFragment on Artifact {
|
569
|
+
id
|
570
|
+
artifactSequence {
|
571
|
+
project {
|
572
|
+
entityName
|
573
|
+
name
|
574
|
+
}
|
575
|
+
name
|
576
|
+
}
|
577
|
+
versionIndex
|
578
|
+
artifactType {
|
579
|
+
name
|
580
|
+
}
|
581
|
+
description
|
582
|
+
metadata
|
583
|
+
ttlDurationSeconds @include(if: true)
|
584
|
+
ttlIsInherited @include(if: true)
|
585
|
+
aliases @include(if: true) {
|
586
|
+
artifactCollection {
|
587
|
+
__typename
|
588
|
+
project {
|
589
|
+
entityName
|
590
|
+
name
|
591
|
+
}
|
592
|
+
name
|
593
|
+
}
|
594
|
+
alias
|
595
|
+
}
|
596
|
+
tags @include(if: true) {
|
597
|
+
name
|
598
|
+
}
|
599
|
+
historyStep @include(if: true)
|
600
|
+
state
|
601
|
+
currentManifest {
|
602
|
+
file {
|
603
|
+
directUrl
|
604
|
+
}
|
605
|
+
}
|
606
|
+
commitHash
|
607
|
+
fileCount
|
608
|
+
createdAt
|
609
|
+
updatedAt
|
610
|
+
}
|
611
|
+
"""
|
@@ -0,0 +1,26 @@
|
|
1
|
+
# Generated by ariadne-codegen
|
2
|
+
# Source: tools/graphql_codegen/artifacts/
|
3
|
+
|
4
|
+
from __future__ import annotations
|
5
|
+
|
6
|
+
from typing import Optional
|
7
|
+
|
8
|
+
from pydantic import Field
|
9
|
+
|
10
|
+
from wandb._pydantic import GQLBase
|
11
|
+
|
12
|
+
from .fragments import ArtifactFragment
|
13
|
+
|
14
|
+
|
15
|
+
class UpdateArtifact(GQLBase):
|
16
|
+
update_artifact: Optional[UpdateArtifactUpdateArtifact] = Field(
|
17
|
+
alias="updateArtifact"
|
18
|
+
)
|
19
|
+
|
20
|
+
|
21
|
+
class UpdateArtifactUpdateArtifact(GQLBase):
|
22
|
+
artifact: ArtifactFragment
|
23
|
+
|
24
|
+
|
25
|
+
UpdateArtifact.model_rebuild()
|
26
|
+
UpdateArtifactUpdateArtifact.model_rebuild()
|