frogml-core 0.0.1__py3-none-any.whl → 0.0.2__py3-none-any.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.
- frogml_core/__init__.py +25 -0
- frogml_core/automations/__init__.py +70 -0
- frogml_core/automations/automation_executions.py +99 -0
- frogml_core/automations/automations.py +396 -0
- frogml_core/automations/batch_execution_action.py +336 -0
- frogml_core/automations/build_and_deploy_action.py +840 -0
- frogml_core/automations/common.py +106 -0
- frogml_core/clients/_inner/edge_communications.py +24 -0
- frogml_core/clients/administration/authenticated_user/client.py +41 -0
- frogml_core/clients/administration/authentication/client.py +34 -0
- frogml_core/clients/administration/eco_system/client.py +152 -0
- frogml_core/clients/administration/eco_system/eco_system_utils.py +15 -0
- frogml_core/clients/administration/environment/client.py +77 -0
- frogml_core/clients/administration/self_service/client.py +73 -0
- frogml_core/clients/alert_management/client.py +64 -0
- frogml_core/clients/alerts_registry/channel.py +132 -0
- frogml_core/clients/alerts_registry/client.py +137 -0
- frogml_core/clients/analytics/client.py +82 -0
- frogml_core/clients/audience/client.py +53 -0
- frogml_core/clients/automation_management/client.py +274 -0
- frogml_core/clients/autoscaling/client.py +34 -0
- frogml_core/clients/batch_job_management/client.py +544 -0
- frogml_core/clients/batch_job_management/executions_config.py +201 -0
- frogml_core/clients/build_management/client.py +115 -0
- frogml_core/clients/build_orchestrator/build_model_request_getter.py +138 -0
- frogml_core/clients/build_orchestrator/client.py +456 -0
- frogml_core/clients/build_orchestrator/internal_client.py +114 -0
- frogml_core/clients/data_versioning/client.py +76 -0
- frogml_core/clients/data_versioning/data_tag_filter.py +32 -0
- frogml_core/clients/deployment/client.py +191 -0
- frogml_core/clients/feature_store/execution_management_client.py +102 -0
- frogml_core/clients/feature_store/job_registry_client.py +71 -0
- frogml_core/clients/feature_store/management_client.py +570 -0
- frogml_core/clients/feature_store/offline_serving_client.py +249 -0
- frogml_core/clients/feature_store/operator_client.py +164 -0
- frogml_core/clients/file_versioning/client.py +77 -0
- frogml_core/clients/file_versioning/file_tag_filter.py +32 -0
- frogml_core/clients/instance_template/client.py +67 -0
- frogml_core/clients/integration_management/integration_manager_client.py +35 -0
- frogml_core/clients/integration_management/integration_utils.py +27 -0
- frogml_core/clients/integration_management/openai/openai_system_secret.py +58 -0
- frogml_core/clients/jfrog_gateway/client.py +41 -0
- frogml_core/clients/kube_deployment_captain/client.py +233 -0
- frogml_core/clients/logging_client/client.py +148 -0
- frogml_core/clients/model_management/client.py +128 -0
- frogml_core/clients/model_version_manager/client.py +111 -0
- frogml_core/clients/project/client.py +60 -0
- frogml_core/clients/prompt_manager/model_descriptor_mapper.py +196 -0
- frogml_core/clients/prompt_manager/prompt_manager_client.py +190 -0
- frogml_core/clients/prompt_manager/prompt_proto_mapper.py +264 -0
- frogml_core/clients/secret_service/client.py +96 -0
- frogml_core/clients/system_secret/system_secret_client.py +31 -0
- frogml_core/clients/user_application_instance/client.py +177 -0
- frogml_core/clients/vector_store/management_client.py +127 -0
- frogml_core/clients/vector_store/serving_client.py +157 -0
- frogml_core/clients/workspace_manager/client.py +224 -0
- frogml_core/exceptions/frogml_external_exception.py +11 -0
- frogml_core/feature_store/_common/artifact_utils.py +57 -0
- frogml_core/feature_store/_common/feature_set_utils.py +261 -0
- frogml_core/feature_store/_common/featureset_asterisk_handler.py +115 -0
- frogml_core/feature_store/_common/packaging.py +244 -0
- frogml_core/feature_store/_common/source_code_spec.py +62 -0
- frogml_core/feature_store/_common/source_code_spec_factory.py +54 -0
- frogml_core/feature_store/data_sources/__init__.py +67 -0
- frogml_core/feature_store/data_sources/attributes.py +25 -0
- frogml_core/feature_store/data_sources/base.py +128 -0
- frogml_core/feature_store/data_sources/batch/_batch.py +9 -0
- frogml_core/feature_store/data_sources/batch/_jdbc.py +22 -0
- frogml_core/feature_store/data_sources/batch/athena.py +272 -0
- frogml_core/feature_store/data_sources/batch/big_query.py +80 -0
- frogml_core/feature_store/data_sources/batch/clickhouse.py +60 -0
- frogml_core/feature_store/data_sources/batch/csv.py +62 -0
- frogml_core/feature_store/data_sources/batch/elastic_search.py +61 -0
- frogml_core/feature_store/data_sources/batch/filesystem/aws.py +93 -0
- frogml_core/feature_store/data_sources/batch/filesystem/gcp.py +54 -0
- frogml_core/feature_store/data_sources/batch/filesystem/utils.py +59 -0
- frogml_core/feature_store/data_sources/batch/mongodb.py +58 -0
- frogml_core/feature_store/data_sources/batch/mysql.py +50 -0
- frogml_core/feature_store/data_sources/batch/parquet.py +57 -0
- frogml_core/feature_store/data_sources/batch/postgres.py +50 -0
- frogml_core/feature_store/data_sources/batch/redshift.py +85 -0
- frogml_core/feature_store/data_sources/batch/snowflake.py +77 -0
- frogml_core/feature_store/data_sources/batch/vertica.py +58 -0
- frogml_core/feature_store/data_sources/source_authentication.py +35 -0
- frogml_core/feature_store/data_sources/streaming/_streaming.py +9 -0
- frogml_core/feature_store/data_sources/streaming/kafka/__init__.py +25 -0
- frogml_core/feature_store/data_sources/streaming/kafka/authentication.py +124 -0
- frogml_core/feature_store/data_sources/streaming/kafka/deserialization.py +115 -0
- frogml_core/feature_store/data_sources/streaming/kafka/kafka.py +123 -0
- frogml_core/feature_store/data_sources/time_partition_columns.py +178 -0
- frogml_core/feature_store/entities/entity.py +73 -0
- frogml_core/feature_store/execution/backfill.py +197 -0
- frogml_core/feature_store/execution/execution.py +595 -0
- frogml_core/feature_store/execution/execution_query.py +91 -0
- frogml_core/feature_store/feature_sets/_utils/_featureset_utils.py +45 -0
- frogml_core/feature_store/feature_sets/backfill.py +72 -0
- frogml_core/feature_store/feature_sets/base_feature_set.py +150 -0
- frogml_core/feature_store/feature_sets/batch.py +480 -0
- frogml_core/feature_store/feature_sets/execution_spec.py +75 -0
- frogml_core/feature_store/feature_sets/metadata.py +75 -0
- frogml_core/feature_store/feature_sets/read_policies.py +245 -0
- frogml_core/feature_store/feature_sets/streaming.py +640 -0
- frogml_core/feature_store/feature_sets/streaming_backfill.py +271 -0
- frogml_core/feature_store/feature_sets/transformations/__init__.py +35 -0
- frogml_core/feature_store/feature_sets/transformations/aggregations/aggregations.py +443 -0
- frogml_core/feature_store/feature_sets/transformations/aggregations/windows.py +70 -0
- frogml_core/feature_store/feature_sets/transformations/functions/__init__.py +10 -0
- frogml_core/feature_store/feature_sets/transformations/functions/frogml_pandas.py +66 -0
- frogml_core/feature_store/feature_sets/transformations/transformations.py +467 -0
- frogml_core/feature_store/feature_sets/transformations/validations/validations_util.py +78 -0
- frogml_core/feature_store/offline/__init__.py +4 -0
- frogml_core/feature_store/offline/_offline_serving_validations.py +32 -0
- frogml_core/feature_store/offline/athena/athena_query_engine.py +154 -0
- frogml_core/feature_store/offline/client.py +721 -0
- frogml_core/feature_store/offline/client_v2.py +340 -0
- frogml_core/feature_store/offline/feature_set_features.py +25 -0
- frogml_core/feature_store/online/client.py +352 -0
- frogml_core/feature_store/online/endpoint_utils.py +65 -0
- frogml_core/feature_store/sinks/base.py +18 -0
- frogml_core/feature_store/sinks/kafka.py +61 -0
- frogml_core/feature_store/sinks/streaming/attachment.py +34 -0
- frogml_core/feature_store/sinks/streaming/factory.py +60 -0
- frogml_core/feature_store/validations/validation_options.py +82 -0
- frogml_core/feature_store/validations/validation_response.py +121 -0
- frogml_core/feature_store/validations/validator.py +106 -0
- frogml_core/frogml_client/batch_jobs/execution.py +49 -0
- frogml_core/frogml_client/batch_jobs/task.py +43 -0
- frogml_core/frogml_client/build_api_helpers/build_api_steps.py +53 -0
- frogml_core/frogml_client/build_api_helpers/trigger_build_api.py +67 -0
- frogml_core/frogml_client/builds/build.py +97 -0
- frogml_core/frogml_client/builds/filters/metric_filter.py +38 -0
- frogml_core/frogml_client/builds/filters/parameter_filter.py +36 -0
- frogml_core/frogml_client/client.py +876 -0
- frogml_core/frogml_client/data_versioning/data_tag.py +24 -0
- frogml_core/frogml_client/deployments/deployment.py +409 -0
- frogml_core/frogml_client/file_versioning/file_tag.py +24 -0
- frogml_core/frogml_client/models/model.py +52 -0
- frogml_core/frogml_client/models/model_metadata.py +31 -0
- frogml_core/frogml_client/projects/project.py +56 -0
- frogml_core/inner/build_config/build_config_v1.py +315 -0
- frogml_core/inner/build_logic/build_loggers/trigger_build_logger.py +50 -0
- frogml_core/inner/build_logic/execute_build_pipeline.py +64 -0
- frogml_core/inner/build_logic/interface/context_interface.py +58 -0
- frogml_core/inner/build_logic/interface/phase_run_handler.py +71 -0
- frogml_core/inner/build_logic/interface/step_inteface.py +26 -0
- frogml_core/inner/build_logic/phases/phase_010_fetch_model/fetch_model_step.py +41 -0
- frogml_core/inner/build_logic/phases/phase_010_fetch_model/fetch_strategy_manager/common.py +32 -0
- frogml_core/inner/build_logic/phases/phase_010_fetch_model/fetch_strategy_manager/fetch_strategy_manager.py +62 -0
- frogml_core/inner/build_logic/phases/phase_010_fetch_model/fetch_strategy_manager/strategy/folder/folder_strategy.py +131 -0
- frogml_core/inner/build_logic/phases/phase_010_fetch_model/fetch_strategy_manager/strategy/git/git_strategy.py +184 -0
- frogml_core/inner/build_logic/phases/phase_010_fetch_model/fetch_strategy_manager/strategy/strategy.py +50 -0
- frogml_core/inner/build_logic/phases/phase_010_fetch_model/fetch_strategy_manager/strategy/zip/zip_strategy.py +64 -0
- frogml_core/inner/build_logic/phases/phase_010_fetch_model/post_fetch_validation_step.py +139 -0
- frogml_core/inner/build_logic/phases/phase_010_fetch_model/pre_fetch_validation_step.py +263 -0
- frogml_core/inner/build_logic/phases/phase_010_fetch_model/set_version_step.py +33 -0
- frogml_core/inner/build_logic/phases/phase_020_remote_register_frogml_build/cleanup_step.py +20 -0
- frogml_core/inner/build_logic/phases/phase_020_remote_register_frogml_build/start_remote_build_step.py +42 -0
- frogml_core/inner/build_logic/phases/phase_020_remote_register_frogml_build/upload_step.py +259 -0
- frogml_core/inner/build_logic/phases/phases_pipeline.py +44 -0
- frogml_core/inner/build_logic/run_handlers/programmatic_phase_run_handler.py +101 -0
- frogml_core/inner/build_logic/tools/dependencies_tools.py +68 -0
- frogml_core/inner/build_logic/tools/files.py +237 -0
- frogml_core/inner/build_logic/tools/ignore_files.py +20 -0
- frogml_core/inner/build_logic/trigger_build_context.py +10 -0
- frogml_core/inner/di_configuration/__init__.py +75 -0
- frogml_core/inner/di_configuration/account.py +106 -0
- frogml_core/inner/di_configuration/containers.py +40 -0
- frogml_core/inner/instance_template/verify_template_id.py +50 -0
- frogml_core/inner/model_loggers_utils.py +110 -0
- frogml_core/inner/runtime_di/__init__.py +16 -0
- frogml_core/inner/runtime_di/containers.py +19 -0
- frogml_core/inner/tool/__init__.py +1 -0
- frogml_core/inner/tool/auth.py +70 -0
- frogml_core/inner/tool/grpc/grpc_auth.py +42 -0
- frogml_core/inner/tool/grpc/grpc_tools.py +209 -0
- frogml_core/inner/tool/grpc/grpc_try_wrapping.py +16 -0
- frogml_core/inner/tool/protobuf_factory.py +45 -0
- frogml_core/inner/tool/run_config/base.py +127 -0
- frogml_core/llmops/generation/_steaming.py +78 -0
- frogml_core/llmops/generation/chat/openai/types/chat/chat_completion.py +88 -0
- frogml_core/llmops/generation/chat/openai/types/chat/chat_completion_chunk.py +153 -0
- frogml_core/llmops/generation/streaming.py +26 -0
- frogml_core/llmops/model/descriptor.py +40 -0
- frogml_core/llmops/prompt/base.py +136 -0
- frogml_core/llmops/prompt/chat/message.py +24 -0
- frogml_core/llmops/prompt/chat/template.py +113 -0
- frogml_core/llmops/prompt/chat/value.py +10 -0
- frogml_core/llmops/prompt/manager.py +138 -0
- frogml_core/llmops/prompt/template.py +24 -0
- frogml_core/llmops/provider/chat.py +44 -0
- frogml_core/llmops/provider/openai/client.py +126 -0
- frogml_core/llmops/provider/openai/provider.py +93 -0
- frogml_core/model/_entity_extraction.py +116 -0
- frogml_core/model/adapters/input_adapters/numpy_input_adapter.py +100 -0
- frogml_core/model/adapters/output_adapters/numpy_output_adapter.py +32 -0
- frogml_core/model/analytics_logging.py +14 -0
- frogml_core/model/base.py +86 -0
- frogml_core/model/decorators/api.py +66 -0
- frogml_core/model/decorators/impl/api_implementation.py +29 -0
- frogml_core/model/decorators/timer.py +20 -0
- frogml_core/model/fs_info_mapping_retriever.py +63 -0
- frogml_core/model/model_version_tracking.py +57 -0
- frogml_core/model/schema.py +52 -0
- frogml_core/model/schema_entities.py +107 -0
- frogml_core/model/tools/__init__.py +24 -0
- frogml_core/model/tools/adapters/input.py +66 -0
- frogml_core/model/tools/adapters/input_adapters/dataframe_input.py +48 -0
- frogml_core/model/tools/adapters/input_adapters/image_input.py +45 -0
- frogml_core/model/tools/adapters/input_adapters/json_input.py +20 -0
- frogml_core/model/tools/adapters/input_adapters/tf_tensor_input.py +44 -0
- frogml_core/model/tools/adapters/output.py +75 -0
- frogml_core/model/tools/adapters/output_adapters/dataframe_output.py +30 -0
- frogml_core/model/tools/adapters/output_adapters/json_output.py +17 -0
- frogml_core/model/tools/adapters/output_adapters/tf_tensor_output.py +41 -0
- frogml_core/model/tools/run_model_locally.py +68 -0
- frogml_core/model/utils/feature_utils.py +71 -0
- frogml_core/model_loggers/artifact_logger.py +95 -0
- frogml_core/model_loggers/data_logger.py +172 -0
- frogml_core/model_loggers/model_logger.py +30 -0
- frogml_core/tools/logger/logger.py +287 -0
- frogml_core/vector_store/client.py +151 -0
- frogml_core/vector_store/collection.py +429 -0
- frogml_core/vector_store/filters.py +359 -0
- frogml_core/vector_store/inference_client.py +105 -0
- frogml_core/vector_store/rest_helpers.py +81 -0
- frogml_core/vector_store/utils/filter_utils.py +23 -0
- frogml_core/vector_store/utils/upsert_utils.py +218 -0
- frogml_core-0.0.2.dist-info/METADATA +49 -0
- frogml_core-0.0.2.dist-info/RECORD +1013 -0
- frogml_proto/jfml/model_version/v1/model_repository_spec_pb2.py +35 -0
- frogml_proto/jfml/model_version/v1/model_version_framework_pb2.py +45 -0
- frogml_proto/jfml/model_version/v1/model_version_manager_service_pb2.py +151 -0
- frogml_proto/jfml/model_version/v1/model_version_manager_service_pb2.pyi +230 -0
- frogml_proto/jfml/model_version/v1/model_version_manager_service_pb2_grpc.py +237 -0
- frogml_proto/jfml/model_version/v1/model_version_pb2.py +88 -0
- frogml_proto/jfml/model_version/v1/model_version_pb2.pyi +133 -0
- frogml_proto/qwak/administration/account/v1/account_pb2.py +114 -0
- frogml_proto/qwak/administration/account/v1/account_pb2.pyi +257 -0
- frogml_proto/qwak/administration/account/v1/account_service_pb2.py +212 -0
- frogml_proto/qwak/administration/account/v1/account_service_pb2.pyi +344 -0
- frogml_proto/qwak/administration/account/v1/account_service_pb2_grpc.py +338 -0
- frogml_proto/qwak/administration/account/v1/jfrog_tenant_details_pb2.py +77 -0
- frogml_proto/qwak/administration/account/v1/personalization_pb2.py +45 -0
- frogml_proto/qwak/administration/account/v1/preferences_pb2.py +36 -0
- frogml_proto/qwak/administration/account/v1/preferences_pb2.pyi +35 -0
- frogml_proto/qwak/administration/account/v1/terms_pb2.py +75 -0
- frogml_proto/qwak/administration/authenticated_user/v1/authenticated_user_service_pb2.py +91 -0
- frogml_proto/qwak/administration/authenticated_user/v1/authenticated_user_service_pb2.pyi +108 -0
- frogml_proto/qwak/administration/authenticated_user/v1/authenticated_user_service_pb2_grpc.py +135 -0
- frogml_proto/qwak/administration/authenticated_user/v1/credentials_pb2.py +46 -0
- frogml_proto/qwak/administration/authenticated_user/v1/details_pb2.py +75 -0
- frogml_proto/qwak/administration/v0/authentication/authentication_service_pb2.py +69 -0
- frogml_proto/qwak/administration/v0/authentication/authentication_service_pb2_grpc.py +67 -0
- frogml_proto/qwak/administration/v0/environments/configuration_pb2.py +93 -0
- frogml_proto/qwak/administration/v0/environments/environment_pb2.py +66 -0
- frogml_proto/qwak/administration/v0/environments/environment_pb2.pyi +156 -0
- frogml_proto/qwak/administration/v0/environments/environment_service_pb2.py +184 -0
- frogml_proto/qwak/administration/v0/environments/environment_service_pb2.pyi +274 -0
- frogml_proto/qwak/administration/v0/environments/environment_service_pb2_grpc.py +272 -0
- frogml_proto/qwak/administration/v0/environments/personalization_pb2.py +45 -0
- frogml_proto/qwak/administration/v0/users/user_pb2.py +97 -0
- frogml_proto/qwak/admiral/secret/v0/secret_pb2.py +140 -0
- frogml_proto/qwak/admiral/secret/v0/secret_service_pb2.py +89 -0
- frogml_proto/qwak/admiral/secret/v0/secret_service_pb2.pyi +93 -0
- frogml_proto/qwak/admiral/secret/v0/secret_service_pb2_grpc.py +135 -0
- frogml_proto/qwak/admiral/secret/v0/system_secret_service_pb2.py +89 -0
- frogml_proto/qwak/admiral/secret/v0/system_secret_service_pb2.pyi +101 -0
- frogml_proto/qwak/admiral/secret/v0/system_secret_service_pb2_grpc.py +135 -0
- frogml_proto/qwak/admiral/user_application_instance/v0/user_application_instance_pb2.py +198 -0
- frogml_proto/qwak/admiral/user_application_instance/v0/user_application_instance_pb2.pyi +431 -0
- frogml_proto/qwak/admiral/user_application_instance/v0/user_application_instance_service_pb2.py +109 -0
- frogml_proto/qwak/admiral/user_application_instance/v0/user_application_instance_service_pb2.pyi +128 -0
- frogml_proto/qwak/admiral/user_application_instance/v0/user_application_instance_service_pb2_grpc.py +169 -0
- frogml_proto/qwak/analytics/analytics_pb2.py +142 -0
- frogml_proto/qwak/analytics/analytics_service_pb2.py +229 -0
- frogml_proto/qwak/analytics/analytics_service_pb2.pyi +339 -0
- frogml_proto/qwak/analytics/analytics_service_pb2_grpc.py +370 -0
- frogml_proto/qwak/audience/v1/audience_api_pb2.py +149 -0
- frogml_proto/qwak/audience/v1/audience_api_pb2.pyi +176 -0
- frogml_proto/qwak/audience/v1/audience_api_pb2_grpc.py +240 -0
- frogml_proto/qwak/audience/v1/audience_pb2.py +137 -0
- frogml_proto/qwak/auto_scaling/v1/auto_scaling_pb2.py +100 -0
- frogml_proto/qwak/auto_scaling/v1/auto_scaling_service_pb2.py +49 -0
- frogml_proto/qwak/auto_scaling/v1/auto_scaling_service_pb2.pyi +55 -0
- frogml_proto/qwak/auto_scaling/v1/auto_scaling_service_pb2_grpc.py +67 -0
- frogml_proto/qwak/automation/v1/action_pb2.py +220 -0
- frogml_proto/qwak/automation/v1/action_pb2.pyi +513 -0
- frogml_proto/qwak/automation/v1/auto_scaling_pb2.py +97 -0
- frogml_proto/qwak/automation/v1/automation_execution_pb2.py +65 -0
- frogml_proto/qwak/automation/v1/automation_management_service_pb2.py +283 -0
- frogml_proto/qwak/automation/v1/automation_management_service_pb2.pyi +386 -0
- frogml_proto/qwak/automation/v1/automation_management_service_pb2_grpc.py +429 -0
- frogml_proto/qwak/automation/v1/automation_pb2.py +59 -0
- frogml_proto/qwak/automation/v1/automation_pb2.pyi +121 -0
- frogml_proto/qwak/automation/v1/common_pb2.py +56 -0
- frogml_proto/qwak/automation/v1/notification_pb2.py +93 -0
- frogml_proto/qwak/automation/v1/trigger_pb2.py +76 -0
- frogml_proto/qwak/automation/v1/trigger_pb2.pyi +112 -0
- frogml_proto/qwak/batch_job/v1/batch_job_events_pb2.py +148 -0
- frogml_proto/qwak/batch_job/v1/batch_job_events_pb2.pyi +307 -0
- frogml_proto/qwak/batch_job/v1/batch_job_resources_pb2.py +47 -0
- frogml_proto/qwak/batch_job/v1/batch_job_service_pb2.py +570 -0
- frogml_proto/qwak/batch_job/v1/batch_job_service_pb2.pyi +1328 -0
- frogml_proto/qwak/batch_job/v1/batch_job_service_pb2_grpc.py +574 -0
- frogml_proto/qwak/build/v1/build_api_pb2.py +446 -0
- frogml_proto/qwak/build/v1/build_api_pb2.pyi +682 -0
- frogml_proto/qwak/build/v1/build_api_pb2_grpc.py +594 -0
- frogml_proto/qwak/build/v1/build_pb2.py +575 -0
- frogml_proto/qwak/build/v1/build_pb2.pyi +1328 -0
- frogml_proto/qwak/build_settings/build_settings_api_pb2.py +89 -0
- frogml_proto/qwak/build_settings/build_settings_api_pb2.pyi +106 -0
- frogml_proto/qwak/build_settings/build_settings_api_pb2_grpc.py +132 -0
- frogml_proto/qwak/build_settings/build_settings_pb2.py +95 -0
- frogml_proto/qwak/builds/build_pb2.py +233 -0
- frogml_proto/qwak/builds/build_pb2.pyi +582 -0
- frogml_proto/qwak/builds/build_url_pb2.py +86 -0
- frogml_proto/qwak/builds/builds_orchestrator_service_pb2.py +212 -0
- frogml_proto/qwak/builds/builds_orchestrator_service_pb2.pyi +322 -0
- frogml_proto/qwak/builds/builds_orchestrator_service_pb2_grpc.py +306 -0
- frogml_proto/qwak/builds/builds_pb2.py +556 -0
- frogml_proto/qwak/builds/builds_pb2.pyi +1271 -0
- frogml_proto/qwak/builds/builds_pb2_grpc.py +237 -0
- frogml_proto/qwak/builds/internal_builds_orchestrator_service_pb2.py +59 -0
- frogml_proto/qwak/builds/internal_builds_orchestrator_service_pb2.pyi +64 -0
- frogml_proto/qwak/builds/internal_builds_orchestrator_service_pb2_grpc.py +67 -0
- frogml_proto/qwak/data_versioning/data_versioning_pb2.py +45 -0
- frogml_proto/qwak/data_versioning/data_versioning_service_pb2.py +69 -0
- frogml_proto/qwak/data_versioning/data_versioning_service_pb2.pyi +83 -0
- frogml_proto/qwak/data_versioning/data_versioning_service_pb2_grpc.py +101 -0
- frogml_proto/qwak/deployment/alert_pb2.py +131 -0
- frogml_proto/qwak/deployment/alert_service_pb2.py +153 -0
- frogml_proto/qwak/deployment/alert_service_pb2.pyi +218 -0
- frogml_proto/qwak/deployment/alert_service_pb2_grpc.py +237 -0
- frogml_proto/qwak/deployment/deployment_messages_pb2.py +36 -0
- frogml_proto/qwak/deployment/deployment_messages_pb2.pyi +61 -0
- frogml_proto/qwak/deployment/deployment_pb2.py +644 -0
- frogml_proto/qwak/deployment/deployment_pb2.pyi +1582 -0
- frogml_proto/qwak/deployment/deployment_service_pb2.py +520 -0
- frogml_proto/qwak/deployment/deployment_service_pb2.pyi +817 -0
- frogml_proto/qwak/deployment/deployment_service_pb2_grpc.py +509 -0
- frogml_proto/qwak/ecosystem/v0/credentials_pb2.py +56 -0
- frogml_proto/qwak/ecosystem/v0/ecosystem_pb2.py +173 -0
- frogml_proto/qwak/ecosystem/v0/ecosystem_pb2.pyi +332 -0
- frogml_proto/qwak/ecosystem/v0/ecosystem_runtime_service_pb2.py +264 -0
- frogml_proto/qwak/ecosystem/v0/ecosystem_runtime_service_pb2.pyi +434 -0
- frogml_proto/qwak/ecosystem/v0/ecosystem_runtime_service_pb2_grpc.py +238 -0
- frogml_proto/qwak/execution/v1/backfill_pb2.py +97 -0
- frogml_proto/qwak/execution/v1/backfill_pb2.pyi +167 -0
- frogml_proto/qwak/execution/v1/batch_pb2.py +56 -0
- frogml_proto/qwak/execution/v1/deletion_pb2.py +65 -0
- frogml_proto/qwak/execution/v1/execution_pb2.py +96 -0
- frogml_proto/qwak/execution/v1/execution_pb2.pyi +201 -0
- frogml_proto/qwak/execution/v1/execution_service_pb2.py +294 -0
- frogml_proto/qwak/execution/v1/execution_service_pb2.pyi +431 -0
- frogml_proto/qwak/execution/v1/execution_service_pb2_grpc.py +467 -0
- frogml_proto/qwak/execution/v1/jobs/job_pb2.py +101 -0
- frogml_proto/qwak/execution/v1/jobs/job_pb2.pyi +282 -0
- frogml_proto/qwak/execution/v1/jobs/job_service_pb2.py +270 -0
- frogml_proto/qwak/execution/v1/jobs/job_service_pb2.pyi +469 -0
- frogml_proto/qwak/execution/v1/jobs/job_service_pb2_grpc.py +396 -0
- frogml_proto/qwak/execution/v1/jobs/reports/report_pb2.py +109 -0
- frogml_proto/qwak/execution/v1/jobs/reports/report_pb2.pyi +266 -0
- frogml_proto/qwak/execution/v1/state/execution_state_pb2.py +36 -0
- frogml_proto/qwak/execution/v1/state/execution_state_pb2.pyi +45 -0
- frogml_proto/qwak/execution/v1/state/execution_state_service_pb2.py +150 -0
- frogml_proto/qwak/execution/v1/state/execution_state_service_pb2.pyi +192 -0
- frogml_proto/qwak/execution/v1/state/execution_state_service_pb2_grpc.py +237 -0
- frogml_proto/qwak/execution/v1/state/featureset_state_pb2.py +35 -0
- frogml_proto/qwak/execution/v1/state/spark_execution_state_pb2.py +91 -0
- frogml_proto/qwak/execution/v1/streaming_aggregation_pb2.py +75 -0
- frogml_proto/qwak/execution/v1/streaming_pb2.py +65 -0
- frogml_proto/qwak/feature_store/entities/entity_pb2.py +79 -0
- frogml_proto/qwak/feature_store/entities/entity_service_pb2.py +149 -0
- frogml_proto/qwak/feature_store/entities/entity_service_pb2.pyi +203 -0
- frogml_proto/qwak/feature_store/entities/entity_service_pb2_grpc.py +237 -0
- frogml_proto/qwak/feature_store/features/aggregation_pb2.py +196 -0
- frogml_proto/qwak/feature_store/features/deployment_pb2.py +189 -0
- frogml_proto/qwak/feature_store/features/deployment_service_pb2.py +49 -0
- frogml_proto/qwak/feature_store/features/deployment_service_pb2.pyi +45 -0
- frogml_proto/qwak/feature_store/features/deployment_service_pb2_grpc.py +67 -0
- frogml_proto/qwak/feature_store/features/execution_pb2.py +77 -0
- frogml_proto/qwak/feature_store/features/feature_set_attribute_pb2.py +36 -0
- frogml_proto/qwak/feature_store/features/feature_set_attribute_pb2.pyi +33 -0
- frogml_proto/qwak/feature_store/features/feature_set_pb2.py +198 -0
- frogml_proto/qwak/feature_store/features/feature_set_pb2.pyi +443 -0
- frogml_proto/qwak/feature_store/features/feature_set_service_pb2.py +467 -0
- frogml_proto/qwak/feature_store/features/feature_set_service_pb2.pyi +663 -0
- frogml_proto/qwak/feature_store/features/feature_set_service_pb2_grpc.py +746 -0
- frogml_proto/qwak/feature_store/features/feature_set_state_pb2.py +203 -0
- frogml_proto/qwak/feature_store/features/feature_set_state_service_pb2.py +129 -0
- frogml_proto/qwak/feature_store/features/feature_set_state_service_pb2.pyi +175 -0
- frogml_proto/qwak/feature_store/features/feature_set_state_service_pb2_grpc.py +203 -0
- frogml_proto/qwak/feature_store/features/feature_set_types_pb2.py +381 -0
- frogml_proto/qwak/feature_store/features/feature_set_types_pb2.pyi +862 -0
- frogml_proto/qwak/feature_store/features/monitoring_pb2.py +55 -0
- frogml_proto/qwak/feature_store/features/real_time_feature_extractor_pb2.py +167 -0
- frogml_proto/qwak/feature_store/features/real_time_feature_extractor_pb2.pyi +359 -0
- frogml_proto/qwak/feature_store/jobs/job_pb2.py +68 -0
- frogml_proto/qwak/feature_store/jobs/job_service_pb2.py +149 -0
- frogml_proto/qwak/feature_store/jobs/job_service_pb2.pyi +237 -0
- frogml_proto/qwak/feature_store/jobs/job_service_pb2_grpc.py +237 -0
- frogml_proto/qwak/feature_store/jobs/v1/job_pb2.py +67 -0
- frogml_proto/qwak/feature_store/jobs/v1/job_service_pb2.py +210 -0
- frogml_proto/qwak/feature_store/jobs/v1/job_service_pb2.pyi +349 -0
- frogml_proto/qwak/feature_store/jobs/v1/job_service_pb2_grpc.py +338 -0
- frogml_proto/qwak/feature_store/platform/platform_details_pb2.py +46 -0
- frogml_proto/qwak/feature_store/platform/platform_details_pb2.pyi +54 -0
- frogml_proto/qwak/feature_store/reports/report_pb2.py +75 -0
- frogml_proto/qwak/feature_store/repository/common/platform_pb2.py +55 -0
- frogml_proto/qwak/feature_store/serving/management_pb2.py +69 -0
- frogml_proto/qwak/feature_store/serving/management_pb2.pyi +72 -0
- frogml_proto/qwak/feature_store/serving/management_pb2_grpc.py +101 -0
- frogml_proto/qwak/feature_store/serving/metadata_pb2.py +67 -0
- frogml_proto/qwak/feature_store/serving/metadata_pb2.pyi +158 -0
- frogml_proto/qwak/feature_store/serving/serving_pb2.py +254 -0
- frogml_proto/qwak/feature_store/serving/serving_pb2_grpc.py +101 -0
- frogml_proto/qwak/feature_store/serving/v1/value_pb2.py +46 -0
- frogml_proto/qwak/feature_store/sinks/sink_pb2.py +76 -0
- frogml_proto/qwak/feature_store/sinks/sink_pb2.pyi +137 -0
- frogml_proto/qwak/feature_store/sources/batch_pb2.py +362 -0
- frogml_proto/qwak/feature_store/sources/data_source_attribute_pb2.py +36 -0
- frogml_proto/qwak/feature_store/sources/data_source_attribute_pb2.pyi +33 -0
- frogml_proto/qwak/feature_store/sources/data_source_pb2.py +84 -0
- frogml_proto/qwak/feature_store/sources/data_source_pb2.pyi +169 -0
- frogml_proto/qwak/feature_store/sources/data_source_service_pb2.py +169 -0
- frogml_proto/qwak/feature_store/sources/data_source_service_pb2.pyi +237 -0
- frogml_proto/qwak/feature_store/sources/data_source_service_pb2_grpc.py +305 -0
- frogml_proto/qwak/feature_store/sources/streaming_pb2.py +175 -0
- frogml_proto/qwak/feature_store/v1/common/source_code/source_code_pb2.py +55 -0
- frogml_proto/qwak/feature_store/v1/internal/data_source/data_source_service_pb2.py +68 -0
- frogml_proto/qwak/feature_store/v1/internal/data_source/data_source_service_pb2_grpc.py +99 -0
- frogml_proto/qwak/feature_store/v1/internal/featureset/featureset_token_service_pb2.py +48 -0
- frogml_proto/qwak/feature_store/v1/internal/featureset/featureset_token_service_pb2_grpc.py +66 -0
- frogml_proto/qwak/features_operator/v1/features_operator_pb2.py +76 -0
- frogml_proto/qwak/features_operator/v1/features_operator_service_pb2.py +69 -0
- frogml_proto/qwak/features_operator/v1/features_operator_service_pb2.pyi +98 -0
- frogml_proto/qwak/features_operator/v1/features_operator_service_pb2_grpc.py +99 -0
- frogml_proto/qwak/features_operator/v2/features_operator_pb2.py +86 -0
- frogml_proto/qwak/features_operator/v2/features_operator_service_pb2.py +61 -0
- frogml_proto/qwak/features_operator/v2/features_operator_service_pb2.pyi +89 -0
- frogml_proto/qwak/features_operator/v2/features_operator_service_pb2_grpc.py +99 -0
- frogml_proto/qwak/features_operator/v3/features_operator_async_service_pb2.py +132 -0
- frogml_proto/qwak/features_operator/v3/features_operator_async_service_pb2.pyi +218 -0
- frogml_proto/qwak/features_operator/v3/features_operator_async_service_pb2_grpc.py +165 -0
- frogml_proto/qwak/features_operator/v3/features_operator_pb2.py +86 -0
- frogml_proto/qwak/file_versioning/file_versioning_pb2.py +56 -0
- frogml_proto/qwak/file_versioning/file_versioning_service_pb2.py +69 -0
- frogml_proto/qwak/file_versioning/file_versioning_service_pb2.pyi +83 -0
- frogml_proto/qwak/file_versioning/file_versioning_service_pb2_grpc.py +101 -0
- frogml_proto/qwak/fitness_service/constructs_pb2.py +120 -0
- frogml_proto/qwak/fitness_service/fitness_pb2.py +54 -0
- frogml_proto/qwak/fitness_service/fitness_pb2.pyi +126 -0
- frogml_proto/qwak/fitness_service/fitness_service_pb2.py +110 -0
- frogml_proto/qwak/fitness_service/fitness_service_pb2.pyi +121 -0
- frogml_proto/qwak/fitness_service/fitness_service_pb2_grpc.py +169 -0
- frogml_proto/qwak/fitness_service/status_pb2.py +128 -0
- frogml_proto/qwak/inference/feedback/feedback_pb2.py +118 -0
- frogml_proto/qwak/inference/feedback/feedback_pb2_grpc.py +100 -0
- frogml_proto/qwak/instance_template/instance_template_pb2.py +62 -0
- frogml_proto/qwak/instance_template/instance_template_pb2.pyi +108 -0
- frogml_proto/qwak/instance_template/instance_template_service_pb2.py +69 -0
- frogml_proto/qwak/instance_template/instance_template_service_pb2.pyi +79 -0
- frogml_proto/qwak/instance_template/instance_template_service_pb2_grpc.py +101 -0
- frogml_proto/qwak/integration/hugging_face_integration_pb2.py +85 -0
- frogml_proto/qwak/integration/integration_pb2.py +153 -0
- frogml_proto/qwak/integration/integration_pb2.pyi +357 -0
- frogml_proto/qwak/integration/integration_service_pb2.py +169 -0
- frogml_proto/qwak/integration/integration_service_pb2.pyi +234 -0
- frogml_proto/qwak/integration/integration_service_pb2_grpc.py +271 -0
- frogml_proto/qwak/integration/open_a_i_integration_pb2.py +85 -0
- frogml_proto/qwak/integration/opsgenie_integration_pb2.py +105 -0
- frogml_proto/qwak/integration/pagerduty_integration_pb2.py +127 -0
- frogml_proto/qwak/integration/slack_app_integration_pb2.py +127 -0
- frogml_proto/qwak/jfrog/gateway/v0/repository_pb2.py +95 -0
- frogml_proto/qwak/jfrog/gateway/v0/repository_service_pb2.py +69 -0
- frogml_proto/qwak/jfrog/gateway/v0/repository_service_pb2.pyi +71 -0
- frogml_proto/qwak/jfrog/gateway/v0/repository_service_pb2_grpc.py +101 -0
- frogml_proto/qwak/kube_deployment_captain/alert_pb2.py +120 -0
- frogml_proto/qwak/kube_deployment_captain/alerting_pb2.py +65 -0
- frogml_proto/qwak/kube_deployment_captain/batch_job_pb2.py +357 -0
- frogml_proto/qwak/kube_deployment_captain/deployment_pb2.py +182 -0
- frogml_proto/qwak/kube_deployment_captain/feature_set_deployment_pb2.py +172 -0
- frogml_proto/qwak/kube_deployment_captain/feature_set_deployment_pb2.pyi +370 -0
- frogml_proto/qwak/kube_deployment_captain/kube_deployment_captain_service_pb2.py +562 -0
- frogml_proto/qwak/kube_deployment_captain/kube_deployment_captain_service_pb2.pyi +924 -0
- frogml_proto/qwak/kube_deployment_captain/kube_deployment_captain_service_pb2_grpc.py +1226 -0
- frogml_proto/qwak/kube_deployment_captain/traffic_mapping_pb2.py +45 -0
- frogml_proto/qwak/logging/log_filter_pb2.py +66 -0
- frogml_proto/qwak/logging/log_line_pb2.py +48 -0
- frogml_proto/qwak/logging/log_reader_service_pb2.py +51 -0
- frogml_proto/qwak/logging/log_reader_service_pb2.pyi +83 -0
- frogml_proto/qwak/logging/log_reader_service_pb2_grpc.py +67 -0
- frogml_proto/qwak/logging/log_source_pb2.py +155 -0
- frogml_proto/qwak/model_descriptor/open_ai_descriptor_pb2.py +96 -0
- frogml_proto/qwak/models/models_pb2.py +427 -0
- frogml_proto/qwak/models/models_pb2.pyi +851 -0
- frogml_proto/qwak/models/models_pb2_grpc.py +402 -0
- frogml_proto/qwak/monitoring/v0/alerting_channel_management_service_pb2.py +149 -0
- frogml_proto/qwak/monitoring/v0/alerting_channel_management_service_pb2.pyi +183 -0
- frogml_proto/qwak/monitoring/v0/alerting_channel_management_service_pb2_grpc.py +237 -0
- frogml_proto/qwak/monitoring/v0/alerting_channel_pb2.py +175 -0
- frogml_proto/qwak/monitoring/v0/alerting_channel_sync_service_pb2.py +70 -0
- frogml_proto/qwak/monitoring/v0/alerting_channel_sync_service_pb2.pyi +85 -0
- frogml_proto/qwak/monitoring/v0/alerting_channel_sync_service_pb2_grpc.py +101 -0
- frogml_proto/qwak/offline/serving/v1/feature_values_pb2.py +35 -0
- frogml_proto/qwak/offline/serving/v1/offline_serving_async_service_pb2.py +148 -0
- frogml_proto/qwak/offline/serving/v1/offline_serving_async_service_pb2.pyi +279 -0
- frogml_proto/qwak/offline/serving/v1/offline_serving_async_service_pb2_grpc.py +165 -0
- frogml_proto/qwak/offline/serving/v1/options_pb2.py +35 -0
- frogml_proto/qwak/offline/serving/v1/population_pb2.py +75 -0
- frogml_proto/qwak/projects/projects_pb2.py +225 -0
- frogml_proto/qwak/projects/projects_pb2.pyi +436 -0
- frogml_proto/qwak/projects/projects_pb2_grpc.py +203 -0
- frogml_proto/qwak/prompt/v1/prompt/prompt_manager_service_pb2.py +270 -0
- frogml_proto/qwak/prompt/v1/prompt/prompt_manager_service_pb2.pyi +417 -0
- frogml_proto/qwak/prompt/v1/prompt/prompt_manager_service_pb2_grpc.py +441 -0
- frogml_proto/qwak/prompt/v1/prompt/prompt_pb2.py +237 -0
- frogml_proto/qwak/prompt/v1/prompt/prompt_pb2.pyi +415 -0
- frogml_proto/qwak/secret_service/secret_service_pb2.py +88 -0
- frogml_proto/qwak/secret_service/secret_service_pb2_grpc.py +135 -0
- frogml_proto/qwak/self_service/account/v0/account_membership_pb2.py +134 -0
- frogml_proto/qwak/self_service/account/v0/account_membership_pb2.pyi +274 -0
- frogml_proto/qwak/self_service/account/v0/account_membership_service_pb2.py +251 -0
- frogml_proto/qwak/self_service/account/v0/account_membership_service_pb2.pyi +337 -0
- frogml_proto/qwak/self_service/account/v0/account_membership_service_pb2_grpc.py +407 -0
- frogml_proto/qwak/self_service/account/v0/account_status_pb2.py +93 -0
- frogml_proto/qwak/self_service/account/v0/account_status_pb2.pyi +169 -0
- frogml_proto/qwak/self_service/account/v0/managing_account_pb2.py +155 -0
- frogml_proto/qwak/self_service/account/v0/managing_account_service_pb2.py +110 -0
- frogml_proto/qwak/self_service/account/v0/managing_account_service_pb2.pyi +136 -0
- frogml_proto/qwak/self_service/account/v0/managing_account_service_pb2_grpc.py +169 -0
- frogml_proto/qwak/self_service/user/v1/api_key_pb2.py +35 -0
- frogml_proto/qwak/self_service/user/v1/user_pb2.py +37 -0
- frogml_proto/qwak/self_service/user/v1/user_pb2.pyi +62 -0
- frogml_proto/qwak/self_service/user/v1/user_service_pb2.py +146 -0
- frogml_proto/qwak/self_service/user/v1/user_service_pb2.pyi +209 -0
- frogml_proto/qwak/self_service/user/v1/user_service_pb2_grpc.py +203 -0
- frogml_proto/qwak/traffic/v1/traffic_api_pb2.py +109 -0
- frogml_proto/qwak/traffic/v1/traffic_api_pb2.pyi +137 -0
- frogml_proto/qwak/traffic/v1/traffic_api_pb2_grpc.py +169 -0
- frogml_proto/qwak/traffic/v1/traffic_pb2.py +134 -0
- frogml_proto/qwak/user_application/common/v0/resources_pb2.py +159 -0
- frogml_proto/qwak/user_application/v0/user_application_pb2.py +69 -0
- frogml_proto/qwak/vectors/v1/collection/collection_pb2.py +128 -0
- frogml_proto/qwak/vectors/v1/collection/collection_service_pb2.py +189 -0
- frogml_proto/qwak/vectors/v1/collection/collection_service_pb2.pyi +258 -0
- frogml_proto/qwak/vectors/v1/collection/collection_service_pb2_grpc.py +304 -0
- frogml_proto/qwak/vectors/v1/collection/event/collection_event_pb2.py +36 -0
- frogml_proto/qwak/vectors/v1/filters_pb2.py +156 -0
- frogml_proto/qwak/vectors/v1/vector_pb2.py +78 -0
- frogml_proto/qwak/vectors/v1/vector_service_pb2.py +134 -0
- frogml_proto/qwak/vectors/v1/vector_service_pb2.pyi +243 -0
- frogml_proto/qwak/vectors/v1/vector_service_pb2_grpc.py +201 -0
- frogml_proto/qwak/workspace/workspace_pb2.py +135 -0
- frogml_proto/qwak/workspace/workspace_pb2.pyi +331 -0
- frogml_proto/qwak/workspace/workspace_service_pb2.py +309 -0
- frogml_proto/qwak/workspace/workspace_service_pb2.pyi +393 -0
- frogml_proto/qwak/workspace/workspace_service_pb2_grpc.py +507 -0
- frogml_services_mock/mocks/alert_manager_service_api.py +2 -2
- frogml_services_mock/mocks/alert_registry_service_api.py +3 -3
- frogml_services_mock/mocks/analytics_api.py +3 -3
- frogml_services_mock/mocks/audience_service_api.py +3 -3
- frogml_services_mock/mocks/authentication_service.py +3 -3
- frogml_services_mock/mocks/automation_management_service.py +4 -4
- frogml_services_mock/mocks/autoscaling_service_api.py +2 -2
- frogml_services_mock/mocks/batch_job_manager_service.py +6 -6
- frogml_services_mock/mocks/build_management.py +2 -2
- frogml_services_mock/mocks/build_orchestrator_build_api.py +4 -4
- frogml_services_mock/mocks/build_orchestrator_build_settings_api.py +3 -3
- frogml_services_mock/mocks/build_orchestrator_service_api.py +4 -4
- frogml_services_mock/mocks/data_versioning_service.py +3 -3
- frogml_services_mock/mocks/deployment_management_service.py +19 -21
- frogml_services_mock/mocks/ecosystem_service_api.py +3 -3
- frogml_services_mock/mocks/execution_management_service.py +2 -2
- frogml_services_mock/mocks/feature_store_data_sources_manager_api.py +3 -3
- frogml_services_mock/mocks/feature_store_entities_manager_api.py +3 -3
- frogml_services_mock/mocks/feature_store_feature_set_manager_api.py +18 -18
- frogml_services_mock/mocks/features_online_serving_api.py +3 -3
- frogml_services_mock/mocks/features_operator_v3_service.py +2 -2
- frogml_services_mock/mocks/features_set_state_service_api.py +3 -3
- frogml_services_mock/mocks/feedback_service.py +2 -2
- frogml_services_mock/mocks/file_versioning_service.py +3 -3
- frogml_services_mock/mocks/fs_offline_serving_service.py +3 -3
- frogml_services_mock/mocks/instance_template_management_service.py +5 -5
- frogml_services_mock/mocks/integration_management_service.py +4 -4
- frogml_services_mock/mocks/internal_build_orchestrator_service.py +2 -2
- frogml_services_mock/mocks/job_registry_service_api.py +3 -3
- frogml_services_mock/mocks/kube_captain_service_api.py +2 -2
- frogml_services_mock/mocks/logging_service.py +4 -4
- frogml_services_mock/mocks/model_management_service.py +2 -2
- frogml_services_mock/mocks/model_version_manager_service.py +5 -5
- frogml_services_mock/mocks/project_manager_service.py +2 -2
- frogml_services_mock/mocks/prompt_manager_service.py +26 -26
- frogml_services_mock/mocks/repository_service_mock.py +4 -4
- frogml_services_mock/mocks/secret_service.py +2 -2
- frogml_services_mock/mocks/self_service_user_service.py +2 -2
- frogml_services_mock/mocks/system_secret_service.py +3 -3
- frogml_services_mock/mocks/user_application_instance_service_api.py +3 -3
- frogml_services_mock/mocks/vector_serving_api.py +3 -3
- frogml_services_mock/mocks/vectors_management_api.py +3 -3
- frogml_services_mock/mocks/workspace_manager_service_mock.py +4 -4
- frogml_services_mock/services_mock.py +55 -49
- _frogml_proto/jfml/model_version/v1/model_repository_spec_pb2.py +0 -35
- _frogml_proto/jfml/model_version/v1/model_version_framework_pb2.py +0 -45
- _frogml_proto/jfml/model_version/v1/model_version_manager_service_pb2.py +0 -151
- _frogml_proto/jfml/model_version/v1/model_version_manager_service_pb2.pyi +0 -230
- _frogml_proto/jfml/model_version/v1/model_version_manager_service_pb2_grpc.py +0 -237
- _frogml_proto/jfml/model_version/v1/model_version_pb2.py +0 -88
- _frogml_proto/jfml/model_version/v1/model_version_pb2.pyi +0 -133
- _frogml_proto/qwak/administration/account/v1/account_pb2.py +0 -114
- _frogml_proto/qwak/administration/account/v1/account_pb2.pyi +0 -257
- _frogml_proto/qwak/administration/account/v1/account_service_pb2.py +0 -212
- _frogml_proto/qwak/administration/account/v1/account_service_pb2.pyi +0 -344
- _frogml_proto/qwak/administration/account/v1/account_service_pb2_grpc.py +0 -338
- _frogml_proto/qwak/administration/account/v1/jfrog_tenant_details_pb2.py +0 -77
- _frogml_proto/qwak/administration/account/v1/personalization_pb2.py +0 -45
- _frogml_proto/qwak/administration/account/v1/preferences_pb2.py +0 -36
- _frogml_proto/qwak/administration/account/v1/preferences_pb2.pyi +0 -35
- _frogml_proto/qwak/administration/account/v1/terms_pb2.py +0 -75
- _frogml_proto/qwak/administration/authenticated_user/v1/authenticated_user_service_pb2.py +0 -91
- _frogml_proto/qwak/administration/authenticated_user/v1/authenticated_user_service_pb2.pyi +0 -108
- _frogml_proto/qwak/administration/authenticated_user/v1/authenticated_user_service_pb2_grpc.py +0 -135
- _frogml_proto/qwak/administration/authenticated_user/v1/credentials_pb2.py +0 -46
- _frogml_proto/qwak/administration/authenticated_user/v1/details_pb2.py +0 -75
- _frogml_proto/qwak/administration/v0/authentication/authentication_service_pb2.py +0 -69
- _frogml_proto/qwak/administration/v0/authentication/authentication_service_pb2_grpc.py +0 -67
- _frogml_proto/qwak/administration/v0/environments/configuration_pb2.py +0 -93
- _frogml_proto/qwak/administration/v0/environments/environment_pb2.py +0 -66
- _frogml_proto/qwak/administration/v0/environments/environment_pb2.pyi +0 -156
- _frogml_proto/qwak/administration/v0/environments/environment_service_pb2.py +0 -184
- _frogml_proto/qwak/administration/v0/environments/environment_service_pb2.pyi +0 -274
- _frogml_proto/qwak/administration/v0/environments/environment_service_pb2_grpc.py +0 -272
- _frogml_proto/qwak/administration/v0/environments/personalization_pb2.py +0 -45
- _frogml_proto/qwak/administration/v0/users/user_pb2.py +0 -97
- _frogml_proto/qwak/admiral/secret/v0/secret_pb2.py +0 -140
- _frogml_proto/qwak/admiral/secret/v0/secret_service_pb2.py +0 -89
- _frogml_proto/qwak/admiral/secret/v0/secret_service_pb2.pyi +0 -93
- _frogml_proto/qwak/admiral/secret/v0/secret_service_pb2_grpc.py +0 -135
- _frogml_proto/qwak/admiral/secret/v0/system_secret_service_pb2.py +0 -89
- _frogml_proto/qwak/admiral/secret/v0/system_secret_service_pb2.pyi +0 -101
- _frogml_proto/qwak/admiral/secret/v0/system_secret_service_pb2_grpc.py +0 -135
- _frogml_proto/qwak/admiral/user_application_instance/v0/user_application_instance_pb2.py +0 -198
- _frogml_proto/qwak/admiral/user_application_instance/v0/user_application_instance_pb2.pyi +0 -431
- _frogml_proto/qwak/admiral/user_application_instance/v0/user_application_instance_service_pb2.py +0 -109
- _frogml_proto/qwak/admiral/user_application_instance/v0/user_application_instance_service_pb2.pyi +0 -128
- _frogml_proto/qwak/admiral/user_application_instance/v0/user_application_instance_service_pb2_grpc.py +0 -169
- _frogml_proto/qwak/analytics/analytics_pb2.py +0 -142
- _frogml_proto/qwak/analytics/analytics_service_pb2.py +0 -229
- _frogml_proto/qwak/analytics/analytics_service_pb2.pyi +0 -339
- _frogml_proto/qwak/analytics/analytics_service_pb2_grpc.py +0 -370
- _frogml_proto/qwak/audience/v1/audience_api_pb2.py +0 -149
- _frogml_proto/qwak/audience/v1/audience_api_pb2.pyi +0 -176
- _frogml_proto/qwak/audience/v1/audience_api_pb2_grpc.py +0 -240
- _frogml_proto/qwak/audience/v1/audience_pb2.py +0 -137
- _frogml_proto/qwak/auto_scaling/v1/auto_scaling_pb2.py +0 -100
- _frogml_proto/qwak/auto_scaling/v1/auto_scaling_service_pb2.py +0 -49
- _frogml_proto/qwak/auto_scaling/v1/auto_scaling_service_pb2.pyi +0 -55
- _frogml_proto/qwak/auto_scaling/v1/auto_scaling_service_pb2_grpc.py +0 -67
- _frogml_proto/qwak/automation/v1/action_pb2.py +0 -220
- _frogml_proto/qwak/automation/v1/action_pb2.pyi +0 -513
- _frogml_proto/qwak/automation/v1/auto_scaling_pb2.py +0 -97
- _frogml_proto/qwak/automation/v1/automation_execution_pb2.py +0 -65
- _frogml_proto/qwak/automation/v1/automation_management_service_pb2.py +0 -283
- _frogml_proto/qwak/automation/v1/automation_management_service_pb2.pyi +0 -386
- _frogml_proto/qwak/automation/v1/automation_management_service_pb2_grpc.py +0 -429
- _frogml_proto/qwak/automation/v1/automation_pb2.py +0 -59
- _frogml_proto/qwak/automation/v1/automation_pb2.pyi +0 -121
- _frogml_proto/qwak/automation/v1/common_pb2.py +0 -56
- _frogml_proto/qwak/automation/v1/notification_pb2.py +0 -93
- _frogml_proto/qwak/automation/v1/trigger_pb2.py +0 -76
- _frogml_proto/qwak/automation/v1/trigger_pb2.pyi +0 -112
- _frogml_proto/qwak/batch_job/v1/batch_job_events_pb2.py +0 -148
- _frogml_proto/qwak/batch_job/v1/batch_job_events_pb2.pyi +0 -307
- _frogml_proto/qwak/batch_job/v1/batch_job_resources_pb2.py +0 -47
- _frogml_proto/qwak/batch_job/v1/batch_job_service_pb2.py +0 -570
- _frogml_proto/qwak/batch_job/v1/batch_job_service_pb2.pyi +0 -1328
- _frogml_proto/qwak/batch_job/v1/batch_job_service_pb2_grpc.py +0 -574
- _frogml_proto/qwak/build/v1/build_api_pb2.py +0 -446
- _frogml_proto/qwak/build/v1/build_api_pb2.pyi +0 -682
- _frogml_proto/qwak/build/v1/build_api_pb2_grpc.py +0 -594
- _frogml_proto/qwak/build/v1/build_pb2.py +0 -575
- _frogml_proto/qwak/build/v1/build_pb2.pyi +0 -1328
- _frogml_proto/qwak/build_settings/build_settings_api_pb2.py +0 -89
- _frogml_proto/qwak/build_settings/build_settings_api_pb2.pyi +0 -106
- _frogml_proto/qwak/build_settings/build_settings_api_pb2_grpc.py +0 -132
- _frogml_proto/qwak/build_settings/build_settings_pb2.py +0 -95
- _frogml_proto/qwak/builds/build_pb2.py +0 -233
- _frogml_proto/qwak/builds/build_pb2.pyi +0 -582
- _frogml_proto/qwak/builds/build_url_pb2.py +0 -86
- _frogml_proto/qwak/builds/builds_orchestrator_service_pb2.py +0 -212
- _frogml_proto/qwak/builds/builds_orchestrator_service_pb2.pyi +0 -322
- _frogml_proto/qwak/builds/builds_orchestrator_service_pb2_grpc.py +0 -306
- _frogml_proto/qwak/builds/builds_pb2.py +0 -556
- _frogml_proto/qwak/builds/builds_pb2.pyi +0 -1271
- _frogml_proto/qwak/builds/builds_pb2_grpc.py +0 -237
- _frogml_proto/qwak/builds/internal_builds_orchestrator_service_pb2.py +0 -59
- _frogml_proto/qwak/builds/internal_builds_orchestrator_service_pb2.pyi +0 -64
- _frogml_proto/qwak/builds/internal_builds_orchestrator_service_pb2_grpc.py +0 -67
- _frogml_proto/qwak/data_versioning/data_versioning_pb2.py +0 -45
- _frogml_proto/qwak/data_versioning/data_versioning_service_pb2.py +0 -69
- _frogml_proto/qwak/data_versioning/data_versioning_service_pb2.pyi +0 -83
- _frogml_proto/qwak/data_versioning/data_versioning_service_pb2_grpc.py +0 -101
- _frogml_proto/qwak/deployment/alert_pb2.py +0 -131
- _frogml_proto/qwak/deployment/alert_service_pb2.py +0 -153
- _frogml_proto/qwak/deployment/alert_service_pb2.pyi +0 -218
- _frogml_proto/qwak/deployment/alert_service_pb2_grpc.py +0 -237
- _frogml_proto/qwak/deployment/deployment_messages_pb2.py +0 -36
- _frogml_proto/qwak/deployment/deployment_messages_pb2.pyi +0 -61
- _frogml_proto/qwak/deployment/deployment_pb2.py +0 -644
- _frogml_proto/qwak/deployment/deployment_pb2.pyi +0 -1582
- _frogml_proto/qwak/deployment/deployment_service_pb2.py +0 -520
- _frogml_proto/qwak/deployment/deployment_service_pb2.pyi +0 -817
- _frogml_proto/qwak/deployment/deployment_service_pb2_grpc.py +0 -509
- _frogml_proto/qwak/ecosystem/v0/credentials_pb2.py +0 -56
- _frogml_proto/qwak/ecosystem/v0/ecosystem_pb2.py +0 -173
- _frogml_proto/qwak/ecosystem/v0/ecosystem_pb2.pyi +0 -332
- _frogml_proto/qwak/ecosystem/v0/ecosystem_runtime_service_pb2.py +0 -264
- _frogml_proto/qwak/ecosystem/v0/ecosystem_runtime_service_pb2.pyi +0 -434
- _frogml_proto/qwak/ecosystem/v0/ecosystem_runtime_service_pb2_grpc.py +0 -238
- _frogml_proto/qwak/execution/v1/backfill_pb2.py +0 -97
- _frogml_proto/qwak/execution/v1/backfill_pb2.pyi +0 -167
- _frogml_proto/qwak/execution/v1/batch_pb2.py +0 -56
- _frogml_proto/qwak/execution/v1/deletion_pb2.py +0 -65
- _frogml_proto/qwak/execution/v1/execution_pb2.py +0 -96
- _frogml_proto/qwak/execution/v1/execution_pb2.pyi +0 -201
- _frogml_proto/qwak/execution/v1/execution_service_pb2.py +0 -294
- _frogml_proto/qwak/execution/v1/execution_service_pb2.pyi +0 -431
- _frogml_proto/qwak/execution/v1/execution_service_pb2_grpc.py +0 -467
- _frogml_proto/qwak/execution/v1/jobs/job_pb2.py +0 -101
- _frogml_proto/qwak/execution/v1/jobs/job_pb2.pyi +0 -282
- _frogml_proto/qwak/execution/v1/jobs/job_service_pb2.py +0 -270
- _frogml_proto/qwak/execution/v1/jobs/job_service_pb2.pyi +0 -469
- _frogml_proto/qwak/execution/v1/jobs/job_service_pb2_grpc.py +0 -396
- _frogml_proto/qwak/execution/v1/jobs/reports/report_pb2.py +0 -109
- _frogml_proto/qwak/execution/v1/jobs/reports/report_pb2.pyi +0 -266
- _frogml_proto/qwak/execution/v1/state/execution_state_pb2.py +0 -36
- _frogml_proto/qwak/execution/v1/state/execution_state_pb2.pyi +0 -45
- _frogml_proto/qwak/execution/v1/state/execution_state_service_pb2.py +0 -150
- _frogml_proto/qwak/execution/v1/state/execution_state_service_pb2.pyi +0 -192
- _frogml_proto/qwak/execution/v1/state/execution_state_service_pb2_grpc.py +0 -237
- _frogml_proto/qwak/execution/v1/state/featureset_state_pb2.py +0 -35
- _frogml_proto/qwak/execution/v1/state/spark_execution_state_pb2.py +0 -91
- _frogml_proto/qwak/execution/v1/streaming_aggregation_pb2.py +0 -75
- _frogml_proto/qwak/execution/v1/streaming_pb2.py +0 -65
- _frogml_proto/qwak/feature_store/entities/entity_pb2.py +0 -79
- _frogml_proto/qwak/feature_store/entities/entity_service_pb2.py +0 -149
- _frogml_proto/qwak/feature_store/entities/entity_service_pb2.pyi +0 -203
- _frogml_proto/qwak/feature_store/entities/entity_service_pb2_grpc.py +0 -237
- _frogml_proto/qwak/feature_store/features/aggregation_pb2.py +0 -196
- _frogml_proto/qwak/feature_store/features/deployment_pb2.py +0 -189
- _frogml_proto/qwak/feature_store/features/deployment_service_pb2.py +0 -49
- _frogml_proto/qwak/feature_store/features/deployment_service_pb2.pyi +0 -45
- _frogml_proto/qwak/feature_store/features/deployment_service_pb2_grpc.py +0 -67
- _frogml_proto/qwak/feature_store/features/execution_pb2.py +0 -77
- _frogml_proto/qwak/feature_store/features/feature_set_attribute_pb2.py +0 -36
- _frogml_proto/qwak/feature_store/features/feature_set_attribute_pb2.pyi +0 -33
- _frogml_proto/qwak/feature_store/features/feature_set_pb2.py +0 -198
- _frogml_proto/qwak/feature_store/features/feature_set_pb2.pyi +0 -443
- _frogml_proto/qwak/feature_store/features/feature_set_service_pb2.py +0 -467
- _frogml_proto/qwak/feature_store/features/feature_set_service_pb2.pyi +0 -663
- _frogml_proto/qwak/feature_store/features/feature_set_service_pb2_grpc.py +0 -746
- _frogml_proto/qwak/feature_store/features/feature_set_state_pb2.py +0 -203
- _frogml_proto/qwak/feature_store/features/feature_set_state_service_pb2.py +0 -129
- _frogml_proto/qwak/feature_store/features/feature_set_state_service_pb2.pyi +0 -175
- _frogml_proto/qwak/feature_store/features/feature_set_state_service_pb2_grpc.py +0 -203
- _frogml_proto/qwak/feature_store/features/feature_set_types_pb2.py +0 -381
- _frogml_proto/qwak/feature_store/features/feature_set_types_pb2.pyi +0 -862
- _frogml_proto/qwak/feature_store/features/monitoring_pb2.py +0 -55
- _frogml_proto/qwak/feature_store/features/real_time_feature_extractor_pb2.py +0 -167
- _frogml_proto/qwak/feature_store/features/real_time_feature_extractor_pb2.pyi +0 -359
- _frogml_proto/qwak/feature_store/jobs/job_pb2.py +0 -68
- _frogml_proto/qwak/feature_store/jobs/job_service_pb2.py +0 -149
- _frogml_proto/qwak/feature_store/jobs/job_service_pb2.pyi +0 -237
- _frogml_proto/qwak/feature_store/jobs/job_service_pb2_grpc.py +0 -237
- _frogml_proto/qwak/feature_store/jobs/v1/job_pb2.py +0 -67
- _frogml_proto/qwak/feature_store/jobs/v1/job_service_pb2.py +0 -210
- _frogml_proto/qwak/feature_store/jobs/v1/job_service_pb2.pyi +0 -349
- _frogml_proto/qwak/feature_store/jobs/v1/job_service_pb2_grpc.py +0 -338
- _frogml_proto/qwak/feature_store/platform/platform_details_pb2.py +0 -46
- _frogml_proto/qwak/feature_store/platform/platform_details_pb2.pyi +0 -54
- _frogml_proto/qwak/feature_store/reports/report_pb2.py +0 -75
- _frogml_proto/qwak/feature_store/repository/common/platform_pb2.py +0 -55
- _frogml_proto/qwak/feature_store/serving/management_pb2.py +0 -69
- _frogml_proto/qwak/feature_store/serving/management_pb2.pyi +0 -72
- _frogml_proto/qwak/feature_store/serving/management_pb2_grpc.py +0 -101
- _frogml_proto/qwak/feature_store/serving/metadata_pb2.py +0 -67
- _frogml_proto/qwak/feature_store/serving/metadata_pb2.pyi +0 -158
- _frogml_proto/qwak/feature_store/serving/serving_pb2.py +0 -254
- _frogml_proto/qwak/feature_store/serving/serving_pb2_grpc.py +0 -101
- _frogml_proto/qwak/feature_store/serving/v1/value_pb2.py +0 -46
- _frogml_proto/qwak/feature_store/sinks/sink_pb2.py +0 -76
- _frogml_proto/qwak/feature_store/sinks/sink_pb2.pyi +0 -137
- _frogml_proto/qwak/feature_store/sources/batch_pb2.py +0 -362
- _frogml_proto/qwak/feature_store/sources/data_source_attribute_pb2.py +0 -36
- _frogml_proto/qwak/feature_store/sources/data_source_attribute_pb2.pyi +0 -33
- _frogml_proto/qwak/feature_store/sources/data_source_pb2.py +0 -84
- _frogml_proto/qwak/feature_store/sources/data_source_pb2.pyi +0 -169
- _frogml_proto/qwak/feature_store/sources/data_source_service_pb2.py +0 -169
- _frogml_proto/qwak/feature_store/sources/data_source_service_pb2.pyi +0 -237
- _frogml_proto/qwak/feature_store/sources/data_source_service_pb2_grpc.py +0 -305
- _frogml_proto/qwak/feature_store/sources/streaming_pb2.py +0 -175
- _frogml_proto/qwak/feature_store/v1/common/source_code/source_code_pb2.py +0 -55
- _frogml_proto/qwak/feature_store/v1/internal/data_source/data_source_service_pb2.py +0 -68
- _frogml_proto/qwak/feature_store/v1/internal/data_source/data_source_service_pb2_grpc.py +0 -99
- _frogml_proto/qwak/feature_store/v1/internal/featureset/featureset_token_service_pb2.py +0 -48
- _frogml_proto/qwak/feature_store/v1/internal/featureset/featureset_token_service_pb2_grpc.py +0 -66
- _frogml_proto/qwak/features_operator/v1/features_operator_pb2.py +0 -76
- _frogml_proto/qwak/features_operator/v1/features_operator_service_pb2.py +0 -69
- _frogml_proto/qwak/features_operator/v1/features_operator_service_pb2.pyi +0 -98
- _frogml_proto/qwak/features_operator/v1/features_operator_service_pb2_grpc.py +0 -99
- _frogml_proto/qwak/features_operator/v2/features_operator_pb2.py +0 -86
- _frogml_proto/qwak/features_operator/v2/features_operator_service_pb2.py +0 -61
- _frogml_proto/qwak/features_operator/v2/features_operator_service_pb2.pyi +0 -89
- _frogml_proto/qwak/features_operator/v2/features_operator_service_pb2_grpc.py +0 -99
- _frogml_proto/qwak/features_operator/v3/features_operator_async_service_pb2.py +0 -132
- _frogml_proto/qwak/features_operator/v3/features_operator_async_service_pb2.pyi +0 -218
- _frogml_proto/qwak/features_operator/v3/features_operator_async_service_pb2_grpc.py +0 -165
- _frogml_proto/qwak/features_operator/v3/features_operator_pb2.py +0 -86
- _frogml_proto/qwak/file_versioning/file_versioning_pb2.py +0 -56
- _frogml_proto/qwak/file_versioning/file_versioning_service_pb2.py +0 -69
- _frogml_proto/qwak/file_versioning/file_versioning_service_pb2.pyi +0 -83
- _frogml_proto/qwak/file_versioning/file_versioning_service_pb2_grpc.py +0 -101
- _frogml_proto/qwak/fitness_service/constructs_pb2.py +0 -120
- _frogml_proto/qwak/fitness_service/fitness_pb2.py +0 -54
- _frogml_proto/qwak/fitness_service/fitness_pb2.pyi +0 -126
- _frogml_proto/qwak/fitness_service/fitness_service_pb2.py +0 -110
- _frogml_proto/qwak/fitness_service/fitness_service_pb2.pyi +0 -121
- _frogml_proto/qwak/fitness_service/fitness_service_pb2_grpc.py +0 -169
- _frogml_proto/qwak/fitness_service/status_pb2.py +0 -128
- _frogml_proto/qwak/inference/feedback/feedback_pb2.py +0 -118
- _frogml_proto/qwak/inference/feedback/feedback_pb2_grpc.py +0 -100
- _frogml_proto/qwak/instance_template/instance_template_pb2.py +0 -62
- _frogml_proto/qwak/instance_template/instance_template_pb2.pyi +0 -108
- _frogml_proto/qwak/instance_template/instance_template_service_pb2.py +0 -69
- _frogml_proto/qwak/instance_template/instance_template_service_pb2.pyi +0 -79
- _frogml_proto/qwak/instance_template/instance_template_service_pb2_grpc.py +0 -101
- _frogml_proto/qwak/integration/hugging_face_integration_pb2.py +0 -85
- _frogml_proto/qwak/integration/integration_pb2.py +0 -153
- _frogml_proto/qwak/integration/integration_pb2.pyi +0 -357
- _frogml_proto/qwak/integration/integration_service_pb2.py +0 -169
- _frogml_proto/qwak/integration/integration_service_pb2.pyi +0 -234
- _frogml_proto/qwak/integration/integration_service_pb2_grpc.py +0 -271
- _frogml_proto/qwak/integration/open_a_i_integration_pb2.py +0 -85
- _frogml_proto/qwak/integration/opsgenie_integration_pb2.py +0 -105
- _frogml_proto/qwak/integration/pagerduty_integration_pb2.py +0 -127
- _frogml_proto/qwak/integration/slack_app_integration_pb2.py +0 -127
- _frogml_proto/qwak/jfrog/gateway/v0/repository_pb2.py +0 -95
- _frogml_proto/qwak/jfrog/gateway/v0/repository_service_pb2.py +0 -69
- _frogml_proto/qwak/jfrog/gateway/v0/repository_service_pb2.pyi +0 -71
- _frogml_proto/qwak/jfrog/gateway/v0/repository_service_pb2_grpc.py +0 -101
- _frogml_proto/qwak/kube_deployment_captain/alert_pb2.py +0 -120
- _frogml_proto/qwak/kube_deployment_captain/alerting_pb2.py +0 -65
- _frogml_proto/qwak/kube_deployment_captain/batch_job_pb2.py +0 -357
- _frogml_proto/qwak/kube_deployment_captain/deployment_pb2.py +0 -182
- _frogml_proto/qwak/kube_deployment_captain/feature_set_deployment_pb2.py +0 -172
- _frogml_proto/qwak/kube_deployment_captain/feature_set_deployment_pb2.pyi +0 -370
- _frogml_proto/qwak/kube_deployment_captain/kube_deployment_captain_service_pb2.py +0 -562
- _frogml_proto/qwak/kube_deployment_captain/kube_deployment_captain_service_pb2.pyi +0 -924
- _frogml_proto/qwak/kube_deployment_captain/kube_deployment_captain_service_pb2_grpc.py +0 -1226
- _frogml_proto/qwak/kube_deployment_captain/traffic_mapping_pb2.py +0 -45
- _frogml_proto/qwak/logging/log_filter_pb2.py +0 -66
- _frogml_proto/qwak/logging/log_line_pb2.py +0 -48
- _frogml_proto/qwak/logging/log_reader_service_pb2.py +0 -51
- _frogml_proto/qwak/logging/log_reader_service_pb2.pyi +0 -83
- _frogml_proto/qwak/logging/log_reader_service_pb2_grpc.py +0 -67
- _frogml_proto/qwak/logging/log_source_pb2.py +0 -155
- _frogml_proto/qwak/model_descriptor/open_ai_descriptor_pb2.py +0 -96
- _frogml_proto/qwak/models/models_pb2.py +0 -427
- _frogml_proto/qwak/models/models_pb2.pyi +0 -851
- _frogml_proto/qwak/models/models_pb2_grpc.py +0 -402
- _frogml_proto/qwak/monitoring/v0/alerting_channel_management_service_pb2.py +0 -149
- _frogml_proto/qwak/monitoring/v0/alerting_channel_management_service_pb2.pyi +0 -183
- _frogml_proto/qwak/monitoring/v0/alerting_channel_management_service_pb2_grpc.py +0 -237
- _frogml_proto/qwak/monitoring/v0/alerting_channel_pb2.py +0 -175
- _frogml_proto/qwak/monitoring/v0/alerting_channel_sync_service_pb2.py +0 -70
- _frogml_proto/qwak/monitoring/v0/alerting_channel_sync_service_pb2.pyi +0 -85
- _frogml_proto/qwak/monitoring/v0/alerting_channel_sync_service_pb2_grpc.py +0 -101
- _frogml_proto/qwak/offline/serving/v1/feature_values_pb2.py +0 -35
- _frogml_proto/qwak/offline/serving/v1/offline_serving_async_service_pb2.py +0 -148
- _frogml_proto/qwak/offline/serving/v1/offline_serving_async_service_pb2.pyi +0 -279
- _frogml_proto/qwak/offline/serving/v1/offline_serving_async_service_pb2_grpc.py +0 -165
- _frogml_proto/qwak/offline/serving/v1/options_pb2.py +0 -35
- _frogml_proto/qwak/offline/serving/v1/population_pb2.py +0 -75
- _frogml_proto/qwak/projects/projects_pb2.py +0 -225
- _frogml_proto/qwak/projects/projects_pb2.pyi +0 -436
- _frogml_proto/qwak/projects/projects_pb2_grpc.py +0 -203
- _frogml_proto/qwak/prompt/v1/prompt/prompt_manager_service_pb2.py +0 -270
- _frogml_proto/qwak/prompt/v1/prompt/prompt_manager_service_pb2.pyi +0 -417
- _frogml_proto/qwak/prompt/v1/prompt/prompt_manager_service_pb2_grpc.py +0 -441
- _frogml_proto/qwak/prompt/v1/prompt/prompt_pb2.py +0 -237
- _frogml_proto/qwak/prompt/v1/prompt/prompt_pb2.pyi +0 -415
- _frogml_proto/qwak/secret_service/secret_service_pb2.py +0 -88
- _frogml_proto/qwak/secret_service/secret_service_pb2_grpc.py +0 -135
- _frogml_proto/qwak/self_service/account/v0/account_membership_pb2.py +0 -134
- _frogml_proto/qwak/self_service/account/v0/account_membership_pb2.pyi +0 -274
- _frogml_proto/qwak/self_service/account/v0/account_membership_service_pb2.py +0 -251
- _frogml_proto/qwak/self_service/account/v0/account_membership_service_pb2.pyi +0 -337
- _frogml_proto/qwak/self_service/account/v0/account_membership_service_pb2_grpc.py +0 -407
- _frogml_proto/qwak/self_service/account/v0/account_status_pb2.py +0 -93
- _frogml_proto/qwak/self_service/account/v0/account_status_pb2.pyi +0 -169
- _frogml_proto/qwak/self_service/account/v0/managing_account_pb2.py +0 -155
- _frogml_proto/qwak/self_service/account/v0/managing_account_service_pb2.py +0 -110
- _frogml_proto/qwak/self_service/account/v0/managing_account_service_pb2.pyi +0 -136
- _frogml_proto/qwak/self_service/account/v0/managing_account_service_pb2_grpc.py +0 -169
- _frogml_proto/qwak/self_service/user/v1/api_key_pb2.py +0 -35
- _frogml_proto/qwak/self_service/user/v1/user_pb2.py +0 -37
- _frogml_proto/qwak/self_service/user/v1/user_pb2.pyi +0 -62
- _frogml_proto/qwak/self_service/user/v1/user_service_pb2.py +0 -146
- _frogml_proto/qwak/self_service/user/v1/user_service_pb2.pyi +0 -209
- _frogml_proto/qwak/self_service/user/v1/user_service_pb2_grpc.py +0 -203
- _frogml_proto/qwak/traffic/v1/traffic_api_pb2.py +0 -109
- _frogml_proto/qwak/traffic/v1/traffic_api_pb2.pyi +0 -137
- _frogml_proto/qwak/traffic/v1/traffic_api_pb2_grpc.py +0 -169
- _frogml_proto/qwak/traffic/v1/traffic_pb2.py +0 -134
- _frogml_proto/qwak/user_application/common/v0/resources_pb2.py +0 -159
- _frogml_proto/qwak/user_application/v0/user_application_pb2.py +0 -69
- _frogml_proto/qwak/vectors/v1/collection/collection_pb2.py +0 -128
- _frogml_proto/qwak/vectors/v1/collection/collection_service_pb2.py +0 -189
- _frogml_proto/qwak/vectors/v1/collection/collection_service_pb2.pyi +0 -258
- _frogml_proto/qwak/vectors/v1/collection/collection_service_pb2_grpc.py +0 -304
- _frogml_proto/qwak/vectors/v1/collection/event/collection_event_pb2.py +0 -36
- _frogml_proto/qwak/vectors/v1/filters_pb2.py +0 -156
- _frogml_proto/qwak/vectors/v1/vector_pb2.py +0 -78
- _frogml_proto/qwak/vectors/v1/vector_service_pb2.py +0 -134
- _frogml_proto/qwak/vectors/v1/vector_service_pb2.pyi +0 -243
- _frogml_proto/qwak/vectors/v1/vector_service_pb2_grpc.py +0 -201
- _frogml_proto/qwak/workspace/workspace_pb2.py +0 -135
- _frogml_proto/qwak/workspace/workspace_pb2.pyi +0 -331
- _frogml_proto/qwak/workspace/workspace_service_pb2.py +0 -309
- _frogml_proto/qwak/workspace/workspace_service_pb2.pyi +0 -393
- _frogml_proto/qwak/workspace/workspace_service_pb2_grpc.py +0 -507
- frogml/__init__.py +0 -16
- frogml/automations/__init__.py +0 -70
- frogml/automations/automation_executions.py +0 -99
- frogml/automations/automations.py +0 -396
- frogml/automations/batch_execution_action.py +0 -336
- frogml/automations/build_and_deploy_action.py +0 -840
- frogml/automations/common.py +0 -106
- frogml/clients/_inner/edge_communications.py +0 -24
- frogml/clients/administration/authenticated_user/client.py +0 -41
- frogml/clients/administration/authentication/client.py +0 -34
- frogml/clients/administration/eco_system/client.py +0 -152
- frogml/clients/administration/eco_system/eco_system_utils.py +0 -15
- frogml/clients/administration/environment/client.py +0 -77
- frogml/clients/administration/self_service/client.py +0 -73
- frogml/clients/alert_management/client.py +0 -64
- frogml/clients/alerts_registry/channel.py +0 -132
- frogml/clients/alerts_registry/client.py +0 -137
- frogml/clients/analytics/client.py +0 -82
- frogml/clients/audience/client.py +0 -53
- frogml/clients/automation_management/client.py +0 -274
- frogml/clients/autoscaling/client.py +0 -34
- frogml/clients/batch_job_management/client.py +0 -544
- frogml/clients/batch_job_management/executions_config.py +0 -201
- frogml/clients/build_management/client.py +0 -115
- frogml/clients/build_orchestrator/build_model_request_getter.py +0 -138
- frogml/clients/build_orchestrator/client.py +0 -456
- frogml/clients/build_orchestrator/internal_client.py +0 -114
- frogml/clients/data_versioning/client.py +0 -76
- frogml/clients/data_versioning/data_tag_filter.py +0 -32
- frogml/clients/deployment/client.py +0 -191
- frogml/clients/feature_store/execution_management_client.py +0 -102
- frogml/clients/feature_store/job_registry_client.py +0 -71
- frogml/clients/feature_store/management_client.py +0 -570
- frogml/clients/feature_store/offline_serving_client.py +0 -249
- frogml/clients/feature_store/operator_client.py +0 -164
- frogml/clients/file_versioning/client.py +0 -77
- frogml/clients/file_versioning/file_tag_filter.py +0 -32
- frogml/clients/instance_template/client.py +0 -67
- frogml/clients/integration_management/integration_manager_client.py +0 -35
- frogml/clients/integration_management/integration_utils.py +0 -27
- frogml/clients/integration_management/openai/openai_system_secret.py +0 -56
- frogml/clients/jfrog_gateway/client.py +0 -42
- frogml/clients/kube_deployment_captain/client.py +0 -233
- frogml/clients/logging_client/client.py +0 -148
- frogml/clients/model_management/client.py +0 -128
- frogml/clients/model_version_manager/client.py +0 -108
- frogml/clients/project/client.py +0 -60
- frogml/clients/prompt_manager/model_descriptor_mapper.py +0 -196
- frogml/clients/prompt_manager/prompt_manager_client.py +0 -190
- frogml/clients/prompt_manager/prompt_proto_mapper.py +0 -262
- frogml/clients/secret_service/client.py +0 -96
- frogml/clients/system_secret/system_secret_client.py +0 -31
- frogml/clients/user_application_instance/client.py +0 -177
- frogml/clients/vector_store/management_client.py +0 -127
- frogml/clients/vector_store/serving_client.py +0 -157
- frogml/clients/workspace_manager/client.py +0 -224
- frogml/exceptions/frogml_external_exception.py +0 -11
- frogml/feature_store/_common/artifact_utils.py +0 -57
- frogml/feature_store/_common/feature_set_utils.py +0 -261
- frogml/feature_store/_common/featureset_asterisk_handler.py +0 -115
- frogml/feature_store/_common/packaging.py +0 -244
- frogml/feature_store/_common/source_code_spec.py +0 -62
- frogml/feature_store/_common/source_code_spec_factory.py +0 -51
- frogml/feature_store/data_sources/__init__.py +0 -65
- frogml/feature_store/data_sources/attributes.py +0 -25
- frogml/feature_store/data_sources/base.py +0 -121
- frogml/feature_store/data_sources/batch/_batch.py +0 -9
- frogml/feature_store/data_sources/batch/_jdbc.py +0 -22
- frogml/feature_store/data_sources/batch/athena.py +0 -272
- frogml/feature_store/data_sources/batch/big_query.py +0 -80
- frogml/feature_store/data_sources/batch/clickhouse.py +0 -60
- frogml/feature_store/data_sources/batch/csv.py +0 -62
- frogml/feature_store/data_sources/batch/elastic_search.py +0 -61
- frogml/feature_store/data_sources/batch/filesystem/aws.py +0 -93
- frogml/feature_store/data_sources/batch/filesystem/gcp.py +0 -54
- frogml/feature_store/data_sources/batch/filesystem/utils.py +0 -59
- frogml/feature_store/data_sources/batch/mongodb.py +0 -58
- frogml/feature_store/data_sources/batch/mysql.py +0 -50
- frogml/feature_store/data_sources/batch/parquet.py +0 -57
- frogml/feature_store/data_sources/batch/postgres.py +0 -50
- frogml/feature_store/data_sources/batch/redshift.py +0 -85
- frogml/feature_store/data_sources/batch/snowflake.py +0 -77
- frogml/feature_store/data_sources/batch/vertica.py +0 -58
- frogml/feature_store/data_sources/source_authentication.py +0 -35
- frogml/feature_store/data_sources/streaming/_streaming.py +0 -9
- frogml/feature_store/data_sources/streaming/kafka/__init__.py +0 -25
- frogml/feature_store/data_sources/streaming/kafka/authentication.py +0 -124
- frogml/feature_store/data_sources/streaming/kafka/deserialization.py +0 -115
- frogml/feature_store/data_sources/streaming/kafka/kafka.py +0 -121
- frogml/feature_store/data_sources/time_partition_columns.py +0 -178
- frogml/feature_store/entities/entity.py +0 -73
- frogml/feature_store/execution/backfill.py +0 -197
- frogml/feature_store/execution/execution.py +0 -595
- frogml/feature_store/execution/execution_query.py +0 -91
- frogml/feature_store/feature_sets/_utils/_featureset_utils.py +0 -45
- frogml/feature_store/feature_sets/backfill.py +0 -72
- frogml/feature_store/feature_sets/base_feature_set.py +0 -148
- frogml/feature_store/feature_sets/batch.py +0 -472
- frogml/feature_store/feature_sets/execution_spec.py +0 -75
- frogml/feature_store/feature_sets/metadata.py +0 -75
- frogml/feature_store/feature_sets/read_policies.py +0 -245
- frogml/feature_store/feature_sets/streaming.py +0 -635
- frogml/feature_store/feature_sets/streaming_backfill.py +0 -266
- frogml/feature_store/feature_sets/transformations/__init__.py +0 -35
- frogml/feature_store/feature_sets/transformations/aggregations/aggregations.py +0 -443
- frogml/feature_store/feature_sets/transformations/aggregations/windows.py +0 -70
- frogml/feature_store/feature_sets/transformations/functions/__init__.py +0 -10
- frogml/feature_store/feature_sets/transformations/functions/frogml_pandas.py +0 -64
- frogml/feature_store/feature_sets/transformations/transformations.py +0 -467
- frogml/feature_store/feature_sets/transformations/validations/validations_util.py +0 -78
- frogml/feature_store/offline/__init__.py +0 -4
- frogml/feature_store/offline/_offline_serving_validations.py +0 -32
- frogml/feature_store/offline/athena/athena_query_engine.py +0 -154
- frogml/feature_store/offline/client.py +0 -719
- frogml/feature_store/offline/client_v2.py +0 -338
- frogml/feature_store/offline/feature_set_features.py +0 -25
- frogml/feature_store/online/client.py +0 -352
- frogml/feature_store/online/endpoint_utils.py +0 -65
- frogml/feature_store/sinks/base.py +0 -18
- frogml/feature_store/sinks/kafka.py +0 -59
- frogml/feature_store/sinks/streaming/attachment.py +0 -34
- frogml/feature_store/sinks/streaming/factory.py +0 -60
- frogml/feature_store/validations/validation_options.py +0 -82
- frogml/feature_store/validations/validation_response.py +0 -121
- frogml/feature_store/validations/validator.py +0 -106
- frogml/frogml_client/batch_jobs/execution.py +0 -49
- frogml/frogml_client/batch_jobs/task.py +0 -43
- frogml/frogml_client/build_api_helpers/build_api_steps.py +0 -53
- frogml/frogml_client/build_api_helpers/trigger_build_api.py +0 -65
- frogml/frogml_client/builds/build.py +0 -97
- frogml/frogml_client/builds/filters/metric_filter.py +0 -38
- frogml/frogml_client/builds/filters/parameter_filter.py +0 -36
- frogml/frogml_client/client.py +0 -874
- frogml/frogml_client/data_versioning/data_tag.py +0 -24
- frogml/frogml_client/deployments/deployment.py +0 -409
- frogml/frogml_client/file_versioning/file_tag.py +0 -24
- frogml/frogml_client/models/model.py +0 -52
- frogml/frogml_client/models/model_metadata.py +0 -31
- frogml/frogml_client/projects/project.py +0 -56
- frogml/inner/build_config/build_config_v1.py +0 -313
- frogml/inner/build_logic/build_loggers/trigger_build_logger.py +0 -50
- frogml/inner/build_logic/execute_build_pipeline.py +0 -64
- frogml/inner/build_logic/interface/context_interface.py +0 -56
- frogml/inner/build_logic/interface/phase_run_handler.py +0 -71
- frogml/inner/build_logic/interface/step_inteface.py +0 -26
- frogml/inner/build_logic/phases/phase_010_fetch_model/fetch_model_step.py +0 -41
- frogml/inner/build_logic/phases/phase_010_fetch_model/fetch_strategy_manager/common.py +0 -32
- frogml/inner/build_logic/phases/phase_010_fetch_model/fetch_strategy_manager/fetch_strategy_manager.py +0 -62
- frogml/inner/build_logic/phases/phase_010_fetch_model/fetch_strategy_manager/strategy/folder/folder_strategy.py +0 -131
- frogml/inner/build_logic/phases/phase_010_fetch_model/fetch_strategy_manager/strategy/git/git_strategy.py +0 -184
- frogml/inner/build_logic/phases/phase_010_fetch_model/fetch_strategy_manager/strategy/strategy.py +0 -48
- frogml/inner/build_logic/phases/phase_010_fetch_model/fetch_strategy_manager/strategy/zip/zip_strategy.py +0 -64
- frogml/inner/build_logic/phases/phase_010_fetch_model/post_fetch_validation_step.py +0 -139
- frogml/inner/build_logic/phases/phase_010_fetch_model/pre_fetch_validation_step.py +0 -263
- frogml/inner/build_logic/phases/phase_010_fetch_model/set_version_step.py +0 -33
- frogml/inner/build_logic/phases/phase_020_remote_register_frogml_build/cleanup_step.py +0 -20
- frogml/inner/build_logic/phases/phase_020_remote_register_frogml_build/start_remote_build_step.py +0 -42
- frogml/inner/build_logic/phases/phase_020_remote_register_frogml_build/upload_step.py +0 -257
- frogml/inner/build_logic/phases/phases_pipeline.py +0 -44
- frogml/inner/build_logic/run_handlers/programmatic_phase_run_handler.py +0 -101
- frogml/inner/build_logic/tools/dependencies_tools.py +0 -68
- frogml/inner/build_logic/tools/files.py +0 -237
- frogml/inner/build_logic/tools/ignore_files.py +0 -20
- frogml/inner/build_logic/trigger_build_context.py +0 -10
- frogml/inner/di_configuration/__init__.py +0 -73
- frogml/inner/di_configuration/account.py +0 -106
- frogml/inner/di_configuration/containers.py +0 -40
- frogml/inner/instance_template/verify_template_id.py +0 -48
- frogml/inner/model_loggers_utils.py +0 -110
- frogml/inner/runtime_di/__init__.py +0 -13
- frogml/inner/runtime_di/containers.py +0 -17
- frogml/inner/tool/__init__.py +0 -2
- frogml/inner/tool/auth.py +0 -70
- frogml/inner/tool/grpc/grpc_auth.py +0 -42
- frogml/inner/tool/grpc/grpc_tools.py +0 -209
- frogml/inner/tool/grpc/grpc_try_wrapping.py +0 -16
- frogml/inner/tool/protobuf_factory.py +0 -45
- frogml/inner/tool/run_config/base.py +0 -127
- frogml/llmops/generation/_steaming.py +0 -78
- frogml/llmops/generation/chat/openai/types/chat/chat_completion.py +0 -88
- frogml/llmops/generation/chat/openai/types/chat/chat_completion_chunk.py +0 -153
- frogml/llmops/generation/streaming.py +0 -26
- frogml/llmops/model/descriptor.py +0 -40
- frogml/llmops/prompt/base.py +0 -136
- frogml/llmops/prompt/chat/message.py +0 -24
- frogml/llmops/prompt/chat/template.py +0 -113
- frogml/llmops/prompt/chat/value.py +0 -10
- frogml/llmops/prompt/manager.py +0 -138
- frogml/llmops/prompt/template.py +0 -24
- frogml/llmops/provider/chat.py +0 -44
- frogml/llmops/provider/openai/client.py +0 -126
- frogml/llmops/provider/openai/provider.py +0 -91
- frogml/model/_entity_extraction.py +0 -116
- frogml/model/adapters/input_adapters/numpy_input_adapter.py +0 -100
- frogml/model/adapters/output_adapters/numpy_output_adapter.py +0 -32
- frogml/model/analytics_logging.py +0 -14
- frogml/model/base.py +0 -86
- frogml/model/decorators/api.py +0 -62
- frogml/model/decorators/impl/api_implementation.py +0 -29
- frogml/model/decorators/timer.py +0 -20
- frogml/model/fs_info_mapping_retriever.py +0 -58
- frogml/model/model_version_tracking.py +0 -57
- frogml/model/schema.py +0 -52
- frogml/model/schema_entities.py +0 -107
- frogml/model/tools/__init__.py +0 -24
- frogml/model/tools/adapters/input.py +0 -66
- frogml/model/tools/adapters/input_adapters/dataframe_input.py +0 -48
- frogml/model/tools/adapters/input_adapters/image_input.py +0 -45
- frogml/model/tools/adapters/input_adapters/json_input.py +0 -20
- frogml/model/tools/adapters/input_adapters/tf_tensor_input.py +0 -44
- frogml/model/tools/adapters/output.py +0 -75
- frogml/model/tools/adapters/output_adapters/dataframe_output.py +0 -30
- frogml/model/tools/adapters/output_adapters/json_output.py +0 -17
- frogml/model/tools/adapters/output_adapters/tf_tensor_output.py +0 -41
- frogml/model/tools/run_model_locally.py +0 -68
- frogml/model/utils/feature_utils.py +0 -69
- frogml/model_loggers/artifact_logger.py +0 -95
- frogml/model_loggers/data_logger.py +0 -172
- frogml/model_loggers/model_logger.py +0 -30
- frogml/tools/logger/logger.py +0 -287
- frogml/vector_store/client.py +0 -151
- frogml/vector_store/collection.py +0 -429
- frogml/vector_store/filters.py +0 -359
- frogml/vector_store/inference_client.py +0 -105
- frogml/vector_store/rest_helpers.py +0 -81
- frogml/vector_store/utils/filter_utils.py +0 -23
- frogml/vector_store/utils/upsert_utils.py +0 -218
- frogml_core-0.0.1.dist-info/METADATA +0 -49
- frogml_core-0.0.1.dist-info/RECORD +0 -1013
- {_frogml_proto → frogml_core/clients}/__init__.py +0 -0
- {frogml/clients → frogml_core/clients/_inner}/__init__.py +0 -0
- {frogml → frogml_core}/clients/administration/__init__.py +0 -0
- {frogml/clients/_inner → frogml_core/clients/administration/authenticated_user}/__init__.py +0 -0
- {frogml/clients/administration/authenticated_user → frogml_core/clients/administration/authentication}/__init__.py +0 -0
- {frogml/clients/administration/authentication → frogml_core/clients/administration/eco_system}/__init__.py +0 -0
- {frogml/clients/administration/eco_system → frogml_core/clients/administration/environment}/__init__.py +0 -0
- {frogml/clients/administration/environment → frogml_core/clients/administration/self_service}/__init__.py +0 -0
- {frogml → frogml_core}/clients/alert_management/__init__.py +0 -0
- {frogml → frogml_core}/clients/alerts_registry/__init__.py +0 -0
- {frogml → frogml_core}/clients/analytics/__init__.py +0 -0
- {frogml → frogml_core}/clients/audience/__init__.py +0 -0
- {frogml/clients/administration/self_service → frogml_core/clients/automation_management}/__init__.py +0 -0
- {frogml → frogml_core}/clients/autoscaling/__init__.py +0 -0
- {frogml → frogml_core}/clients/batch_job_management/__init__.py +0 -0
- {frogml → frogml_core}/clients/batch_job_management/results.py +0 -0
- {frogml → frogml_core}/clients/build_management/__init__.py +0 -0
- {frogml → frogml_core}/clients/build_orchestrator/__init__.py +0 -0
- {frogml/clients/automation_management → frogml_core/clients/data_versioning}/__init__.py +0 -0
- {frogml/clients/data_versioning → frogml_core/clients/deployment}/__init__.py +0 -0
- {frogml → frogml_core}/clients/feature_store/__init__.py +0 -0
- {frogml/clients/deployment → frogml_core/clients/file_versioning}/__init__.py +0 -0
- {frogml/clients/file_versioning → frogml_core/clients/instance_template}/__init__.py +0 -0
- {frogml/clients/instance_template → frogml_core/clients/integration_management}/__init__.py +0 -0
- {frogml/clients/integration_management → frogml_core/clients/integration_management/openai}/__init__.py +0 -0
- {frogml → frogml_core}/clients/jfrog_gateway/__init__.py +0 -0
- {frogml → frogml_core}/clients/kube_deployment_captain/__init__.py +0 -0
- {frogml → frogml_core}/clients/logging_client/__init__.py +0 -0
- {frogml → frogml_core}/clients/model_management/__init__.py +0 -0
- {frogml → frogml_core}/clients/model_version_manager/__init__.py +0 -0
- {frogml/clients/integration_management/openai → frogml_core/clients/project}/__init__.py +0 -0
- {frogml/clients/project → frogml_core/clients/prompt_manager}/__init__.py +0 -0
- {frogml → frogml_core}/clients/secret_service/__init__.py +0 -0
- {frogml/clients/prompt_manager → frogml_core/clients/system_secret}/__init__.py +0 -0
- {frogml → frogml_core}/clients/user_application_instance/__init__.py +0 -0
- {frogml → frogml_core}/clients/vector_store/__init__.py +0 -0
- {frogml → frogml_core}/clients/workspace_manager/__init__.py +0 -0
- {frogml → frogml_core}/exceptions/__init__.py +0 -0
- {frogml → frogml_core}/exceptions/frogml_decode_exception.py +0 -0
- {frogml → frogml_core}/exceptions/frogml_exception.py +0 -0
- {frogml → frogml_core}/exceptions/frogml_general_build_exception.py +0 -0
- {frogml → frogml_core}/exceptions/frogml_http_exception.py +0 -0
- {frogml → frogml_core}/exceptions/frogml_inference_exception.py +0 -0
- {frogml → frogml_core}/exceptions/frogml_load_configuration_exception.py +0 -0
- {frogml → frogml_core}/exceptions/frogml_load_model_failed_exception.py +0 -0
- {frogml → frogml_core}/exceptions/frogml_login_exception.py +0 -0
- {frogml → frogml_core}/exceptions/frogml_mock_http_exception.py +0 -0
- {frogml → frogml_core}/exceptions/frogml_model_initialization_exception.py +0 -0
- {frogml → frogml_core}/exceptions/frogml_not_found_exception.py +0 -0
- {frogml → frogml_core}/exceptions/frogml_remote_build_failed.py +0 -0
- {frogml → frogml_core}/exceptions/frogml_suggestion_exception.py +0 -0
- {frogml → frogml_core}/exceptions/quiet_error.py +0 -0
- {frogml/clients/system_secret → frogml_core/feature_store}/__init__.py +0 -0
- {frogml/feature_store → frogml_core/feature_store/_common}/__init__.py +0 -0
- {frogml → frogml_core}/feature_store/_common/functions.py +0 -0
- {frogml → frogml_core}/feature_store/_common/value.py +0 -0
- {frogml/feature_store/_common → frogml_core/feature_store/data_sources/batch}/__init__.py +0 -0
- {frogml/feature_store/data_sources/batch → frogml_core/feature_store/data_sources/batch/filesystem}/__init__.py +0 -0
- {frogml → frogml_core}/feature_store/data_sources/batch/filesystem/base_config.py +0 -0
- {frogml/feature_store/data_sources/batch/filesystem → frogml_core/feature_store/data_sources/streaming}/__init__.py +0 -0
- {frogml/feature_store/data_sources/streaming → frogml_core/feature_store/entities}/__init__.py +0 -0
- {frogml/feature_store/entities → frogml_core/feature_store/execution}/__init__.py +0 -0
- {frogml/feature_store/execution → frogml_core/feature_store/feature_sets}/__init__.py +0 -0
- {frogml → frogml_core}/feature_store/feature_sets/context.py +0 -0
- {frogml/feature_store/feature_sets → frogml_core/feature_store/feature_sets/transformations/aggregations}/__init__.py +0 -0
- {frogml → frogml_core}/feature_store/feature_sets/transformations/functions/schema.py +0 -0
- {frogml → frogml_core}/feature_store/offline/_query_engine.py +0 -0
- {frogml/feature_store/feature_sets/transformations/aggregations → frogml_core/feature_store/offline/athena}/__init__.py +0 -0
- {frogml/feature_store/offline/athena → frogml_core/feature_store/online}/__init__.py +0 -0
- {frogml/feature_store/online → frogml_core/feature_store/sinks}/__init__.py +0 -0
- {frogml/feature_store/sinks → frogml_core/feature_store/sinks/streaming}/__init__.py +0 -0
- {frogml/feature_store/sinks/streaming → frogml_core/feature_store/validations}/__init__.py +0 -0
- {frogml/feature_store/validations → frogml_core/frogml_client}/__init__.py +0 -0
- {frogml/frogml_client → frogml_core/frogml_client/build_api_helpers}/__init__.py +0 -0
- {frogml → frogml_core}/frogml_client/build_api_helpers/messages.py +0 -0
- {frogml/frogml_client/build_api_helpers → frogml_core/frogml_client/builds}/__init__.py +0 -0
- {frogml/frogml_client/builds → frogml_core/frogml_client/builds/filters}/__init__.py +0 -0
- {frogml/frogml_client/builds/filters → frogml_core/frogml_client/data_versioning}/__init__.py +0 -0
- {frogml/frogml_client/data_versioning → frogml_core/frogml_client/deployments}/__init__.py +0 -0
- {frogml/frogml_client/deployments → frogml_core/frogml_client/file_versioning}/__init__.py +0 -0
- {frogml/frogml_client/file_versioning → frogml_core/frogml_client/models}/__init__.py +0 -0
- {frogml/frogml_client/models → frogml_core/frogml_client/projects}/__init__.py +0 -0
- {frogml → frogml_core}/inner/__init__.py +0 -0
- {frogml/frogml_client/projects → frogml_core/inner/build_config}/__init__.py +0 -0
- {frogml/inner/build_config → frogml_core/inner/build_logic}/__init__.py +0 -0
- {frogml/inner/build_logic → frogml_core/inner/build_logic/build_loggers}/__init__.py +0 -0
- {frogml/inner/build_logic/build_loggers → frogml_core/inner/build_logic/constants}/__init__.py +0 -0
- {frogml → frogml_core}/inner/build_logic/constants/dependencies.py +0 -0
- {frogml → frogml_core}/inner/build_logic/constants/host_resource.py +0 -0
- {frogml → frogml_core}/inner/build_logic/constants/messages.py +0 -0
- {frogml → frogml_core}/inner/build_logic/constants/temp_dir.py +0 -0
- {frogml → frogml_core}/inner/build_logic/constants/upload_tag.py +0 -0
- {frogml → frogml_core}/inner/build_logic/dependency_manager_type.py +0 -0
- {frogml/inner/build_logic/constants → frogml_core/inner/build_logic/interface}/__init__.py +0 -0
- {frogml → frogml_core}/inner/build_logic/interface/build_logger_interface.py +0 -0
- {frogml → frogml_core}/inner/build_logic/interface/build_phase.py +0 -0
- {frogml → frogml_core}/inner/build_logic/interface/time_source.py +0 -0
- {frogml/inner/build_logic/interface → frogml_core/inner/build_logic/phases}/__init__.py +0 -0
- {frogml/inner/build_logic/phases → frogml_core/inner/build_logic/phases/phase_010_fetch_model}/__init__.py +0 -0
- {frogml/inner/build_logic/phases/phase_010_fetch_model → frogml_core/inner/build_logic/phases/phase_010_fetch_model/fetch_strategy_manager}/__init__.py +0 -0
- {frogml/inner/build_logic/phases/phase_010_fetch_model/fetch_strategy_manager → frogml_core/inner/build_logic/phases/phase_010_fetch_model/fetch_strategy_manager/strategy}/__init__.py +0 -0
- {frogml/inner/build_logic/phases/phase_010_fetch_model/fetch_strategy_manager/strategy → frogml_core/inner/build_logic/phases/phase_010_fetch_model/fetch_strategy_manager/strategy/folder}/__init__.py +0 -0
- {frogml/inner/build_logic/phases/phase_010_fetch_model/fetch_strategy_manager/strategy/folder → frogml_core/inner/build_logic/phases/phase_010_fetch_model/fetch_strategy_manager/strategy/git}/__init__.py +0 -0
- {frogml/inner/build_logic/phases/phase_010_fetch_model/fetch_strategy_manager/strategy/git → frogml_core/inner/build_logic/phases/phase_010_fetch_model/fetch_strategy_manager/strategy/zip}/__init__.py +0 -0
- {frogml/inner/build_logic/phases/phase_010_fetch_model/fetch_strategy_manager/strategy/zip → frogml_core/inner/build_logic/phases/phase_020_remote_register_frogml_build}/__init__.py +0 -0
- {frogml/inner/build_logic/phases/phase_020_remote_register_frogml_build → frogml_core/inner/build_logic/run_handlers}/__init__.py +0 -0
- {frogml/inner/build_logic/run_handlers → frogml_core/inner/build_logic/tools}/__init__.py +0 -0
- {frogml → frogml_core}/inner/build_logic/tools/text.py +0 -0
- {frogml → frogml_core}/inner/const.py +0 -0
- {frogml → frogml_core}/inner/di_configuration/config.yml +0 -0
- {frogml/inner/build_logic/tools → frogml_core/inner/instance_template}/__init__.py +0 -0
- {frogml → frogml_core}/inner/provider.py +0 -0
- {frogml → frogml_core}/inner/singleton_meta.py +0 -0
- {frogml/inner/instance_template → frogml_core/inner/tool/grpc}/__init__.py +0 -0
- {frogml → frogml_core}/inner/tool/retry_utils.py +0 -0
- {frogml → frogml_core}/inner/tool/run_config/__init__.py +0 -0
- {frogml → frogml_core}/inner/tool/run_config/utils.py +0 -0
- {frogml/inner/tool/grpc → frogml_core/llmops}/__init__.py +0 -0
- {frogml/llmops → frogml_core/llmops/generation}/__init__.py +0 -0
- {frogml → frogml_core}/llmops/generation/base.py +0 -0
- {frogml/llmops/generation → frogml_core/llmops/generation/chat}/__init__.py +0 -0
- {frogml → frogml_core}/llmops/generation/chat/openai/LICENSE.txt +0 -0
- {frogml/llmops/generation/chat → frogml_core/llmops/generation/chat/openai/types}/__init__.py +0 -0
- {frogml/llmops/generation/chat/openai/types → frogml_core/llmops/generation/chat/openai/types/chat}/__init__.py +0 -0
- {frogml → frogml_core}/llmops/generation/chat/openai/types/chat/chat_completion_assistant_message_param.py +0 -0
- {frogml → frogml_core}/llmops/generation/chat/openai/types/chat/chat_completion_content_part_text_param.py +0 -0
- {frogml → frogml_core}/llmops/generation/chat/openai/types/chat/chat_completion_function_call_option_param.py +0 -0
- {frogml → frogml_core}/llmops/generation/chat/openai/types/chat/chat_completion_function_message_param.py +0 -0
- {frogml → frogml_core}/llmops/generation/chat/openai/types/chat/chat_completion_message.py +0 -0
- {frogml → frogml_core}/llmops/generation/chat/openai/types/chat/chat_completion_message_param.py +0 -0
- {frogml → frogml_core}/llmops/generation/chat/openai/types/chat/chat_completion_message_tool_call.py +0 -0
- {frogml → frogml_core}/llmops/generation/chat/openai/types/chat/chat_completion_message_tool_call_param.py +0 -0
- {frogml → frogml_core}/llmops/generation/chat/openai/types/chat/chat_completion_named_tool_choice_param.py +0 -0
- {frogml → frogml_core}/llmops/generation/chat/openai/types/chat/chat_completion_role.py +0 -0
- {frogml → frogml_core}/llmops/generation/chat/openai/types/chat/chat_completion_system_message_param.py +0 -0
- {frogml → frogml_core}/llmops/generation/chat/openai/types/chat/chat_completion_token_logprob.py +0 -0
- {frogml → frogml_core}/llmops/generation/chat/openai/types/chat/chat_completion_tool_choice_option_param.py +0 -0
- {frogml → frogml_core}/llmops/generation/chat/openai/types/chat/chat_completion_tool_message_param.py +0 -0
- {frogml → frogml_core}/llmops/generation/chat/openai/types/chat/chat_completion_tool_param.py +0 -0
- {frogml → frogml_core}/llmops/generation/chat/openai/types/chat/chat_completion_user_message_param.py +0 -0
- {frogml → frogml_core}/llmops/generation/chat/openai/types/chat/completion_create_params.py +0 -0
- {frogml → frogml_core}/llmops/generation/chat/openai/types/completion_choice.py +0 -0
- {frogml → frogml_core}/llmops/generation/chat/openai/types/completion_create_params.py +0 -0
- {frogml → frogml_core}/llmops/generation/chat/openai/types/completion_usage.py +0 -0
- {frogml → frogml_core}/llmops/generation/chat/openai/types/model.py +0 -0
- {frogml → frogml_core}/llmops/generation/chat/openai/types/shared/__init__.py +0 -0
- {frogml → frogml_core}/llmops/generation/chat/openai/types/shared/error_object.py +0 -0
- {frogml → frogml_core}/llmops/generation/chat/openai/types/shared/function_definition.py +0 -0
- {frogml → frogml_core}/llmops/generation/chat/openai/types/shared/function_parameters.py +0 -0
- {frogml → frogml_core}/llmops/generation/chat/openai/types/shared_params/__init__.py +0 -0
- {frogml → frogml_core}/llmops/generation/chat/openai/types/shared_params/function_definition.py +0 -0
- {frogml → frogml_core}/llmops/generation/chat/openai/types/shared_params/function_parameters.py +0 -0
- {frogml/llmops/generation/chat/openai/types/chat → frogml_core/llmops/model}/__init__.py +0 -0
- {frogml/llmops/model → frogml_core/llmops/prompt}/__init__.py +0 -0
- {frogml/llmops/prompt → frogml_core/llmops/prompt/chat}/__init__.py +0 -0
- {frogml → frogml_core}/llmops/prompt/value.py +0 -0
- {frogml/llmops/prompt/chat → frogml_core/llmops/provider}/__init__.py +0 -0
- {frogml/llmops/provider → frogml_core/llmops/provider/openai}/__init__.py +0 -0
- {frogml/llmops/provider/openai → frogml_core/model}/__init__.py +0 -0
- {frogml → frogml_core}/model/adapters/__init__.py +0 -0
- {frogml/model → frogml_core/model/adapters/input_adapters}/__init__.py +0 -0
- {frogml → frogml_core}/model/adapters/input_adapters/base_input_adapter.py +0 -0
- {frogml → frogml_core}/model/adapters/input_adapters/dataframe_input_adapter.py +0 -0
- {frogml → frogml_core}/model/adapters/input_adapters/file_input_adapter.py +0 -0
- {frogml → frogml_core}/model/adapters/input_adapters/image_input_adapter.py +0 -0
- {frogml → frogml_core}/model/adapters/input_adapters/json_input_adapter.py +0 -0
- {frogml → frogml_core}/model/adapters/input_adapters/multi_input_adapter.py +0 -0
- {frogml → frogml_core}/model/adapters/input_adapters/proto_input_adapter.py +0 -0
- {frogml → frogml_core}/model/adapters/input_adapters/string_input_adapter.py +0 -0
- {frogml → frogml_core}/model/adapters/input_adapters/tf_tensor_input_adapter.py +0 -0
- {frogml/model/adapters/input_adapters → frogml_core/model/adapters/output_adapters}/__init__.py +0 -0
- {frogml → frogml_core}/model/adapters/output_adapters/base_output_adapter.py +0 -0
- {frogml → frogml_core}/model/adapters/output_adapters/dataframe_output_adapter.py +0 -0
- {frogml → frogml_core}/model/adapters/output_adapters/default_output_adapter.py +0 -0
- {frogml → frogml_core}/model/adapters/output_adapters/json_output_adapter.py +0 -0
- {frogml → frogml_core}/model/adapters/output_adapters/proto_output_adapter.py +0 -0
- {frogml → frogml_core}/model/adapters/output_adapters/qwak_with_default_fallback.py +0 -0
- {frogml → frogml_core}/model/adapters/output_adapters/tf_tensor_output_adapter.py +0 -0
- {frogml/model/adapters/output_adapters → frogml_core/model/decorators}/__init__.py +0 -0
- {frogml/model/decorators → frogml_core/model/decorators/impl}/__init__.py +0 -0
- {frogml → frogml_core}/model/decorators/impl/timer_implementation.py +0 -0
- {frogml/model/decorators/impl → frogml_core/model/tools/adapters}/__init__.py +0 -0
- {frogml → frogml_core}/model/tools/adapters/encoders.py +0 -0
- {frogml/model/tools/adapters → frogml_core/model/tools/adapters/input_adapters}/__init__.py +0 -0
- {frogml → frogml_core}/model/tools/adapters/input_adapters/base_input.py +0 -0
- {frogml → frogml_core}/model/tools/adapters/input_adapters/file_input.py +0 -0
- {frogml → frogml_core}/model/tools/adapters/input_adapters/string_input.py +0 -0
- {frogml/model/tools/adapters/input_adapters → frogml_core/model/tools/adapters/output_adapters}/__init__.py +0 -0
- {frogml → frogml_core}/model/tools/adapters/output_adapters/base_output.py +0 -0
- {frogml → frogml_core}/model/tools/adapters/output_adapters/default_output.py +0 -0
- {frogml/model/tools/adapters/output_adapters → frogml_core/model/utils}/__init__.py +0 -0
- {frogml → frogml_core}/model/utils/extract_wrapped_function.py +0 -0
- {frogml/model/utils → frogml_core/model_loggers}/__init__.py +0 -0
- {frogml/model_loggers → frogml_core/testing}/__init__.py +0 -0
- {frogml → frogml_core}/testing/fixtures.py +0 -0
- {frogml/testing → frogml_core/tools}/__init__.py +0 -0
- {frogml → frogml_core}/tools/logger/__init__.py +0 -0
- {frogml → frogml_core}/tools/logger/logging.yml +0 -0
- {frogml/tools → frogml_core/utils}/__init__.py +0 -0
- {frogml → frogml_core}/utils/datetime_utils.py +0 -0
- {frogml → frogml_core}/utils/dict_utils.py +0 -0
- {frogml → frogml_core}/vector_store/__init__.py +0 -0
- {frogml → frogml_core/vector_store}/utils/__init__.py +0 -0
- {frogml_core-0.0.1.dist-info → frogml_core-0.0.2.dist-info}/WHEEL +0 -0
- {frogml/vector_store/utils → frogml_proto}/__init__.py +0 -0
- {_frogml_proto → frogml_proto}/jfml/model_version/v1/model_repository_spec_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/jfml/model_version/v1/model_repository_spec_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/jfml/model_version/v1/model_version_framework_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/jfml/model_version/v1/model_version_framework_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/jfml/model_version/v1/model_version_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/administration/account/v1/account_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/administration/account/v1/jfrog_tenant_details_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/administration/account/v1/jfrog_tenant_details_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/administration/account/v1/personalization_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/administration/account/v1/personalization_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/administration/account/v1/preferences_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/administration/account/v1/terms_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/administration/account/v1/terms_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/administration/authenticated_user/v1/credentials_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/administration/authenticated_user/v1/credentials_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/administration/authenticated_user/v1/details_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/administration/authenticated_user/v1/details_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/administration/v0/authentication/authentication_service_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/administration/v0/environments/configuration_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/administration/v0/environments/configuration_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/administration/v0/environments/environment_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/administration/v0/environments/personalization_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/administration/v0/environments/personalization_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/administration/v0/users/user_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/administration/v0/users/user_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/admiral/secret/v0/secret_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/admiral/secret/v0/secret_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/admiral/user_application_instance/v0/user_application_instance_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/analytics/analytics_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/analytics/analytics_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/audience/v1/audience_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/audience/v1/audience_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/auto_scaling/v1/auto_scaling_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/auto_scaling/v1/auto_scaling_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/automation/v1/action_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/automation/v1/auto_scaling_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/automation/v1/auto_scaling_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/automation/v1/automation_execution_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/automation/v1/automation_execution_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/automation/v1/automation_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/automation/v1/common_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/automation/v1/common_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/automation/v1/notification_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/automation/v1/notification_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/automation/v1/trigger_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/batch_job/v1/batch_job_events_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/batch_job/v1/batch_job_resources_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/batch_job/v1/batch_job_resources_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/build/v1/build_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/build_settings/build_settings_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/build_settings/build_settings_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/builds/build_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/builds/build_url_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/builds/build_url_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/data_versioning/data_versioning_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/data_versioning/data_versioning_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/deployment/alert_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/deployment/alert_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/deployment/deployment_messages_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/deployment/deployment_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/ecosystem/v0/credentials_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/ecosystem/v0/credentials_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/ecosystem/v0/ecosystem_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/execution/v1/backfill_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/execution/v1/batch_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/execution/v1/batch_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/execution/v1/deletion_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/execution/v1/deletion_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/execution/v1/execution_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/execution/v1/jobs/job_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/execution/v1/jobs/reports/report_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/execution/v1/state/execution_state_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/execution/v1/state/featureset_state_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/execution/v1/state/featureset_state_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/execution/v1/state/spark_execution_state_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/execution/v1/state/spark_execution_state_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/execution/v1/streaming_aggregation_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/execution/v1/streaming_aggregation_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/execution/v1/streaming_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/execution/v1/streaming_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/feature_store/entities/entity_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/feature_store/entities/entity_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/feature_store/features/aggregation_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/feature_store/features/aggregation_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/feature_store/features/deployment_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/feature_store/features/deployment_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/feature_store/features/execution_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/feature_store/features/execution_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/feature_store/features/feature_set_attribute_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/feature_store/features/feature_set_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/feature_store/features/feature_set_state_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/feature_store/features/feature_set_state_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/feature_store/features/feature_set_types_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/feature_store/features/monitoring_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/feature_store/features/monitoring_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/feature_store/features/real_time_feature_extractor_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/feature_store/jobs/job_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/feature_store/jobs/job_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/feature_store/jobs/v1/job_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/feature_store/jobs/v1/job_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/feature_store/platform/platform_details_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/feature_store/reports/report_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/feature_store/reports/report_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/feature_store/repository/common/platform_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/feature_store/repository/common/platform_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/feature_store/serving/metadata_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/feature_store/serving/serving_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/feature_store/serving/v1/value_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/feature_store/serving/v1/value_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/feature_store/sinks/sink_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/feature_store/sources/batch_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/feature_store/sources/batch_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/feature_store/sources/data_source_attribute_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/feature_store/sources/data_source_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/feature_store/sources/streaming_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/feature_store/sources/streaming_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/feature_store/v1/common/source_code/source_code_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/feature_store/v1/common/source_code/source_code_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/feature_store/v1/internal/data_source/data_source_service_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/feature_store/v1/internal/featureset/featureset_token_service_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/features_operator/v1/features_operator_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/features_operator/v1/features_operator_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/features_operator/v2/features_operator_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/features_operator/v2/features_operator_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/features_operator/v3/features_operator_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/features_operator/v3/features_operator_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/file_versioning/file_versioning_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/file_versioning/file_versioning_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/fitness_service/constructs_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/fitness_service/constructs_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/fitness_service/fitness_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/fitness_service/status_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/fitness_service/status_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/inference/feedback/feedback_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/instance_template/instance_template_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/integration/hugging_face_integration_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/integration/hugging_face_integration_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/integration/integration_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/integration/open_a_i_integration_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/integration/open_a_i_integration_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/integration/opsgenie_integration_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/integration/opsgenie_integration_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/integration/pagerduty_integration_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/integration/pagerduty_integration_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/integration/slack_app_integration_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/integration/slack_app_integration_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/jfrog/gateway/v0/repository_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/jfrog/gateway/v0/repository_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/kube_deployment_captain/alert_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/kube_deployment_captain/alert_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/kube_deployment_captain/alerting_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/kube_deployment_captain/alerting_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/kube_deployment_captain/batch_job_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/kube_deployment_captain/batch_job_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/kube_deployment_captain/deployment_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/kube_deployment_captain/deployment_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/kube_deployment_captain/feature_set_deployment_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/kube_deployment_captain/traffic_mapping_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/kube_deployment_captain/traffic_mapping_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/logging/log_filter_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/logging/log_filter_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/logging/log_line_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/logging/log_line_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/logging/log_source_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/logging/log_source_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/model_descriptor/open_ai_descriptor_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/model_descriptor/open_ai_descriptor_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/monitoring/v0/alerting_channel_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/monitoring/v0/alerting_channel_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/offline/serving/v1/feature_values_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/offline/serving/v1/feature_values_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/offline/serving/v1/options_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/offline/serving/v1/options_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/offline/serving/v1/population_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/offline/serving/v1/population_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/prompt/v1/prompt/prompt_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/secret_service/secret_service_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/self_service/account/v0/account_membership_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/self_service/account/v0/account_status_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/self_service/account/v0/managing_account_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/self_service/account/v0/managing_account_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/self_service/user/v1/api_key_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/self_service/user/v1/api_key_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/self_service/user/v1/user_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/traffic/v1/traffic_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/traffic/v1/traffic_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/user_application/common/v0/resources_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/user_application/common/v0/resources_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/user_application/v0/user_application_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/user_application/v0/user_application_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/vectors/v1/collection/collection_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/vectors/v1/collection/collection_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/vectors/v1/collection/event/collection_event_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/vectors/v1/collection/event/collection_event_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/vectors/v1/filters_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/vectors/v1/filters_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/vectors/v1/vector_pb2.pyi +0 -0
- {_frogml_proto → frogml_proto}/qwak/vectors/v1/vector_pb2_grpc.py +0 -0
- {_frogml_proto → frogml_proto}/qwak/workspace/workspace_pb2_grpc.py +0 -0
@@ -0,0 +1,1013 @@
|
|
1
|
+
frogml_core/__init__.py,sha256=eo4alKPpl6QZmpXAVU5_iaxr9CqRANJnwT4hCWeHpzA,776
|
2
|
+
frogml_core/automations/__init__.py,sha256=j2gD15MN-xVWhI5rAFsDwhL0CIyICLNT0scXsKvNBkU,1547
|
3
|
+
frogml_core/automations/automation_executions.py,sha256=xpOb9Dq8gPPGNQDJTvBBZbNz4woZDRZY0HqnLSu7pwU,3230
|
4
|
+
frogml_core/automations/automations.py,sha256=GKEQyQMi8sxX5oZn62PaxPi0zD8IaJRjBkhczRJxHNs,13070
|
5
|
+
frogml_core/automations/batch_execution_action.py,sha256=tFGQWI16CGNfo-DZJ0n86SBkKWbNt1Q8712wF0_OgUI,13327
|
6
|
+
frogml_core/automations/build_and_deploy_action.py,sha256=tA0cZbMl3CBwP3CEuEBIujRVPLt5dBVShe1KeJrGm8g,31594
|
7
|
+
frogml_core/automations/common.py,sha256=98YNX-jCrmQ97k1IxRqzdsnet-rohcXp4yIdVNwpyh8,2752
|
8
|
+
frogml_core/clients/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
9
|
+
frogml_core/clients/_inner/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
10
|
+
frogml_core/clients/_inner/edge_communications.py,sha256=2aGiJwP4KI_rD5-jZvqZfyCT6VfAVi7RgAVbOdWubBU,867
|
11
|
+
frogml_core/clients/administration/__init__.py,sha256=PwBe7zEIqtL8jiUF4F6iX_0yT_uJrst0PMDGZHU1y5c,224
|
12
|
+
frogml_core/clients/administration/authenticated_user/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
13
|
+
frogml_core/clients/administration/authenticated_user/client.py,sha256=ymTzgIkwuMH_5aj1qHX2PkjykmAOsyERWOkxQS3qLUY,1484
|
14
|
+
frogml_core/clients/administration/authentication/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
15
|
+
frogml_core/clients/administration/authentication/client.py,sha256=YJ_yHqmXSEEVqToDZv3Jk2o99ohk8DHVcJECkL4vagI,1223
|
16
|
+
frogml_core/clients/administration/eco_system/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
17
|
+
frogml_core/clients/administration/eco_system/client.py,sha256=V6xjyG1zb9HU8_31Ie-wr-oGULjhnh6BPdShEy1jTTE,5376
|
18
|
+
frogml_core/clients/administration/eco_system/eco_system_utils.py,sha256=h3aeyoMEiEUSVkbSMP1EzC2LK88aXz2_PlKIeA_7gSc,521
|
19
|
+
frogml_core/clients/administration/environment/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
20
|
+
frogml_core/clients/administration/environment/client.py,sha256=A0vl0Zxt0pqtWdcacdPe5MRAcPJsIXUkFTAPKaKxndU,2736
|
21
|
+
frogml_core/clients/administration/self_service/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
22
|
+
frogml_core/clients/administration/self_service/client.py,sha256=7pvz5t5cJE3ms60Yxxxqw4-6yW_Iwyv0_g4lb-TgsDc,2646
|
23
|
+
frogml_core/clients/alert_management/__init__.py,sha256=zAfCPJTj6oAMoj3vciLjRy8ULTTHCmmrdISuDCHASvk,43
|
24
|
+
frogml_core/clients/alert_management/client.py,sha256=UzDZNCzZ6sImjOJUPQZ0Vd6Ve-a45c8gJuW0CalSFxg,2256
|
25
|
+
frogml_core/clients/alerts_registry/__init__.py,sha256=RszIZ4jLzCLapZQ3iQt0lTWPtttf9HWi2dMgAVgOdrk,43
|
26
|
+
frogml_core/clients/alerts_registry/channel.py,sha256=7NphgqqpcAsV31D_gsVJhm1ENLYaWWJAWsD-BRLzATQ,4058
|
27
|
+
frogml_core/clients/alerts_registry/client.py,sha256=Ziy2qWjXwcbVkWQymgbU7faJ_eRmEwN6fPLB62lR4hA,5406
|
28
|
+
frogml_core/clients/analytics/__init__.py,sha256=bSerqCrPyfBWnKDHT0ncofKUU-4NjmQZFZ2Uf66a4eA,42
|
29
|
+
frogml_core/clients/analytics/client.py,sha256=jzkrczNpOlGpn80uVDrbrfoeFOcBjzfsSkqnQpEJsWI,3108
|
30
|
+
frogml_core/clients/audience/__init__.py,sha256=WMgEXjWSmDFUC3A3L8Fe3OoPv2SrQNXY-1OPQpuqGHM,35
|
31
|
+
frogml_core/clients/audience/client.py,sha256=FIacuza9skP81Pj2gNU1mzafa6aXcubv3R1_dfcDus4,2125
|
32
|
+
frogml_core/clients/automation_management/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
33
|
+
frogml_core/clients/automation_management/client.py,sha256=rG1tvdtKoSBCSG5IdzmSPMJxv5w6qXuuu42Geko1h1c,9107
|
34
|
+
frogml_core/clients/autoscaling/__init__.py,sha256=A-zuZOWaZf16NjnpX38204m730c5Lde491KaXneGirE,38
|
35
|
+
frogml_core/clients/autoscaling/client.py,sha256=Izl_Ko31ECsVEadTcthru8GGujsHpwWN5E_VSCKiymM,1296
|
36
|
+
frogml_core/clients/batch_job_management/__init__.py,sha256=zywxYf2JupkIWnGVB2C6ugZs5CrOdxTPrksD5P6uQu4,211
|
37
|
+
frogml_core/clients/batch_job_management/client.py,sha256=mXGyIQLlEOVcrmESje_rEOdlDLWIB8Ndi6N38cXWe74,21120
|
38
|
+
frogml_core/clients/batch_job_management/executions_config.py,sha256=eEbT_ldIEVtwe85oThJ-Jv3qFBIfvLpZ-w6aJCLlqlk,6910
|
39
|
+
frogml_core/clients/batch_job_management/results.py,sha256=nrFGZ3y538FBhej94CYV4cwqQssK1aUQOLGubYdQVrc,1846
|
40
|
+
frogml_core/clients/build_management/__init__.py,sha256=oXurHX6Kho5X-fOuuNHB3B9oMX6ejYUqh6GWv5qJyjw,43
|
41
|
+
frogml_core/clients/build_management/client.py,sha256=eVxnujWyxfkW0jKAJkNWBsP6RE7tnmQOVmk3GzmEvGA,4289
|
42
|
+
frogml_core/clients/build_orchestrator/__init__.py,sha256=ReW7Lbjws06MbVlCTRdsymDZiS2CKuczXIZ1xnPKSdg,105
|
43
|
+
frogml_core/clients/build_orchestrator/build_model_request_getter.py,sha256=JreORvIl_WardRiMuKAKXYVaDFKZsFQDyDmzcD8O5MQ,5197
|
44
|
+
frogml_core/clients/build_orchestrator/client.py,sha256=RlqCeIpbEC21UJKmjZcWv-dPFyqb95MoItIf5FaMDIE,16212
|
45
|
+
frogml_core/clients/build_orchestrator/internal_client.py,sha256=kVd25UN38zh_NO0-UxSX-SsUTdZpT9qPZ9EQ451OB30,4020
|
46
|
+
frogml_core/clients/data_versioning/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
47
|
+
frogml_core/clients/data_versioning/client.py,sha256=gaIO4AkYUBlWfb0h3pZXnqjXHOf343whHyHN7fGvBLc,2429
|
48
|
+
frogml_core/clients/data_versioning/data_tag_filter.py,sha256=YSHHWnnhPz03KojYXv-YH6-0gSYYKQSQkjoZsqyfa0w,886
|
49
|
+
frogml_core/clients/deployment/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
50
|
+
frogml_core/clients/deployment/client.py,sha256=z46vlSjYZwGgLf3WcKbfyfpCYTj_6DZcC1RpbND8Ix0,6880
|
51
|
+
frogml_core/clients/feature_store/__init__.py,sha256=mMCPBHDga6Y7dtJfNoHvfOvCyjNUHrVDX5uVsL2JkGk,53
|
52
|
+
frogml_core/clients/feature_store/execution_management_client.py,sha256=vLSq2I_Tw6IZAIcf5BeN6OAK3qwj_5WketVAcu4nci0,4114
|
53
|
+
frogml_core/clients/feature_store/job_registry_client.py,sha256=zggguwuvnkSccClLO_4NasmTWIUkoLje4TXzVyZ-GxU,2668
|
54
|
+
frogml_core/clients/feature_store/management_client.py,sha256=cSBFxwXNkL8amIdopLaMkDbKzxiVcX6ED1cST3aYKH4,20768
|
55
|
+
frogml_core/clients/feature_store/offline_serving_client.py,sha256=15TbEWd3tic-J_520abqiPaeV-r720CT5RSiSGfCT38,9418
|
56
|
+
frogml_core/clients/feature_store/operator_client.py,sha256=G-i1ild7JEHcwAB9-O2OTHB3-W8n5DQuGtV8JJoXIeA,5837
|
57
|
+
frogml_core/clients/file_versioning/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
58
|
+
frogml_core/clients/file_versioning/client.py,sha256=GQ0drq_6f3lyKFSEg_tLh6wybGgyiiPF7TsiHCIPPZU,2533
|
59
|
+
frogml_core/clients/file_versioning/file_tag_filter.py,sha256=Ehgr605zPt2x163EQP5IRXKdnmd_8gNwCVBhxUlRcnI,886
|
60
|
+
frogml_core/clients/instance_template/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
61
|
+
frogml_core/clients/instance_template/client.py,sha256=uKTSebOUwb79t8SosxBbjIg6N9PlXXSYfedOVt5-jjc,2541
|
62
|
+
frogml_core/clients/integration_management/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
63
|
+
frogml_core/clients/integration_management/integration_manager_client.py,sha256=E6VcgbEI6IbP8TLsatWTTvWNXerdSP08er0KkdRmg90,1240
|
64
|
+
frogml_core/clients/integration_management/integration_utils.py,sha256=j5gomMtYi-CYr2flYF8-BKd5pU4tHxAAlB9R2R3iYoo,968
|
65
|
+
frogml_core/clients/integration_management/openai/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
66
|
+
frogml_core/clients/integration_management/openai/openai_system_secret.py,sha256=eP3blUextKicLnjpDcyElpShKCwsSnq7_OIt5pf3kLc,2145
|
67
|
+
frogml_core/clients/jfrog_gateway/__init__.py,sha256=E_BrYKBESU3wGNiR_RQncbAhLWyvJ-Ub2Akt_6FpfgM,39
|
68
|
+
frogml_core/clients/jfrog_gateway/client.py,sha256=H4hF3MNi0QBYwGgD9c9A-4-VQlBB7zlQgH3ImpX8aBQ,1357
|
69
|
+
frogml_core/clients/kube_deployment_captain/__init__.py,sha256=rJUEEy3zNH0aTFyuO_UBexzaUKdjvwU9P2vV1MDj684,41
|
70
|
+
frogml_core/clients/kube_deployment_captain/client.py,sha256=oz7VF37TSO0S07MqXOYu2Xmx_rl9IVrfHOz_8MWnBZ8,9340
|
71
|
+
frogml_core/clients/logging_client/__init__.py,sha256=1OCHnigQBYThBwGbxCreYA0BgP0HcuLFzNEWd3Yxh-c,34
|
72
|
+
frogml_core/clients/logging_client/client.py,sha256=A7qQJWW54Ve7O0DuJX9gmSJlUQyRIKC0VmfGS6bUwjo,4950
|
73
|
+
frogml_core/clients/model_management/__init__.py,sha256=vjWVP8MjmK4_A70WOgJqa6x24AeLK-ABjGJtogGzw9w,43
|
74
|
+
frogml_core/clients/model_management/client.py,sha256=ZsElgiI2hH8eArLeN6Gm4mN8VojdPyCSmbCNUQspJD4,4500
|
75
|
+
frogml_core/clients/model_version_manager/__init__.py,sha256=4Pnfzj4Egps48__dProdbSKQl5pNip0hGJd75w67BfY,46
|
76
|
+
frogml_core/clients/model_version_manager/client.py,sha256=HvoIEx3fFP4cLoEnmIqD3jwB1EXA4a3TvOuz43eXkeg,4038
|
77
|
+
frogml_core/clients/project/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
78
|
+
frogml_core/clients/project/client.py,sha256=VvnUk7mo-UkE9Gkj9jVkCPGTVx8qmuekMz7oH9Uzv2Y,2159
|
79
|
+
frogml_core/clients/prompt_manager/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
80
|
+
frogml_core/clients/prompt_manager/model_descriptor_mapper.py,sha256=-j97vEEx0RUNBH245vIIMYw_xrFE-4AgV1hmg7g14U8,7856
|
81
|
+
frogml_core/clients/prompt_manager/prompt_manager_client.py,sha256=pl5SZ0j81PBMBeJc7jOkDJtJ61TGMqeq3Splg6Tsr90,7958
|
82
|
+
frogml_core/clients/prompt_manager/prompt_proto_mapper.py,sha256=WqIrL1wq_8LkLiLnyVO6vVh7qDLHnZNaHZ7n3s94qgw,10073
|
83
|
+
frogml_core/clients/secret_service/__init__.py,sha256=TdQl1lgplXCKVHYSN4feRIAoonZ7XDz50zALjwVDcM4,40
|
84
|
+
frogml_core/clients/secret_service/client.py,sha256=Oq3ZV1r6haE-bo0-4OaTlyHE0BgmUwoSGNpDMDcuHXw,3655
|
85
|
+
frogml_core/clients/system_secret/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
86
|
+
frogml_core/clients/system_secret/system_secret_client.py,sha256=ZCTd2b0eRpPIi1m2LG4XWMbclovrFWDojyexd0rUCNU,1080
|
87
|
+
frogml_core/clients/user_application_instance/__init__.py,sha256=lvdNCdtV7BGcN7XlK5Lb_OnXAJ-ued3AGckiZ-_EmL0,50
|
88
|
+
frogml_core/clients/user_application_instance/client.py,sha256=MfX-NykPckD_GxmZUgCbufkzN6JO4u_5tMBoaJzJblw,6050
|
89
|
+
frogml_core/clients/vector_store/__init__.py,sha256=JGMvcS9kGCbwEIMMji4G4ohZPvccGWoTJNC6vF6RPwc,102
|
90
|
+
frogml_core/clients/vector_store/management_client.py,sha256=pJfYjzLbGcV9NiuVmK2Mz65_jqeXwTiC-vWXOAgfuJg,4313
|
91
|
+
frogml_core/clients/vector_store/serving_client.py,sha256=CBsN-YAaOYSqEYg6u_31effluLNaX59s5bAHn9Po8p4,5333
|
92
|
+
frogml_core/clients/workspace_manager/__init__.py,sha256=sJ_tnt-CqjXVVNlcywmyQ5L3n5Dk0uMDNjSVvEwHziA,43
|
93
|
+
frogml_core/clients/workspace_manager/client.py,sha256=9akE0kTmagBdNNTRsrPYFWrSTwJ86XXK9r-m-gAd7K4,8181
|
94
|
+
frogml_core/exceptions/__init__.py,sha256=WjVw2-RExlfh_sQQKkQWXoss9MiOUpXxxDQVyJrfkCY,834
|
95
|
+
frogml_core/exceptions/frogml_decode_exception.py,sha256=dVfUGMippachTwlWQPvrSJSOHYYJajzOoqrzDUcwt2k,151
|
96
|
+
frogml_core/exceptions/frogml_exception.py,sha256=uXLgbu-_RYJpav69C7CTH9wZCwFY6OvBSl1Un8vBT4Y,194
|
97
|
+
frogml_core/exceptions/frogml_external_exception.py,sha256=xKNfzf3oy6vDm1_4cR3UML7McvY7BvRAuKxQaOfgTZ8,262
|
98
|
+
frogml_core/exceptions/frogml_general_build_exception.py,sha256=kB_EpW7S_r9Qx6cWZTbsJHgTBG7I8LT8RKxaVEDZwVk,426
|
99
|
+
frogml_core/exceptions/frogml_http_exception.py,sha256=LAQ6qAcSbVwTJUbFvPv-rvdxZlQs7MaCiWALACwioXk,583
|
100
|
+
frogml_core/exceptions/frogml_inference_exception.py,sha256=0KecLp3eZpIbE0lo0PhG8v3KpP-UHhSj6aaA1CckPko,102
|
101
|
+
frogml_core/exceptions/frogml_load_configuration_exception.py,sha256=rTs4lkgZbLYysgVBYt1Xi2i0GGSOFunen0oMpULYfdU,54
|
102
|
+
frogml_core/exceptions/frogml_load_model_failed_exception.py,sha256=wd3WkDJs0j89HjO1Xo3NvIypG_bR-BiyeTHkpyt5RUg,276
|
103
|
+
frogml_core/exceptions/frogml_login_exception.py,sha256=j2p0gjrzQ6bAAgvyXsxNNE1duG9dVNgi5WSzWOrqsOc,215
|
104
|
+
frogml_core/exceptions/frogml_mock_http_exception.py,sha256=KGSl4Jj89VD-WYRy-289IuOwV-BCS_-75Z-MoJdDGJU,152
|
105
|
+
frogml_core/exceptions/frogml_model_initialization_exception.py,sha256=3_mqWHISM_z6pr9kycyIY_aWv6fN1SJD8UEcjC1ZDNQ,157
|
106
|
+
frogml_core/exceptions/frogml_not_found_exception.py,sha256=2Fd8lx_ACynT9reTeNxVBOCikk-8OztONnViL5YNzjk,160
|
107
|
+
frogml_core/exceptions/frogml_remote_build_failed.py,sha256=CsaWnf7IP-Q44Bhhe5AxUbaRhZVb2rFmbalaVVuKGlA,145
|
108
|
+
frogml_core/exceptions/frogml_suggestion_exception.py,sha256=saqST0umnKRFCscoEBHjB5ot6TVap4kifYRayXrdDy8,748
|
109
|
+
frogml_core/exceptions/quiet_error.py,sha256=ePdCGP6ta8afjzprMiGoJFY-gxf8albRwuY0t1WF2lY,559
|
110
|
+
frogml_core/feature_store/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
111
|
+
frogml_core/feature_store/_common/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
112
|
+
frogml_core/feature_store/_common/artifact_utils.py,sha256=STiDfiYOOX57zYSm2O8oUKIiRNP07w2NaxNcR0CuqWk,2005
|
113
|
+
frogml_core/feature_store/_common/feature_set_utils.py,sha256=s_GGSHqgMD88c1ij62ptgMo0ar9iEBi4yd6T1wuocwQ,9222
|
114
|
+
frogml_core/feature_store/_common/featureset_asterisk_handler.py,sha256=3kygt0HM6QxDSGIRWcWoDwhOr126wwtv0Xr8W7AUGnk,4721
|
115
|
+
frogml_core/feature_store/_common/functions.py,sha256=z033VNAqGZak2oB7pUSS9iJrh9aMRblVGP3iLWCChko,1298
|
116
|
+
frogml_core/feature_store/_common/packaging.py,sha256=5E8v6NO_g-r-qJDD1pv1tqjWEAHjR6pAEWJ0s6VzJEE,8185
|
117
|
+
frogml_core/feature_store/_common/source_code_spec.py,sha256=Ue8N_xdqrooPXJn690ZClct0LvfmxvRgDDiS0ZLHhww,1988
|
118
|
+
frogml_core/feature_store/_common/source_code_spec_factory.py,sha256=pK2k6DDUFwaJje9zMYcOU8fBMj7VrvaUlm6Ez7wg3Xs,1798
|
119
|
+
frogml_core/feature_store/_common/value.py,sha256=JF7W2d5k52SuK2l0QnCVIyZwc2KP4_lVynV1vGPF4MA,329
|
120
|
+
frogml_core/feature_store/data_sources/__init__.py,sha256=nHvTB5zAilsCRIrP87tJYHRmI4kxQD4fhjzwo8F8GOs,2444
|
121
|
+
frogml_core/feature_store/data_sources/attributes.py,sha256=SsiPoJkqSONhK8mnn6ftM6zUxrnqIXuBJ_Dlx6FYf8I,881
|
122
|
+
frogml_core/feature_store/data_sources/base.py,sha256=sCJ1CzbhRX-fgsw_Y3ucUu-tKC3i93upasJfGw3EmtE,4287
|
123
|
+
frogml_core/feature_store/data_sources/batch/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
124
|
+
frogml_core/feature_store/data_sources/batch/_batch.py,sha256=xnrC1SZ4OH4b7gYLRajEBFQ2U00cA3JxKT8bKNTNHLg,204
|
125
|
+
frogml_core/feature_store/data_sources/batch/_jdbc.py,sha256=lC-m3ZypER5vLtYo4h6ghYWeXvdfGSOdTadqS-sTb58,676
|
126
|
+
frogml_core/feature_store/data_sources/batch/athena.py,sha256=2brkewwDRKEPiUW27oER1dwbjWOg9Xq3ik1tPSsHBxY,11290
|
127
|
+
frogml_core/feature_store/data_sources/batch/big_query.py,sha256=h9iscw9I-WyCj1BeyesASNoIiNwPty9acQ37KGD0Ulo,3112
|
128
|
+
frogml_core/feature_store/data_sources/batch/clickhouse.py,sha256=mUSE139-ACnInctQNZqETbnWgFyZidvffVJpwQu0T3Q,2149
|
129
|
+
frogml_core/feature_store/data_sources/batch/csv.py,sha256=saxFeP--CL4h5j2toyxSuOl4kN_WtEEg8pumaYOjCHg,2070
|
130
|
+
frogml_core/feature_store/data_sources/batch/elastic_search.py,sha256=GJKEsOlaxHbBYSor47bofNtV9kJnVVYtq8BSies7hjM,2205
|
131
|
+
frogml_core/feature_store/data_sources/batch/filesystem/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
132
|
+
frogml_core/feature_store/data_sources/batch/filesystem/aws.py,sha256=4mj34C16mH1JeU2dEKFIiV-ubCGHwILlgFNyDuEHHQY,3051
|
133
|
+
frogml_core/feature_store/data_sources/batch/filesystem/base_config.py,sha256=fqvqkM_0QY4rcZNa1qB-KLl72o8PhrQQnak8-Bk4tHM,245
|
134
|
+
frogml_core/feature_store/data_sources/batch/filesystem/gcp.py,sha256=_UU1a0u1DeTh7okstWiM1e2nD8TJLrEigPIFLQnSkuE,1723
|
135
|
+
frogml_core/feature_store/data_sources/batch/filesystem/utils.py,sha256=u2FyAh91JY8j1EzX5fJSgVJqwiwpMvt43mfMeyabVdE,2171
|
136
|
+
frogml_core/feature_store/data_sources/batch/mongodb.py,sha256=98Y67LdRgIzfcPNw3CEPV08BOa-HMgrox3Pw-rW883A,1996
|
137
|
+
frogml_core/feature_store/data_sources/batch/mysql.py,sha256=MOYgsosXIUf3nap83X4lAn-afFE_tydK5_GU0SW8La8,1736
|
138
|
+
frogml_core/feature_store/data_sources/batch/parquet.py,sha256=uOAmTSWn9plN96UuhSqFs_7R9nkrb6DPnJfc7qzcFfY,1963
|
139
|
+
frogml_core/feature_store/data_sources/batch/postgres.py,sha256=bpvYg7bgZKG4Mhdh7pp5aN23i9d1GffX5yBSxkQ4Eho,1789
|
140
|
+
frogml_core/feature_store/data_sources/batch/redshift.py,sha256=f0xH1Nzg3MMjj-WUFR7DzDLNgawv1KmJQzGSw_-eetE,3268
|
141
|
+
frogml_core/feature_store/data_sources/batch/snowflake.py,sha256=T5b9_mRrq_7en-70KgELmgkiKnS3CI9IYw1sBcmSJlw,2671
|
142
|
+
frogml_core/feature_store/data_sources/batch/vertica.py,sha256=J9-1KvzWL5JlCqxRYo7MGfF3yXt4wEQ2GzB5RvuS8OM,1905
|
143
|
+
frogml_core/feature_store/data_sources/source_authentication.py,sha256=AhMxuCYqjmYeaPc5OF_K2YnHq44GcN46AtT3_4nAAIA,962
|
144
|
+
frogml_core/feature_store/data_sources/streaming/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
145
|
+
frogml_core/feature_store/data_sources/streaming/_streaming.py,sha256=LM7vcBeuwlpj9JZjAppuy04mtRoaoQtGixv1oaFcJxI,188
|
146
|
+
frogml_core/feature_store/data_sources/streaming/kafka/__init__.py,sha256=ISoTTLW8e8hNWJHVekWT0yWhjHEwaNvc3Pyzkd23UAE,670
|
147
|
+
frogml_core/feature_store/data_sources/streaming/kafka/authentication.py,sha256=z1VuiHRvALbSFcC2Oa4of2Emy1FHtd6df_-QE6xCR7Q,4305
|
148
|
+
frogml_core/feature_store/data_sources/streaming/kafka/deserialization.py,sha256=uKdYTcVOkq8r9rFlimtVqbfCAROQv66Zs1ZQh1yx9jI,3736
|
149
|
+
frogml_core/feature_store/data_sources/streaming/kafka/kafka.py,sha256=CcfzXgY6lcxTIEJ7bb3Z8rQM693LtBhd_FSHb-l0xvA,4527
|
150
|
+
frogml_core/feature_store/data_sources/time_partition_columns.py,sha256=Glt5aMLKY6fCRiNupgxyliKOev_y9fg6c3DYRNDb5hA,6381
|
151
|
+
frogml_core/feature_store/entities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
152
|
+
frogml_core/feature_store/entities/entity.py,sha256=ktMQUgd4Wmfcko9g9MB0KXk7UkLXlJFZpBFD5NRZE_Q,2325
|
153
|
+
frogml_core/feature_store/execution/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
154
|
+
frogml_core/feature_store/execution/backfill.py,sha256=d2WipBL-DaQ22lCojZC2rBJhGVCcKZQ6RZoqj58WcGY,6857
|
155
|
+
frogml_core/feature_store/execution/execution.py,sha256=l7tb9gQ9haOBwDGYWRpdAsUNab4hHSpBb3Qsy05CUuM,21323
|
156
|
+
frogml_core/feature_store/execution/execution_query.py,sha256=xWTVcgfXAxxTHuQyrHKeuQVVB9sHsOnOlPK5nAE-XZU,3644
|
157
|
+
frogml_core/feature_store/feature_sets/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
158
|
+
frogml_core/feature_store/feature_sets/_utils/_featureset_utils.py,sha256=mnznpQ0RAk5ONRdbp9m4Y95Z2zWUj0bl4ztamtczO1U,1658
|
159
|
+
frogml_core/feature_store/feature_sets/backfill.py,sha256=oZqGb8PA1BQxVOxf9-MwzeZyjJqgwulbA-flmBmXAj4,1981
|
160
|
+
frogml_core/feature_store/feature_sets/base_feature_set.py,sha256=1niCItXApA6JZB7tviXJJVaw91sFwSBwiA1f2xOQnwM,5378
|
161
|
+
frogml_core/feature_store/feature_sets/batch.py,sha256=VADm8KVYhyxV7Ibt2luOlnrbrqd774_ICG0iKPs82cU,17422
|
162
|
+
frogml_core/feature_store/feature_sets/context.py,sha256=RfHXPI6hD7AI7_hZWoLGEhYROeDDsfXTW0OToRB33-s,349
|
163
|
+
frogml_core/feature_store/feature_sets/execution_spec.py,sha256=zKQd7U-PdYkZMqBpA9eIRhhWff-8xxKB_Qo4IDolwGI,2348
|
164
|
+
frogml_core/feature_store/feature_sets/metadata.py,sha256=Vv2pyBbwaJZRFhWKRhxdFyN3AsV-DvTQzLs9nyRMWK0,1888
|
165
|
+
frogml_core/feature_store/feature_sets/read_policies.py,sha256=BQu6B6IZuKJt8Ff5RYeADdqpHmSkec790RIYeSl6Ulo,6844
|
166
|
+
frogml_core/feature_store/feature_sets/streaming.py,sha256=7IRumnjXgjwnmL7RU8RcW2E8-vLmmL4wDMP5snORt_s,25293
|
167
|
+
frogml_core/feature_store/feature_sets/streaming_backfill.py,sha256=Nl4q41NvnW8eHtus2aBNdViYc8WqP5he_z9xQgX5i08,9833
|
168
|
+
frogml_core/feature_store/feature_sets/transformations/__init__.py,sha256=ozc50AI9RBY71nhNiJDu1-vSWJL2Bdgstyh7GGUW2ig,902
|
169
|
+
frogml_core/feature_store/feature_sets/transformations/aggregations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
170
|
+
frogml_core/feature_store/feature_sets/transformations/aggregations/aggregations.py,sha256=f81U0xiE-TBPqtqGabKb-3ApkIyE0tGU0yIxbF4j-D4,15308
|
171
|
+
frogml_core/feature_store/feature_sets/transformations/aggregations/windows.py,sha256=xRLDnbcCjubM7sxxXApSCUhmiq7V8ANJ2cUYJpAHUEQ,2265
|
172
|
+
frogml_core/feature_store/feature_sets/transformations/functions/__init__.py,sha256=Env3mSSbQ5ajtW94Jvum8j3f-aEs6-MIpGDAFa-XIGA,301
|
173
|
+
frogml_core/feature_store/feature_sets/transformations/functions/frogml_pandas.py,sha256=9sXkxNVta3rlcKb64cjrm8CYf_TIYB0EXey5oBXVE7Y,2440
|
174
|
+
frogml_core/feature_store/feature_sets/transformations/functions/schema.py,sha256=kuu8MZ3d2Y9DkmgPZCRgDb0ecsc8isFHQG1lFLPBR3Y,1156
|
175
|
+
frogml_core/feature_store/feature_sets/transformations/transformations.py,sha256=MOZFeeMumXP5QODG5h2Hifcry69IDuiZgoiTlKpgVcE,15978
|
176
|
+
frogml_core/feature_store/feature_sets/transformations/validations/validations_util.py,sha256=u5EnrfpMzJjzbhO-odYDyNtgF50GBq6oMrDMivsPwmg,3215
|
177
|
+
frogml_core/feature_store/offline/__init__.py,sha256=wykzcryc7d6zul2xKhxSypr6P1-XLYK9Jjz5dBYITXs,187
|
178
|
+
frogml_core/feature_store/offline/_offline_serving_validations.py,sha256=yfkV8UVLDi719QvZU_UfIiIHqdWfrTzATUDTVAseDu0,1239
|
179
|
+
frogml_core/feature_store/offline/_query_engine.py,sha256=LBVejISK9daYYWUYclXuMifezfsuzF4JgBhp2YlHZf0,738
|
180
|
+
frogml_core/feature_store/offline/athena/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
181
|
+
frogml_core/feature_store/offline/athena/athena_query_engine.py,sha256=7Obo5n5BWtMpV06IwYQ0gm63uq5JrC8L5E9zgw-SWto,5213
|
182
|
+
frogml_core/feature_store/offline/client.py,sha256=psgNKr9MjI1ZnRbpAlpHhx34d7AE71KX1YNKYPOx-kc,28759
|
183
|
+
frogml_core/feature_store/offline/client_v2.py,sha256=kTFyHAYIsKBe3wcuE1S_LyD9CLQ_yCorOLcHVR3Emms,14966
|
184
|
+
frogml_core/feature_store/offline/feature_set_features.py,sha256=MjrQrXNhzk7QBdCojdpLfy1fuGdP3GcpOgcc7n7H0G8,740
|
185
|
+
frogml_core/feature_store/online/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
186
|
+
frogml_core/feature_store/online/client.py,sha256=jkO7mMy_493ytYMWB0rSJEGzwn8-eCfn-NzmJQK9cbc,13361
|
187
|
+
frogml_core/feature_store/online/endpoint_utils.py,sha256=lGssZR-r8kJpcSozVxQAk1_JpVXgRLqOVrK6fw8flPg,2242
|
188
|
+
frogml_core/feature_store/sinks/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
189
|
+
frogml_core/feature_store/sinks/base.py,sha256=QdIutDlO_8IBRr-zKfHBRHJ1-DjDmFfR_Yuad193kg0,361
|
190
|
+
frogml_core/feature_store/sinks/kafka.py,sha256=zlawE62TSShX1D4RWHMowLdVaw5FFThl7kcDBkN2LH0,1923
|
191
|
+
frogml_core/feature_store/sinks/streaming/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
192
|
+
frogml_core/feature_store/sinks/streaming/attachment.py,sha256=oHHaxoMtSALI2udHk59joizs15di6OXX-BN_rruWF-c,1158
|
193
|
+
frogml_core/feature_store/sinks/streaming/factory.py,sha256=tpBkJmc1EC7OdhDO9bNiiVq2XtV7MVLfZJs1RiHt1Fk,2529
|
194
|
+
frogml_core/feature_store/validations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
195
|
+
frogml_core/feature_store/validations/validation_options.py,sha256=2EbOVC8pmnToP0GUwiPHuz3ew7Vrqr3IdRpUdiLqa0Y,2847
|
196
|
+
frogml_core/feature_store/validations/validation_response.py,sha256=N7lh7h187wBkeuEfVTooE_cGDt_Wo29mEZjmiHR6Pq0,3953
|
197
|
+
frogml_core/feature_store/validations/validator.py,sha256=ekZPpjSjhg_odR-ulVyDgsvfEOzu_5ybKtnszmTsJQ4,3918
|
198
|
+
frogml_core/frogml_client/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
199
|
+
frogml_core/frogml_client/batch_jobs/execution.py,sha256=UvRkxgdiDC5aZh8nsz_9-AbU-3cg8P9qQSmTL1uHtSI,1758
|
200
|
+
frogml_core/frogml_client/batch_jobs/task.py,sha256=GF1_Jnldp6_JkkzF-pQEhq1vn-Z8RYmgQduoMVYQ9UI,1532
|
201
|
+
frogml_core/frogml_client/build_api_helpers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
202
|
+
frogml_core/frogml_client/build_api_helpers/build_api_steps.py,sha256=7JGstGSQfdWCyFGiju2xHMPS2esp3BwAUhGbAC8_P0Y,1969
|
203
|
+
frogml_core/frogml_client/build_api_helpers/messages.py,sha256=q-1fgIchkbUgGAOnDRETwCasLsd9-hKg6xwJcJsazQ0,186
|
204
|
+
frogml_core/frogml_client/build_api_helpers/trigger_build_api.py,sha256=LYscfsxk8WmRAsVkxBu28gSqgaJuhqb8BiO4LxWtSGM,2436
|
205
|
+
frogml_core/frogml_client/builds/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
206
|
+
frogml_core/frogml_client/builds/build.py,sha256=5LysOp1nAhjQaL1Jdg-rtb81jOaxZL-J1tgKD0OMQvw,3702
|
207
|
+
frogml_core/frogml_client/builds/filters/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
208
|
+
frogml_core/frogml_client/builds/filters/metric_filter.py,sha256=hDhyKGavGmZXRbmhGjtZejY1veQR277F1FUgBg-ZjjM,1186
|
209
|
+
frogml_core/frogml_client/builds/filters/parameter_filter.py,sha256=3qEL2KJdZNytx646XnBjDO7phxCDO98tAUqMurp5Kq0,1098
|
210
|
+
frogml_core/frogml_client/client.py,sha256=cE3seZBsIb5CRSTC1khrEkDsOCCRp6_cMoMBM4r5HLY,29356
|
211
|
+
frogml_core/frogml_client/data_versioning/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
212
|
+
frogml_core/frogml_client/data_versioning/data_tag.py,sha256=WadGhSMgKIajVV9jWIIwXhi-xBR5bsQnu9dN-XPX_XU,807
|
213
|
+
frogml_core/frogml_client/deployments/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
214
|
+
frogml_core/frogml_client/deployments/deployment.py,sha256=-G_LcdfOAFJUz1RH6YI2twSToyPmBiezbhuZsm4F6LY,13304
|
215
|
+
frogml_core/frogml_client/file_versioning/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
216
|
+
frogml_core/frogml_client/file_versioning/file_tag.py,sha256=QowIrHPeDwR5_z_z2PIY_NiR01fahlAAnB1I52mMyA8,807
|
217
|
+
frogml_core/frogml_client/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
218
|
+
frogml_core/frogml_client/models/model.py,sha256=QF495CoQbmfepB6qMjKeewVW8HPXpyRo6RswU41NQag,1923
|
219
|
+
frogml_core/frogml_client/models/model_metadata.py,sha256=ALh_mtV_dJPLXfyw1_8uNVUb7WVIIV9bIJVwUJsfaDU,1231
|
220
|
+
frogml_core/frogml_client/projects/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
221
|
+
frogml_core/frogml_client/projects/project.py,sha256=md4repLbtSJpdRrEHY50MDUqagKOtkk_YMgDzgY0jhQ,2287
|
222
|
+
frogml_core/inner/__init__.py,sha256=aQqyLEo02TJx8qzCCYnFkxPmm4Pg9ZSuqfmSDWFfyWs,232
|
223
|
+
frogml_core/inner/build_config/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
224
|
+
frogml_core/inner/build_config/build_config_v1.py,sha256=_Z3L9e5A3PmQ5btaRYADBHU6DmzFXHIyCrLNd2g5UEc,11523
|
225
|
+
frogml_core/inner/build_logic/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
226
|
+
frogml_core/inner/build_logic/build_loggers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
227
|
+
frogml_core/inner/build_logic/build_loggers/trigger_build_logger.py,sha256=Q8X-MwvOikAkoiYBr7LQ9LXMN_-6JOGZ6oS_QnzvNyU,1439
|
228
|
+
frogml_core/inner/build_logic/constants/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
229
|
+
frogml_core/inner/build_logic/constants/dependencies.py,sha256=YIK_fu07veVuNX4czDoM0djtqSfukWv8ibytkAdzkC4,209
|
230
|
+
frogml_core/inner/build_logic/constants/host_resource.py,sha256=XrHQeJOAEygOx7GTPGTVWCOuDEr5zXYcW0e7kK3HFiU,137
|
231
|
+
frogml_core/inner/build_logic/constants/messages.py,sha256=jqoTX5hMU4uCIlD84j20T2HzGyp46QBgm4azojT5RXQ,96
|
232
|
+
frogml_core/inner/build_logic/constants/temp_dir.py,sha256=rp9chSiT2ShrzpLqPJVf1kC0p_V-LxBgChRYZKFPlSs,36
|
233
|
+
frogml_core/inner/build_logic/constants/upload_tag.py,sha256=cqrYfHzA2mQqxu6tiXup1f7esK4Jcw7QseguFJNYNXM,297
|
234
|
+
frogml_core/inner/build_logic/dependency_manager_type.py,sha256=1L-njo19b6-W2vO-bOtjzek1GL_bkVlgvZWYfmcTsBE,116
|
235
|
+
frogml_core/inner/build_logic/execute_build_pipeline.py,sha256=dONVHjMoZHd-FZ3QySLHIPBATrw6iI-SFZIFtDxNL2U,2321
|
236
|
+
frogml_core/inner/build_logic/interface/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
237
|
+
frogml_core/inner/build_logic/interface/build_logger_interface.py,sha256=JUxldJuhMVHoXk9nZc9tz7-LPOMC99Z32oQYHSHpffY,528
|
238
|
+
frogml_core/inner/build_logic/interface/build_phase.py,sha256=DNOcg11RVCSPpnGcAk2xDYEXwQ6UNWFoiGMpjgSFPt8,675
|
239
|
+
frogml_core/inner/build_logic/interface/context_interface.py,sha256=3Zpnb5E3fXKsx4o37cOOPdSWXT5H4Yz3Yt0H5DXUnSU,2120
|
240
|
+
frogml_core/inner/build_logic/interface/phase_run_handler.py,sha256=Jfrpd-YJJUNKsPH74u_VT-KDR37BV6eK122thyWHaUo,1744
|
241
|
+
frogml_core/inner/build_logic/interface/step_inteface.py,sha256=ETCTp4bHj3O-pOxdQG_7X-W-gu73GLRAGKbnDHOOyP4,746
|
242
|
+
frogml_core/inner/build_logic/interface/time_source.py,sha256=njwil9A1sxP4SoB8LxtNhWhlV2-w1XOpoF4_wccNVYU,585
|
243
|
+
frogml_core/inner/build_logic/phases/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
244
|
+
frogml_core/inner/build_logic/phases/phase_010_fetch_model/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
245
|
+
frogml_core/inner/build_logic/phases/phase_010_fetch_model/fetch_model_step.py,sha256=RGYvu5V5xnI0FbmJVmVUI96ea028POM5isgNCAFj0_E,1900
|
246
|
+
frogml_core/inner/build_logic/phases/phase_010_fetch_model/fetch_strategy_manager/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
247
|
+
frogml_core/inner/build_logic/phases/phase_010_fetch_model/fetch_strategy_manager/common.py,sha256=VcQJ_Bn9uXQ4vXErj2jYMs1yaQ8SnuotlqZuU7HgG5E,960
|
248
|
+
frogml_core/inner/build_logic/phases/phase_010_fetch_model/fetch_strategy_manager/fetch_strategy_manager.py,sha256=pbTT0lZihx0aZINV2I8F7ptrBp0S3tmq3O0Dw_Oc1k4,2085
|
249
|
+
frogml_core/inner/build_logic/phases/phase_010_fetch_model/fetch_strategy_manager/strategy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
250
|
+
frogml_core/inner/build_logic/phases/phase_010_fetch_model/fetch_strategy_manager/strategy/folder/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
251
|
+
frogml_core/inner/build_logic/phases/phase_010_fetch_model/fetch_strategy_manager/strategy/folder/folder_strategy.py,sha256=Uy3HJuiIaGjqVdFyMhyB33QLQxZEHR22K_wx9KrFSaY,5081
|
252
|
+
frogml_core/inner/build_logic/phases/phase_010_fetch_model/fetch_strategy_manager/strategy/git/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
253
|
+
frogml_core/inner/build_logic/phases/phase_010_fetch_model/fetch_strategy_manager/strategy/git/git_strategy.py,sha256=0ZbCGBJ6pxjIBi8t8fT-g2fK-es_vSHboZiPT_hgOkI,5947
|
254
|
+
frogml_core/inner/build_logic/phases/phase_010_fetch_model/fetch_strategy_manager/strategy/strategy.py,sha256=MocvnsB_0NAy8ab6NOWRhmNbApGnO_zttyBXvtx8CPE,1447
|
255
|
+
frogml_core/inner/build_logic/phases/phase_010_fetch_model/fetch_strategy_manager/strategy/zip/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
256
|
+
frogml_core/inner/build_logic/phases/phase_010_fetch_model/fetch_strategy_manager/strategy/zip/zip_strategy.py,sha256=wCDk5wQlEtCLVDFdC3lXEebpLIMECovHHTvyLsorki8,2276
|
257
|
+
frogml_core/inner/build_logic/phases/phase_010_fetch_model/post_fetch_validation_step.py,sha256=5QRSCdDNMM-KNfIkHjyexEwbLya5V4WnzPYWvmXpV6g,5471
|
258
|
+
frogml_core/inner/build_logic/phases/phase_010_fetch_model/pre_fetch_validation_step.py,sha256=_IGqNpO1qohHqzMh93NW1Z-DaphSLq-9kYfPCKz9Mz0,11263
|
259
|
+
frogml_core/inner/build_logic/phases/phase_010_fetch_model/set_version_step.py,sha256=XCfLmr5GWd4dkBB8rKc0FwivW3RbIwrgfGH8f7agKwU,1226
|
260
|
+
frogml_core/inner/build_logic/phases/phase_020_remote_register_frogml_build/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
261
|
+
frogml_core/inner/build_logic/phases/phase_020_remote_register_frogml_build/cleanup_step.py,sha256=HmQ0iQ9pJxLZTDzUvwVwwWO2CG-4fHtxwmye-xL0Q9U,632
|
262
|
+
frogml_core/inner/build_logic/phases/phase_020_remote_register_frogml_build/start_remote_build_step.py,sha256=UQWLfJpj9lm0fJfKj0Kc2N99x6ioUVfKPXrf1u70rJY,1691
|
263
|
+
frogml_core/inner/build_logic/phases/phase_020_remote_register_frogml_build/upload_step.py,sha256=TbNonL_FR0yycEiPqAGYldPD5hY_ooXDXo3JgvMdWC8,9617
|
264
|
+
frogml_core/inner/build_logic/phases/phases_pipeline.py,sha256=Ei70zbiiT6Be2aFLV7Z5zcVykm2peOsd-UFLG47AR_c,1258
|
265
|
+
frogml_core/inner/build_logic/run_handlers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
266
|
+
frogml_core/inner/build_logic/run_handlers/programmatic_phase_run_handler.py,sha256=XE1afXZfA1AQOa9bV2CtmK--gcX0YKRhLwGdkfb3cto,3547
|
267
|
+
frogml_core/inner/build_logic/tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
268
|
+
frogml_core/inner/build_logic/tools/dependencies_tools.py,sha256=xuwwVOVYlOuRKlExJp4TCyp0jTlKitQnqC6nTj0VuVQ,2512
|
269
|
+
frogml_core/inner/build_logic/tools/files.py,sha256=yEEXgOoQroxTa_S2zr5DbnrwEC1NiDXiq6Zl-xmGyXU,8277
|
270
|
+
frogml_core/inner/build_logic/tools/ignore_files.py,sha256=PO23CgJlC9fPuLh82vOjbL3L9hm0G03a8lOU69s6FVI,757
|
271
|
+
frogml_core/inner/build_logic/tools/text.py,sha256=tH-v19Mt8l90sMVxku5XRtrderT0qdRqJ-jLijqannA,188
|
272
|
+
frogml_core/inner/build_logic/trigger_build_context.py,sha256=SgyWaOKTlZUHqglo8r_pkn_a6PHP-L6gtYaapQ6F3Rs,207
|
273
|
+
frogml_core/inner/const.py,sha256=eP8Naruk3EnRWDdS9gwpozUYA9Nxznybw7Eiv4k5l38,126
|
274
|
+
frogml_core/inner/di_configuration/__init__.py,sha256=RJ30JlZguilrvlFTn66F7SWUGzV6T5yu_GOQCd7mwDY,1892
|
275
|
+
frogml_core/inner/di_configuration/account.py,sha256=sKxNqsSIodxV5XQuGeucQcrHYCx4IVIe3eiuPxeS4XE,2841
|
276
|
+
frogml_core/inner/di_configuration/config.yml,sha256=GUvaZMWIDIR_d7hFcPVG_kHdCwpERKH1AFDakG3vqI4,242
|
277
|
+
frogml_core/inner/di_configuration/containers.py,sha256=epzNvWcHcfO07EV6aQxEaGIehqgKBUK2CGzKgk1HeEA,1148
|
278
|
+
frogml_core/inner/instance_template/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
279
|
+
frogml_core/inner/instance_template/verify_template_id.py,sha256=3rmVpZyqDs7wUyXSmfJ8YjUK15Q4_H95J8Ba5E6KuA8,1951
|
280
|
+
frogml_core/inner/model_loggers_utils.py,sha256=pGZ8Eh6PsoQTmDMKnI3ZVckl9n6ZVBslbuZdUnZFGbA,2967
|
281
|
+
frogml_core/inner/provider.py,sha256=3evQnyp0v0enpvGGDyaZziusO4BGi-U9j1sno8DAHo4,70
|
282
|
+
frogml_core/inner/runtime_di/__init__.py,sha256=HXqtejgH3J9TXjnEBT6cNwnTDPq6v3sTifcmfWiwyFA,312
|
283
|
+
frogml_core/inner/runtime_di/containers.py,sha256=LbapepWFjBjkELEOTK7m7AJEfj4KENVDlpD7lv7zw6o,577
|
284
|
+
frogml_core/inner/singleton_meta.py,sha256=1cU99I0f9tjuMQLMJyLsK1oK3fZJMsO5-TbRHAMXqds,627
|
285
|
+
frogml_core/inner/tool/__init__.py,sha256=rmOSE-ejnzDG_H7kbikPQxEO4TFIkhBWjOXhTIrldiU,35
|
286
|
+
frogml_core/inner/tool/auth.py,sha256=aED74VA5LLUyR6tY_owl47cntj7dLywJG_GSUVyZDEE,2444
|
287
|
+
frogml_core/inner/tool/grpc/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
288
|
+
frogml_core/inner/tool/grpc/grpc_auth.py,sha256=WPFWn7CfGp-pSqlnUTplHB6lfuJdzpS6jeidmpyondo,1421
|
289
|
+
frogml_core/inner/tool/grpc/grpc_tools.py,sha256=8sXDWBd_kVRuwmUSdpQNobylT6u8H_83Q8WlZJYOi0c,7247
|
290
|
+
frogml_core/inner/tool/grpc/grpc_try_wrapping.py,sha256=zSk7netTKMLoBf8WW3uf5Bw5bqlhGVDtx83Q3wQ8JkU,434
|
291
|
+
frogml_core/inner/tool/protobuf_factory.py,sha256=QBk7ySxHRkxvrC8ICZR7sYizDHIZKQHOcGfo6qXnrDA,1699
|
292
|
+
frogml_core/inner/tool/retry_utils.py,sha256=KcSFJuj02RKF-H9INpCmdiTNXlywEMJ2ClBa00N9aNM,435
|
293
|
+
frogml_core/inner/tool/run_config/__init__.py,sha256=krOWmfbiUyMxa4Z7FHZk3gGZBbMiJINxLxD7XwyUefE,277
|
294
|
+
frogml_core/inner/tool/run_config/base.py,sha256=D5PsVHSW8oB6AbY40PEgaonLc_R4hJ9V-RigGHXWdl4,4218
|
295
|
+
frogml_core/inner/tool/run_config/utils.py,sha256=xrSmnOvRK4enuy6-4ly_IWP4__l8czQ-E83wSmig14Y,7722
|
296
|
+
frogml_core/llmops/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
297
|
+
frogml_core/llmops/generation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
298
|
+
frogml_core/llmops/generation/_steaming.py,sha256=3yPzoItkHEb6GHQvauNYvH9yUBooa8kr6998rgTAoAY,2424
|
299
|
+
frogml_core/llmops/generation/base.py,sha256=z5mt2xxWRJPVR99bB4uw-80_wOE0sQ7zS82KJa6bWZw,57
|
300
|
+
frogml_core/llmops/generation/chat/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
301
|
+
frogml_core/llmops/generation/chat/openai/LICENSE.txt,sha256=d0M6HDjQ76tf255XPlAGkIoECMe688MXcGEYsOFySfI,11336
|
302
|
+
frogml_core/llmops/generation/chat/openai/types/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
303
|
+
frogml_core/llmops/generation/chat/openai/types/chat/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
304
|
+
frogml_core/llmops/generation/chat/openai/types/chat/chat_completion.py,sha256=AWgjOMQau7UsV1-UXGk_Chg0s-iIwC5iCGcFq-zLLQw,2930
|
305
|
+
frogml_core/llmops/generation/chat/openai/types/chat/chat_completion_assistant_message_param.py,sha256=Z-RpaLK5p7Mf87HXXEkhf7nIFsrq7GtJ-bZoAByat_k,2155
|
306
|
+
frogml_core/llmops/generation/chat/openai/types/chat/chat_completion_chunk.py,sha256=v07PEE2ARYRzVpVfE8iC6Ho5gdDRwbDetQLN2sRO1SE,4704
|
307
|
+
frogml_core/llmops/generation/chat/openai/types/chat/chat_completion_content_part_text_param.py,sha256=N-880rUhsmzQX0gliLoc0GEzRYG6b999abPdiv5CeSc,945
|
308
|
+
frogml_core/llmops/generation/chat/openai/types/chat/chat_completion_function_call_option_param.py,sha256=T_dfvBpEupTdwHVxBX9nAJu5M0YmH7GNNwofQ-DT1kY,881
|
309
|
+
frogml_core/llmops/generation/chat/openai/types/chat/chat_completion_function_message_param.py,sha256=23WF1T86LoWrQaVg5DAASlxlpE82UUZYa58l3MlEF1Y,1108
|
310
|
+
frogml_core/llmops/generation/chat/openai/types/chat/chat_completion_message.py,sha256=GjQx7m7cJ6HnjYewh83a51gDQBZfL45vS5BJAP0eZTw,1800
|
311
|
+
frogml_core/llmops/generation/chat/openai/types/chat/chat_completion_message_param.py,sha256=wjJTJwOOZhFx8KgmBHl9iZJDMutzEma5R0q3FlJ2vUI,1354
|
312
|
+
frogml_core/llmops/generation/chat/openai/types/chat/chat_completion_message_tool_call.py,sha256=HrmsJw6D41H3a-8lNZsYRz0MJy3_8YGnX9-HEAYO3d4,1417
|
313
|
+
frogml_core/llmops/generation/chat/openai/types/chat/chat_completion_message_tool_call_param.py,sha256=1PKfzKEV1WjtN7xkvGSLyS7H9wILM5LLQEbr5eg6Q2g,1525
|
314
|
+
frogml_core/llmops/generation/chat/openai/types/chat/chat_completion_named_tool_choice_param.py,sha256=Ib7ChiK1GKt1atUZJcOPILQPSTBiV9S9WRwsbgpmQtg,1085
|
315
|
+
frogml_core/llmops/generation/chat/openai/types/chat/chat_completion_role.py,sha256=83ahIvAYxiEj2pWsAIFWHsu1ibRSfmsWqxkyBV9N57s,756
|
316
|
+
frogml_core/llmops/generation/chat/openai/types/chat/chat_completion_system_message_param.py,sha256=_cDW9G5wiFH1d55pgjyzbxVhKinnumTeEkSkcz8V2ME,1154
|
317
|
+
frogml_core/llmops/generation/chat/openai/types/chat/chat_completion_token_logprob.py,sha256=hEmNql-SYjzNhGW14hO1hKVgC5YHgrkfrv_XyxIA_5E,2285
|
318
|
+
frogml_core/llmops/generation/chat/openai/types/chat/chat_completion_tool_choice_option_param.py,sha256=khFoytoPQuwuQEcz3IbwaK7fFV2CNqBTJzkB2JQ6mgs,955
|
319
|
+
frogml_core/llmops/generation/chat/openai/types/chat/chat_completion_tool_message_param.py,sha256=rzveJrhgSsO0eOwy2Q5yTufvMb_RuEgDnhEnf_JvjVA,1069
|
320
|
+
frogml_core/llmops/generation/chat/openai/types/chat/chat_completion_tool_param.py,sha256=rV0M_Lnop817iwhttfYhlQfciorfEzTTdrkTTy94LQ8,1001
|
321
|
+
frogml_core/llmops/generation/chat/openai/types/chat/chat_completion_user_message_param.py,sha256=Hoq7ZCRN9s1bTmYuNc7oTsEQ7oJvscE6lwXYyJPaBqQ,1144
|
322
|
+
frogml_core/llmops/generation/chat/openai/types/chat/completion_create_params.py,sha256=UYS-wbcevQ0BfuBq8sz1ZzhTdpWSKHOyEUInVk9p2qc,10511
|
323
|
+
frogml_core/llmops/generation/chat/openai/types/completion_choice.py,sha256=gStpRTp-CHHpJNWNyEyHf8VagfXpPP5Ev3U1Z2mTV7g,1480
|
324
|
+
frogml_core/llmops/generation/chat/openai/types/completion_create_params.py,sha256=l5yhLOX3TNy-ANJa4ftua4MjY11T1ZpYikpMnLZxuO4,7951
|
325
|
+
frogml_core/llmops/generation/chat/openai/types/completion_usage.py,sha256=wKH3j5GBXXIKXJ2ZZtTmtPOBEHhMw1ehE-zWYf8o8Wo,952
|
326
|
+
frogml_core/llmops/generation/chat/openai/types/model.py,sha256=IkntCappkqt8TMAaZF24UWiWHo2lNC9QUPKH0RWL8v4,1050
|
327
|
+
frogml_core/llmops/generation/chat/openai/types/shared/__init__.py,sha256=zmCVZ3KAEDebUc7FQfLmOP7Iug5cJCG3xokWMyYajRI,201
|
328
|
+
frogml_core/llmops/generation/chat/openai/types/shared/error_object.py,sha256=x8cptCqZ_E-s28qlHrPrm_JrU0uidpTCKPX4GuVf6gc,818
|
329
|
+
frogml_core/llmops/generation/chat/openai/types/shared/function_definition.py,sha256=2uwfB2SlP2xBB3ZN9C_LRo5CPJTDscaAdtgvP6i31GY,1584
|
330
|
+
frogml_core/llmops/generation/chat/openai/types/shared/function_parameters.py,sha256=hN1DWcUhsNfuB-1I_0mFpfefwYIDgpYis57eTpYOqa0,701
|
331
|
+
frogml_core/llmops/generation/chat/openai/types/shared_params/__init__.py,sha256=ASfJkv7F_eU76MyZn6SDWheRiGKV90MEs5sWnMWXxOY,148
|
332
|
+
frogml_core/llmops/generation/chat/openai/types/shared_params/function_definition.py,sha256=B9fLRPq1a0DiFHQGd9sbefJZTyD5EyafejMRdrtv6Dc,1594
|
333
|
+
frogml_core/llmops/generation/chat/openai/types/shared_params/function_parameters.py,sha256=Jd4xRTrk7Di922iy6BnZuWghXSDDOk18yrl_ZIik49Q,737
|
334
|
+
frogml_core/llmops/generation/streaming.py,sha256=BIbi-Tdp2jPojWSZUWJHE6xLcndjQgxgX68GAJUpX1w,483
|
335
|
+
frogml_core/llmops/model/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
336
|
+
frogml_core/llmops/model/descriptor.py,sha256=vtxNCij1qSVvPUMWZkzd_ZC11cLZK8bfpdBIYB5Yl_w,1471
|
337
|
+
frogml_core/llmops/prompt/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
338
|
+
frogml_core/llmops/prompt/base.py,sha256=nOqOmh55LCjGJWMJZd2rV-RZjrPyBFVt7-4iaKS41oQ,5009
|
339
|
+
frogml_core/llmops/prompt/chat/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
340
|
+
frogml_core/llmops/prompt/chat/message.py,sha256=bTmdaBS1_CJuDzoeU7jjOyjwB5eksSPSXe_uj5Ege1E,427
|
341
|
+
frogml_core/llmops/prompt/chat/template.py,sha256=yXDc8_RI00vbjWVh7XgJwSyFxE7ULw318u4abuxV5xs,3659
|
342
|
+
frogml_core/llmops/prompt/chat/value.py,sha256=7gcvBlDUaXNwCQnU2xQHxWwqUiIh5-52lwt6HNFrsc4,259
|
343
|
+
frogml_core/llmops/prompt/manager.py,sha256=Mv4rYW7-8SA9yEFXsizP3MFaAy5gbKB2ZwfvDDf4sUc,5449
|
344
|
+
frogml_core/llmops/prompt/template.py,sha256=ansNEuO4OtSzb7ghJWMDwrQfLIcEz8j3ZeFN9XDsP8A,627
|
345
|
+
frogml_core/llmops/prompt/value.py,sha256=GCjYASqzRQOrVu__06eyOwfA0C9C5BHLU1ypINUeCcU,212
|
346
|
+
frogml_core/llmops/provider/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
347
|
+
frogml_core/llmops/provider/chat.py,sha256=n0WY2OhdX__w20DO7vvP53xVIqmr3cVF_G0yiCJsAzU,1626
|
348
|
+
frogml_core/llmops/provider/openai/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
349
|
+
frogml_core/llmops/provider/openai/client.py,sha256=JwI9SMUu3bpMoixBAl10iX0J5xKdGFXV0SloPMI6gv8,4534
|
350
|
+
frogml_core/llmops/provider/openai/provider.py,sha256=cWM3KoxFNOKgMtkKAgSpcFO_D9MipXRBwwC-sQe3uZM,3129
|
351
|
+
frogml_core/model/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
352
|
+
frogml_core/model/_entity_extraction.py,sha256=gFeHgKgnz-MpB61w0OfJe30PUh5Cm390nZWSKy0JIls,4669
|
353
|
+
frogml_core/model/adapters/__init__.py,sha256=jMM_0Nf6_vCKccsRB0izs8odCXYlXt-u1sXGh4PcpX4,1739
|
354
|
+
frogml_core/model/adapters/input_adapters/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
355
|
+
frogml_core/model/adapters/input_adapters/base_input_adapter.py,sha256=RCnzt56i-XjJ_IDOO60VN6dMapuvokGW7rwNFQWswgI,198
|
356
|
+
frogml_core/model/adapters/input_adapters/dataframe_input_adapter.py,sha256=8mS2R3iUwztaiTCK4Fhdr1-tQHXdbdw4_nIxrLz6_mw,322
|
357
|
+
frogml_core/model/adapters/input_adapters/file_input_adapter.py,sha256=WR5ac61LDAPDnfVRb4XQBzPCOfv8lK7HXGrfBBsJJ-g,205
|
358
|
+
frogml_core/model/adapters/input_adapters/image_input_adapter.py,sha256=R1BJeuq9beLXwP3bGVhLy-lo5FxHp6tZXvTfntFbV4Y,206
|
359
|
+
frogml_core/model/adapters/input_adapters/json_input_adapter.py,sha256=Xkm-A20Ev64HtA4HpgRsGjIAkNlE7J5uSGlJ8izkQi4,205
|
360
|
+
frogml_core/model/adapters/input_adapters/multi_input_adapter.py,sha256=Rjcziqodc9j-C8RhNE94CnvKvG8M-tTNgOmVhFIlQF8,3068
|
361
|
+
frogml_core/model/adapters/input_adapters/numpy_input_adapter.py,sha256=_cShlfo4K9VafF6s6ROXOrKOQ5R0Ke4YoQytPznBnXs,3223
|
362
|
+
frogml_core/model/adapters/input_adapters/proto_input_adapter.py,sha256=sg1BZZSKQGgwMMgCOAy0FKvExGLjX3dupU4aLMCsU1E,862
|
363
|
+
frogml_core/model/adapters/input_adapters/string_input_adapter.py,sha256=Zz8BXKL_HRPkwcWuiY93NJ4t1vs61febzvM30Dqw-00,207
|
364
|
+
frogml_core/model/adapters/input_adapters/tf_tensor_input_adapter.py,sha256=n3_6HQRUv7yQQcrsoifH6YisppqBkVRUbLlbKrLQMj4,209
|
365
|
+
frogml_core/model/adapters/output_adapters/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
366
|
+
frogml_core/model/adapters/output_adapters/base_output_adapter.py,sha256=CAd0KnTmi9h8xD33v7YNbQAYOYmtZxpRs9bsnhzHRHc,315
|
367
|
+
frogml_core/model/adapters/output_adapters/dataframe_output_adapter.py,sha256=acXXwyw6TmFaZ9lUccTzWrykb48IuUfverQH3OY-G3Y,321
|
368
|
+
frogml_core/model/adapters/output_adapters/default_output_adapter.py,sha256=6iCGj_TNJL4Phvq7Y9GPA3SwNP6oqf1ELtkLc-l6Hx0,219
|
369
|
+
frogml_core/model/adapters/output_adapters/json_output_adapter.py,sha256=SKZiYemZYr3X7QNe1ql-AJO4vglhTMaWmIcLlcP4uu0,216
|
370
|
+
frogml_core/model/adapters/output_adapters/numpy_output_adapter.py,sha256=wWWfToKEIGxCola1E7YddNz7RZhY0TvzHiDh57mQEzo,1076
|
371
|
+
frogml_core/model/adapters/output_adapters/proto_output_adapter.py,sha256=eUF1XoLCVocgSR5nqC2OyfbGVMgCdwkk_XJGJL3uJaU,517
|
372
|
+
frogml_core/model/adapters/output_adapters/qwak_with_default_fallback.py,sha256=6iBIPuvqfynexPVNVvajcmytl4uji0pyfe8shCrmky0,115
|
373
|
+
frogml_core/model/adapters/output_adapters/tf_tensor_output_adapter.py,sha256=nSOszDmgsDyahqJbX10zrdwMX2W90RdQQ2uhybF7S08,220
|
374
|
+
frogml_core/model/analytics_logging.py,sha256=M8R9nQRafa840wGEjyetbu1b-ThLfJ8V5bqXHN2Wdso,314
|
375
|
+
frogml_core/model/base.py,sha256=FNeJDoD9ugOdtFo6Yl1NgcQXVGsH4eoA-NenKCuJ-SA,2845
|
376
|
+
frogml_core/model/decorators/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
377
|
+
frogml_core/model/decorators/api.py,sha256=EtgjGEj2OT7dPd0BOOnDe0SY_kU_RSYRoyFi7Poz6TY,2008
|
378
|
+
frogml_core/model/decorators/impl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
379
|
+
frogml_core/model/decorators/impl/api_implementation.py,sha256=KkVUeh_PHQKvjnel4GbIcGjMVyvomPMfarF2dXzZsTE,1007
|
380
|
+
frogml_core/model/decorators/impl/timer_implementation.py,sha256=nhw24ETkSkflr1SXowv-RTqCRU939LMtWFdoQAnkKgM,217
|
381
|
+
frogml_core/model/decorators/timer.py,sha256=Op2kvjREkq0PnagHq_n_UruceK_wjzOWRY-5olgf3FM,757
|
382
|
+
frogml_core/model/fs_info_mapping_retriever.py,sha256=rfzUtUN68BU9GVz80eRWN_GSey2b-ihbqveSPtZZROw,2465
|
383
|
+
frogml_core/model/model_version_tracking.py,sha256=uP8NcsWp7UmZCBjmmkM6booTW5txg4kF-4fXP7ovNyg,1444
|
384
|
+
frogml_core/model/schema.py,sha256=z6TYT0uh0WKcNiIQPCK4WfC_Mf9ixtG9qXmoaMXLm14,1996
|
385
|
+
frogml_core/model/schema_entities.py,sha256=Q-kNEKnEHG-Wyk_fOP_Em5bQ2aeB9gFS6SeXKkdtNvE,2729
|
386
|
+
frogml_core/model/tools/__init__.py,sha256=hCoR7Fm87WcrbckIsi23VauopiU_YqNpIkjYs2Yg6XY,804
|
387
|
+
frogml_core/model/tools/adapters/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
388
|
+
frogml_core/model/tools/adapters/encoders.py,sha256=VBxgv5-Gdcz8hyj9dFCAz9JpKmD46uoC_E7F-2ViqOw,1193
|
389
|
+
frogml_core/model/tools/adapters/input.py,sha256=653bPmObq0SEw5Y1GdZtNcAeWJRanpIEei2JC1VXDRo,2201
|
390
|
+
frogml_core/model/tools/adapters/input_adapters/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
391
|
+
frogml_core/model/tools/adapters/input_adapters/base_input.py,sha256=LHwxP323dokgtouo5sXoNKsBk3kEoeJuUV7M-opzmcM,606
|
392
|
+
frogml_core/model/tools/adapters/input_adapters/dataframe_input.py,sha256=Y-TWmm36dsqoxNILTpLWAm46H0dmsO5CPt0f_09BU-w,1571
|
393
|
+
frogml_core/model/tools/adapters/input_adapters/file_input.py,sha256=NZXCce9J0E69ncePVE8ZN7maZKf7giQ7x537AxTpykk,178
|
394
|
+
frogml_core/model/tools/adapters/input_adapters/image_input.py,sha256=Kh8RHMxqHOw9RefM9c7Jqqi248znQ8uMRqapo5kOzYc,1462
|
395
|
+
frogml_core/model/tools/adapters/input_adapters/json_input.py,sha256=kF3n6zFOjRtaU34PZuDoM9cIHKUe-N8Xx5v3GTW__OA,621
|
396
|
+
frogml_core/model/tools/adapters/input_adapters/string_input.py,sha256=K2SIJy92C-1eX1ReT8iqeFAU8UQWF2d88Zv79jsMrac,151
|
397
|
+
frogml_core/model/tools/adapters/input_adapters/tf_tensor_input.py,sha256=vP0DWrCzn2dh48cN16872QZzyTfWSRKPs5FAUxjZgHk,1415
|
398
|
+
frogml_core/model/tools/adapters/output.py,sha256=xkYikB2iTcm9oZ8l9pJ3W-vLlORRYy7wPsigkdOB4VQ,2741
|
399
|
+
frogml_core/model/tools/adapters/output_adapters/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
400
|
+
frogml_core/model/tools/adapters/output_adapters/base_output.py,sha256=VXiwnA1499RQSfdFbEU769lRhuOqWTBPfXglKaymhRc,343
|
401
|
+
frogml_core/model/tools/adapters/output_adapters/dataframe_output.py,sha256=f1stPSAEJoceOO4rblmaid3cbN2PmzL-JV408hFQRLY,809
|
402
|
+
frogml_core/model/tools/adapters/output_adapters/default_output.py,sha256=Pt99hiJipHWUuhUXmCqO3C0dm_pVTl5iR5khqMLkQ2Q,1738
|
403
|
+
frogml_core/model/tools/adapters/output_adapters/json_output.py,sha256=06rzcHXJXdS7BWL-hKZRidqMSv3010DPNLpj85K8Cg4,588
|
404
|
+
frogml_core/model/tools/adapters/output_adapters/tf_tensor_output.py,sha256=73_md9k424_IhSKlDGnSBta0VreY16ET9hCmnygSHLg,1094
|
405
|
+
frogml_core/model/tools/run_model_locally.py,sha256=3L99uWOw7GYmxEfb12aPyGxCW4YWPP_xOMapW9zyatc,2303
|
406
|
+
frogml_core/model/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
407
|
+
frogml_core/model/utils/extract_wrapped_function.py,sha256=uIle1zL8vbmeS3PGAuaNFLIUQAsvpuzk3LlH-Teba94,320
|
408
|
+
frogml_core/model/utils/feature_utils.py,sha256=ObIU4jLKOMEa3DWEyrXm1m3wC2wseAVwr-zxlSiojYk,2525
|
409
|
+
frogml_core/model_loggers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
410
|
+
frogml_core/model_loggers/artifact_logger.py,sha256=xD3XVN8_qHP40q1ZbZS28vgEQUMljwAQINTonzXN-VU,2975
|
411
|
+
frogml_core/model_loggers/data_logger.py,sha256=DhFA43cbJJJc7J4xGx1lUF0MhC8do7TN8RxcOdzTFgk,5520
|
412
|
+
frogml_core/model_loggers/model_logger.py,sha256=xDUIwRzeFAorzzR47ovyag5ohwuYZWp9fRWpLpMzcg4,863
|
413
|
+
frogml_core/testing/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
414
|
+
frogml_core/testing/fixtures.py,sha256=tjWIvdZ2nIfNPs6VtUeGx5coJepQVMUWemKGtqUYPzM,318
|
415
|
+
frogml_core/tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
416
|
+
frogml_core/tools/logger/__init__.py,sha256=3FfLlYKajB15QA7d2AeDUTfv_UPGz7s2hucPRe_GXdA,115
|
417
|
+
frogml_core/tools/logger/logger.py,sha256=m38m6niR7QJgcd90t7_5N6ZTKnO-cP2cRmshcbLRa5k,9677
|
418
|
+
frogml_core/tools/logger/logging.yml,sha256=UWC2i3NVKT3j5S8_SapzqClDzXLIEAurzNIXa2tS4UA,1941
|
419
|
+
frogml_core/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
420
|
+
frogml_core/utils/datetime_utils.py,sha256=3zK7PUrerMlwB7U6WeuYwMAclVMfPqBNZihNRyIVMs4,581
|
421
|
+
frogml_core/utils/dict_utils.py,sha256=YsOSQeGpmrsm3CMnx2ZbqvzEcybk3m-0TCMXbBdBXaY,263
|
422
|
+
frogml_core/vector_store/__init__.py,sha256=9gR2B5A1MXb2ks5VUzqrPASGpVTDuJs4uq7N7FNWOY4,120
|
423
|
+
frogml_core/vector_store/client.py,sha256=mmchLHjR5aOZOLIz1eibmsoXSMHvcHjCtaWB24QZoAY,6067
|
424
|
+
frogml_core/vector_store/collection.py,sha256=KKeEww8iogmHdfEeqgTHqIV9PizeiUl1coWwHJY8Glc,17150
|
425
|
+
frogml_core/vector_store/filters.py,sha256=iMPXfgXRhPtNt6QFj7Ti07Yhl-ylR5zo5jfGD-bFsnY,8812
|
426
|
+
frogml_core/vector_store/inference_client.py,sha256=IsB9ZUk4iKI3dAV6GOUN6sX33b1x3j_pCYijPhVIS1E,3786
|
427
|
+
frogml_core/vector_store/rest_helpers.py,sha256=RV7yxBqXs-lcGZmFmht5yRpcAAPFXRVFM9w2Uh6lnVI,2557
|
428
|
+
frogml_core/vector_store/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
429
|
+
frogml_core/vector_store/utils/filter_utils.py,sha256=n80IlmS7lGelCNEpZ8o3rAHzrZpHc-3EykEd8tZoeAE,854
|
430
|
+
frogml_core/vector_store/utils/upsert_utils.py,sha256=vqnyAJOl46WqpZMUiOa4I8Zf2CDIXQxR7wM4Z8rgooc,7517
|
431
|
+
frogml_proto/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
432
|
+
frogml_proto/jfml/model_version/v1/model_repository_spec_pb2.py,sha256=llPIiXM7XrcYZMOb68gJNnzwMiE9UQDSalcAW8ztNlU,1656
|
433
|
+
frogml_proto/jfml/model_version/v1/model_repository_spec_pb2.pyi,sha256=UXjFPw49S9jVVx0WXOdXv8aQMj74RGpBii6Kw1vrlls,1470
|
434
|
+
frogml_proto/jfml/model_version/v1/model_repository_spec_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
435
|
+
frogml_proto/jfml/model_version/v1/model_version_framework_pb2.py,sha256=WRhAv0s3hzW9PMoYOE5ZjT-EbStB831aMgP4cvbDPlo,2172
|
436
|
+
frogml_proto/jfml/model_version/v1/model_version_framework_pb2.pyi,sha256=EfF5a33YUtmP7tozDHmFGUFLNCk2Uu8yurvY-U2TBdc,1329
|
437
|
+
frogml_proto/jfml/model_version/v1/model_version_framework_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
438
|
+
frogml_proto/jfml/model_version/v1/model_version_manager_service_pb2.py,sha256=fPag8F2MfHRC4VSz9jpHybldNegOlYJFRDek1cRv0A8,11128
|
439
|
+
frogml_proto/jfml/model_version/v1/model_version_manager_service_pb2.pyi,sha256=Qw0iqfYADeSmAzZTTlwO04inSKtwwF3gDYRG-0kGLg4,9477
|
440
|
+
frogml_proto/jfml/model_version/v1/model_version_manager_service_pb2_grpc.py,sha256=VKFmhXUTpz1tnnQIRaozTEEaChquv7hG0LwngkQAAs4,13302
|
441
|
+
frogml_proto/jfml/model_version/v1/model_version_pb2.py,sha256=87CsbasbiwvPWGI1b6AfGrje_wzDCZFD8Hi7meguDjU,5797
|
442
|
+
frogml_proto/jfml/model_version/v1/model_version_pb2.pyi,sha256=NqHepmIm1HiKBYn77JDFOoBAEVwCbyFsj0Wiurhsxkc,5664
|
443
|
+
frogml_proto/jfml/model_version/v1/model_version_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
444
|
+
frogml_proto/qwak/administration/account/v1/account_pb2.py,sha256=eiD7FPyN-7p5OplBBPYYavyXYVAEcu2tFp5sgZ2-fgs,8082
|
445
|
+
frogml_proto/qwak/administration/account/v1/account_pb2.pyi,sha256=-pGJBR4NbmZDPkznUbb3sfGsTu4W6hfg72pE0jtvmpg,10934
|
446
|
+
frogml_proto/qwak/administration/account/v1/account_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
447
|
+
frogml_proto/qwak/administration/account/v1/account_service_pb2.py,sha256=d4iRyH2hJ0BqQglE_XVioS2XLx6pOY_epJJZOB94iy4,16745
|
448
|
+
frogml_proto/qwak/administration/account/v1/account_service_pb2.pyi,sha256=uNTYTnjFGa1i_XZYiipNFj8aCy5RAKmNPuh1qxGmkTk,15669
|
449
|
+
frogml_proto/qwak/administration/account/v1/account_service_pb2_grpc.py,sha256=YNK_XNZQW078YXqqKP7nbvjRZHn6W6WgW9v1ZB6D6RU,18748
|
450
|
+
frogml_proto/qwak/administration/account/v1/jfrog_tenant_details_pb2.py,sha256=vpHKTyo0EqiORf2lphRh9bXYyuIlDUYtbyXpFW58v04,4923
|
451
|
+
frogml_proto/qwak/administration/account/v1/jfrog_tenant_details_pb2.pyi,sha256=Qax2LVh1VKSRJJrfIQ-LOoNQk7_1E8o8rjjvxWP2Vno,4367
|
452
|
+
frogml_proto/qwak/administration/account/v1/jfrog_tenant_details_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
453
|
+
frogml_proto/qwak/administration/account/v1/personalization_pb2.py,sha256=mdnzpaf_gZTONW4viUlajbK0Z-IMSr8WykRba_qxnEM,2403
|
454
|
+
frogml_proto/qwak/administration/account/v1/personalization_pb2.pyi,sha256=sfLQNbqTtVl62YyeUdRDL6_yeCWo1k6JMAWYCiWp2KQ,1475
|
455
|
+
frogml_proto/qwak/administration/account/v1/personalization_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
456
|
+
frogml_proto/qwak/administration/account/v1/preferences_pb2.py,sha256=fk-yxHGO1P-HHC5490MfViXFZY_06sehLr-CjFto-bk,2120
|
457
|
+
frogml_proto/qwak/administration/account/v1/preferences_pb2.pyi,sha256=5t0WHFHIsHuYGrGuRtCqHMDnfyj-MdvRzPNBISusgP0,1246
|
458
|
+
frogml_proto/qwak/administration/account/v1/preferences_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
459
|
+
frogml_proto/qwak/administration/account/v1/terms_pb2.py,sha256=NWn1eQm_LV0aNV0X82HFf0zqo9uNsLytRM0HWQMEBlI,4397
|
460
|
+
frogml_proto/qwak/administration/account/v1/terms_pb2.pyi,sha256=yWBoYuE9sOwlfTYHEOet86xSE2v7Mrp336SYcfE6eZs,3671
|
461
|
+
frogml_proto/qwak/administration/account/v1/terms_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
462
|
+
frogml_proto/qwak/administration/authenticated_user/v1/authenticated_user_service_pb2.py,sha256=rsULvEggA-eMG-o264SrFfYSMjWH_R_4ebAadJiKzfs,6766
|
463
|
+
frogml_proto/qwak/administration/authenticated_user/v1/authenticated_user_service_pb2.pyi,sha256=ydIcn4Je7lHPwNdHMeM7e4KPHAGr9hGB27BeTPyb5m0,4476
|
464
|
+
frogml_proto/qwak/administration/authenticated_user/v1/authenticated_user_service_pb2_grpc.py,sha256=xkYW0Tdef6yTag2cryP8nsfWOgHJuyI6Jd2tAyYvDpI,7663
|
465
|
+
frogml_proto/qwak/administration/authenticated_user/v1/credentials_pb2.py,sha256=EcqAs1TRfmo4wg-Gd0CAzDCOzeqgI8J1zkogH6OM4T4,2755
|
466
|
+
frogml_proto/qwak/administration/authenticated_user/v1/credentials_pb2.pyi,sha256=iN2jhNzdxNmCRqlNpqZ4ybNmw3pG9hoixfgDvu48bg8,2650
|
467
|
+
frogml_proto/qwak/administration/authenticated_user/v1/credentials_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
468
|
+
frogml_proto/qwak/administration/authenticated_user/v1/details_pb2.py,sha256=Z1uqfnR7zXHhPaOojmX7FmXK_1nuv7bO9aUA01AZEng,4914
|
469
|
+
frogml_proto/qwak/administration/authenticated_user/v1/details_pb2.pyi,sha256=zdQqQF0o1uv-II_bCMMsm3h-Em_RN1HKmrHcjjszkeE,5995
|
470
|
+
frogml_proto/qwak/administration/authenticated_user/v1/details_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
471
|
+
frogml_proto/qwak/administration/v0/authentication/authentication_service_pb2.py,sha256=TB_RvTOQRAlnD6OML2tH51Ms4NrXTnfUAhbyEdpzfuA,4648
|
472
|
+
frogml_proto/qwak/administration/v0/authentication/authentication_service_pb2.pyi,sha256=jAAqlBaE5GmqYVzmYzJ37rS06-4gma5X9x1ZB8GvAqU,3664
|
473
|
+
frogml_proto/qwak/administration/v0/authentication/authentication_service_pb2_grpc.py,sha256=QX3NOsb1EwPrw-cVl-qoTbbrYrPO0mgXxT1kAi3n7xk,3168
|
474
|
+
frogml_proto/qwak/administration/v0/environments/configuration_pb2.py,sha256=_wTRtvLQ89dl0LyOUF8NLn8LGF4vx_z068hjtGjuL78,7373
|
475
|
+
frogml_proto/qwak/administration/v0/environments/configuration_pb2.pyi,sha256=ur-0gR0XgQfTXBDeGpZAlul55bhb4OZ9hLz7cGnD2fQ,11651
|
476
|
+
frogml_proto/qwak/administration/v0/environments/configuration_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
477
|
+
frogml_proto/qwak/administration/v0/environments/environment_pb2.py,sha256=9899wmBORvskR1A0nYC2Snp5btA8MYxSZGJsvsq1OlY,5132
|
478
|
+
frogml_proto/qwak/administration/v0/environments/environment_pb2.pyi,sha256=hgJMdJ0Z2lcXXRO6Ov9Vr2CCjAvn0xBNTKjpQmgOEEg,7565
|
479
|
+
frogml_proto/qwak/administration/v0/environments/environment_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
480
|
+
frogml_proto/qwak/administration/v0/environments/environment_service_pb2.py,sha256=0QtzNpknYTFvzoFjx1I2AcsaCrR73poLCr2XHL_pfH4,16017
|
481
|
+
frogml_proto/qwak/administration/v0/environments/environment_service_pb2.pyi,sha256=W7ndMyiPkDz1_uUqaFvr8qeA0QzXrDI5FYzjfRzBhfM,12660
|
482
|
+
frogml_proto/qwak/administration/v0/environments/environment_service_pb2_grpc.py,sha256=6nVOSJrgZvSZB7GJNAfidgEEQ-VCV2C6Pvzq5H4j0DQ,16459
|
483
|
+
frogml_proto/qwak/administration/v0/environments/personalization_pb2.py,sha256=tP7tLxIbgfAZMPwNUeilAIbGLOnfz-bNhZsXSw4BCmU,2477
|
484
|
+
frogml_proto/qwak/administration/v0/environments/personalization_pb2.pyi,sha256=I87_z8gRP_7eNWdJAlnldweeRExAm946u5e-Al8uY-8,1347
|
485
|
+
frogml_proto/qwak/administration/v0/environments/personalization_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
486
|
+
frogml_proto/qwak/administration/v0/users/user_pb2.py,sha256=rOHpbzy58j_TteHPmgjMMllV4IT5zxdpofPnMGo8Rho,6554
|
487
|
+
frogml_proto/qwak/administration/v0/users/user_pb2.pyi,sha256=GFbJz424r1aTF1kC50ZDIvYTfgxO02C7OHu2SZyL-nc,10595
|
488
|
+
frogml_proto/qwak/administration/v0/users/user_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
489
|
+
frogml_proto/qwak/admiral/secret/v0/secret_pb2.py,sha256=MqrBKrXnAohqL6gxM46Ud9GHlM7FQAZ_niDM0sBg7iQ,9157
|
490
|
+
frogml_proto/qwak/admiral/secret/v0/secret_pb2.pyi,sha256=fXUy0VYrTsIPYasdAr1t_sjmUi0czvpak71cMT4qO3U,9392
|
491
|
+
frogml_proto/qwak/admiral/secret/v0/secret_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
492
|
+
frogml_proto/qwak/admiral/secret/v0/secret_service_pb2.py,sha256=Q5XShGR5AUXQvIohP5GITS8AHHMUlQlguUPvB66Rzhc,6032
|
493
|
+
frogml_proto/qwak/admiral/secret/v0/secret_service_pb2.pyi,sha256=OB2D3ElfxZF8QAxPbU1-f1WAOoKXczAxW7HHLSetm8c,3418
|
494
|
+
frogml_proto/qwak/admiral/secret/v0/secret_service_pb2_grpc.py,sha256=lqk1lWs_6ob0hdeg32GTJesFgMk_YqA8PY6lXHEayBE,6872
|
495
|
+
frogml_proto/qwak/admiral/secret/v0/system_secret_service_pb2.py,sha256=Zny9qcVMeQTYp3na3GOBXl5FGN-13Pt7KYnNGic9_4c,5894
|
496
|
+
frogml_proto/qwak/admiral/secret/v0/system_secret_service_pb2.pyi,sha256=Jb0_trD1-sAFrIC6x0L5MQlrGDni24qVTO_EwvuPv0w,3904
|
497
|
+
frogml_proto/qwak/admiral/secret/v0/system_secret_service_pb2_grpc.py,sha256=Y41usdRqbu3evJfk_IqixBDg_dYSZ9EQJyK4JoeTK8I,6917
|
498
|
+
frogml_proto/qwak/admiral/user_application_instance/v0/user_application_instance_pb2.py,sha256=hcxOv4NGaxa62s5v211H_Kp9depjIem1ihS5uKnE3cE,15397
|
499
|
+
frogml_proto/qwak/admiral/user_application_instance/v0/user_application_instance_pb2.pyi,sha256=bsDjfGEkZr4WToRiT9kObXY6YHaz_k4xjKSh9rOU4bk,20850
|
500
|
+
frogml_proto/qwak/admiral/user_application_instance/v0/user_application_instance_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
501
|
+
frogml_proto/qwak/admiral/user_application_instance/v0/user_application_instance_service_pb2.py,sha256=7HimShS3jjrZ8X1qGDTRaCvok0W5tOdJtvxyr8E8Df0,9284
|
502
|
+
frogml_proto/qwak/admiral/user_application_instance/v0/user_application_instance_service_pb2.pyi,sha256=qopHVA5rMGQO7-3Y5Y9FY6tT6I7IvpW-D8n0rsNw4IU,5714
|
503
|
+
frogml_proto/qwak/admiral/user_application_instance/v0/user_application_instance_service_pb2_grpc.py,sha256=wCH1Wk0wCw3vnrDqoVvD5pL1r_Fcpxr8KWX-r0nTPtk,10743
|
504
|
+
frogml_proto/qwak/analytics/analytics_pb2.py,sha256=GsznERvvmtU6qja12hyvcehooCAKudtU6Hf1c7Ruy9Q,7629
|
505
|
+
frogml_proto/qwak/analytics/analytics_pb2.pyi,sha256=VzLL7uRLimx6pv4s31EvA-mcRv3oAd2b1m2k-J5GfWU,11995
|
506
|
+
frogml_proto/qwak/analytics/analytics_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
507
|
+
frogml_proto/qwak/analytics/analytics_service_pb2.py,sha256=2E2hhqdXawkvijMrXWGVYwj6fOd25BDO99a0u0BYJqU,14907
|
508
|
+
frogml_proto/qwak/analytics/analytics_service_pb2.pyi,sha256=LU_Jub19dcZkp7F0Z12s0jR_6R2DT1p-iqBRm8ifZL4,11955
|
509
|
+
frogml_proto/qwak/analytics/analytics_service_pb2_grpc.py,sha256=wrSo8GF28-hsQaVrnb68wBbC3yEfG-JsNQ2ytR4QyhY,19156
|
510
|
+
frogml_proto/qwak/audience/v1/audience_api_pb2.py,sha256=kSyqWJI_fBZGmPu9yABA_N-8cSkl3kcBgEb7Dc9E2lo,9035
|
511
|
+
frogml_proto/qwak/audience/v1/audience_api_pb2.pyi,sha256=vX3v2-9zZNG_vya_ELGqyyxWHb2qUiY4Ltem54AbgbQ,5956
|
512
|
+
frogml_proto/qwak/audience/v1/audience_api_pb2_grpc.py,sha256=d5JKUBSuB6tN-QfNMYnglvsiRAVOsvu2-j7qOpIbaN8,11487
|
513
|
+
frogml_proto/qwak/audience/v1/audience_pb2.py,sha256=o2F8tyR_B8zCyGNJreT-q7EOYzAEnS6vC6uRtyNE7Z4,8877
|
514
|
+
frogml_proto/qwak/audience/v1/audience_pb2.pyi,sha256=Ct_u4NbUj6aWQKsqjvf_D7Eu-7PSbQoHjteKLSe2Ro4,13789
|
515
|
+
frogml_proto/qwak/audience/v1/audience_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
516
|
+
frogml_proto/qwak/auto_scaling/v1/auto_scaling_pb2.py,sha256=zCEbsypUiKjLNMNxPWwPBwxCET-l0Ad0ZoVA1ih8Txk,5790
|
517
|
+
frogml_proto/qwak/auto_scaling/v1/auto_scaling_pb2.pyi,sha256=F5rXRMgmtI0-jD_Ds8Nt2TGg_YBZLIWueinwpQ_68JY,8264
|
518
|
+
frogml_proto/qwak/auto_scaling/v1/auto_scaling_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
519
|
+
frogml_proto/qwak/auto_scaling/v1/auto_scaling_service_pb2.py,sha256=2N2lg5gS12HC8UJrB2CY-Ik_UTznZt3Hjo8Gpm9tGeI,2951
|
520
|
+
frogml_proto/qwak/auto_scaling/v1/auto_scaling_service_pb2.pyi,sha256=GjV2EmRpw8uv3mv0BnMQoqzrFFwntz2lqDmnNETsSrc,2053
|
521
|
+
frogml_proto/qwak/auto_scaling/v1/auto_scaling_service_pb2_grpc.py,sha256=5N0NW3bsx9jFvr0KYcSkfiK0-FW2VvNQV-4X364qKX0,2992
|
522
|
+
frogml_proto/qwak/automation/v1/action_pb2.py,sha256=TH5pBe8J_pfeK5qb17xKqEUmhYUgeBPbj6Er9bOT8uo,15568
|
523
|
+
frogml_proto/qwak/automation/v1/action_pb2.pyi,sha256=rcearUp27mKV1dcbKb20JXzEIPtFIbvpT4DKzCIgSZY,24229
|
524
|
+
frogml_proto/qwak/automation/v1/action_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
525
|
+
frogml_proto/qwak/automation/v1/auto_scaling_pb2.py,sha256=YiDQXdaMpMMapCD40zY8OiY6xXxp1ey-QHaX5_W-eBg,5788
|
526
|
+
frogml_proto/qwak/automation/v1/auto_scaling_pb2.pyi,sha256=1FEyVniyvThNB310NXXW0U5FGUNqnVDn9k8L9ilmbY0,8308
|
527
|
+
frogml_proto/qwak/automation/v1/auto_scaling_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
528
|
+
frogml_proto/qwak/automation/v1/automation_execution_pb2.py,sha256=wfmOwWp1sYaVKlxuLfJUi1jHh0C1waAGEWxXWZc6FOM,3967
|
529
|
+
frogml_proto/qwak/automation/v1/automation_execution_pb2.pyi,sha256=Ed-N6PChJkWypLSpFCwxdhn-lGkM0KHSSQY0-eEZWyU,5309
|
530
|
+
frogml_proto/qwak/automation/v1/automation_execution_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
531
|
+
frogml_proto/qwak/automation/v1/automation_management_service_pb2.py,sha256=m5Yku2SUszB3-v3c3WCnZ0TICysK52OzAV5rg6Ta4qw,21191
|
532
|
+
frogml_proto/qwak/automation/v1/automation_management_service_pb2.pyi,sha256=Zt3T45t9CXdTZyNkQYWY9k2Axn4HGEMc--VDvzByX10,15257
|
533
|
+
frogml_proto/qwak/automation/v1/automation_management_service_pb2_grpc.py,sha256=8vCWTmXc8c57mT6v-l9aNfvnK-OuEvgEygvZfwGDqwE,25476
|
534
|
+
frogml_proto/qwak/automation/v1/automation_pb2.py,sha256=q1DV4b6J-QaGJhoXKLHV0ESsSRjt9h6rfejdCXt65CM,3889
|
535
|
+
frogml_proto/qwak/automation/v1/automation_pb2.pyi,sha256=tsuyRz0sbow4ikdugDB_RGZy-oqXCm8spg-CUvo4FeY,5434
|
536
|
+
frogml_proto/qwak/automation/v1/automation_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
537
|
+
frogml_proto/qwak/automation/v1/common_pb2.py,sha256=PeJb40TXeIwjENReF-MNsZ8e8QiUxA_DwiGVTwn7QmI,2569
|
538
|
+
frogml_proto/qwak/automation/v1/common_pb2.pyi,sha256=v1FL9ghFd_oy1WuQYnczXOEdl2Firmh52ofRO8GwVx4,2785
|
539
|
+
frogml_proto/qwak/automation/v1/common_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
540
|
+
frogml_proto/qwak/automation/v1/notification_pb2.py,sha256=WiudMRkuekw71JSJ6uvPWi166otB1pn39oEWH1Y_8Wc,5222
|
541
|
+
frogml_proto/qwak/automation/v1/notification_pb2.pyi,sha256=TBVbSk-865T7PZrEWKY0Cd-zOJKseNgqEk5gcBoT9tI,5492
|
542
|
+
frogml_proto/qwak/automation/v1/notification_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
543
|
+
frogml_proto/qwak/automation/v1/trigger_pb2.py,sha256=qtewjL2fadvEPoFBT41Z-nAIBf-zpiQYqNVAIboUSHI,4224
|
544
|
+
frogml_proto/qwak/automation/v1/trigger_pb2.pyi,sha256=drbUbj21hQIonJjHNHoHk2MngsfHv70o8Ua6-A9D1As,4811
|
545
|
+
frogml_proto/qwak/automation/v1/trigger_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
546
|
+
frogml_proto/qwak/batch_job/v1/batch_job_events_pb2.py,sha256=nHswLnRNb7Zdvp-KrZcPBUn4RXA9bMatO8yy8bj2I-E,11232
|
547
|
+
frogml_proto/qwak/batch_job/v1/batch_job_events_pb2.pyi,sha256=bgHfABHJL_BWgReOcbILezduzzdmklBfArRB1nfcSL8,15649
|
548
|
+
frogml_proto/qwak/batch_job/v1/batch_job_events_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
549
|
+
frogml_proto/qwak/batch_job/v1/batch_job_resources_pb2.py,sha256=AM3ojrYJSr9Up5RIQMFT8efTNmOz08stZChynEom7uE,2096
|
550
|
+
frogml_proto/qwak/batch_job/v1/batch_job_resources_pb2.pyi,sha256=e4WFKs7LbWS2M5XLyLrMQROhfSIpmh9Nj-qcSbEv9E0,1977
|
551
|
+
frogml_proto/qwak/batch_job/v1/batch_job_resources_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
552
|
+
frogml_proto/qwak/batch_job/v1/batch_job_service_pb2.py,sha256=DYilcWR6aZfnm76pr4z1LHzoZXVbZ_ORXyWxCQowoAI,46246
|
553
|
+
frogml_proto/qwak/batch_job/v1/batch_job_service_pb2.pyi,sha256=_g1QUzel3R0Rbts91X9lv-7UQYXucVh7q-6IeycsJZk,60447
|
554
|
+
frogml_proto/qwak/batch_job/v1/batch_job_service_pb2_grpc.py,sha256=MnHXlOLt9ZoFC_YzFuCuu2U2cE7hx3Vd_BFaoYOPxJU,32009
|
555
|
+
frogml_proto/qwak/build/v1/build_api_pb2.py,sha256=gNN2ii_RyLzauXk9givHM0up42xocXLR71yUuuWRXSc,32064
|
556
|
+
frogml_proto/qwak/build/v1/build_api_pb2.pyi,sha256=ce7qfBSmryXO90S8_xhg4raFj2lcCJAQgeQ8KJB8QJk,27102
|
557
|
+
frogml_proto/qwak/build/v1/build_api_pb2_grpc.py,sha256=ik4G_RFA2aQToqGRuzNIvDCNZSXBFdLDEoqG_KKvxnQ,31473
|
558
|
+
frogml_proto/qwak/build/v1/build_pb2.py,sha256=mXyeC4vzKAraaptQchKPyvwR_uxvCIb-Fnb58rPRiBg,38222
|
559
|
+
frogml_proto/qwak/build/v1/build_pb2.pyi,sha256=l_KYr6FxFAaP3xk8OSzZQtlZkDqNa9v19fLxjob9018,57960
|
560
|
+
frogml_proto/qwak/build/v1/build_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
561
|
+
frogml_proto/qwak/build_settings/build_settings_api_pb2.py,sha256=sM2KPyRk-ojwMx7XO1yw5kFeJ7TDuHnyPR6LZeGPQd8,5771
|
562
|
+
frogml_proto/qwak/build_settings/build_settings_api_pb2.pyi,sha256=TzUhfy7cSgR7ssnKPskfZc7E4vt_Ooe5k2IRBvxHsAw,4078
|
563
|
+
frogml_proto/qwak/build_settings/build_settings_api_pb2_grpc.py,sha256=t62VlkIu6blH0hksweaVw-NoWijd8kNaMuEAj0zSa_g,6784
|
564
|
+
frogml_proto/qwak/build_settings/build_settings_pb2.py,sha256=sjTRd3bI7b9lwMZgmD0-l5RSkJfOp-LOJMBVUr_ps5Y,6029
|
565
|
+
frogml_proto/qwak/build_settings/build_settings_pb2.pyi,sha256=MMYamilVLTgHn-WmsIqRCI8K9QJSehtxAclPeP75CWA,7049
|
566
|
+
frogml_proto/qwak/build_settings/build_settings_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
567
|
+
frogml_proto/qwak/builds/build_pb2.py,sha256=ftaNyfIuweuBYR9ns1fPrHIqIRoT-Z_Pj8IneqcVZTY,15143
|
568
|
+
frogml_proto/qwak/builds/build_pb2.pyi,sha256=p13IwNcgtm3roLFtxsZKGs_SI6qiyyu0rsEODrk6Khw,25148
|
569
|
+
frogml_proto/qwak/builds/build_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
570
|
+
frogml_proto/qwak/builds/build_url_pb2.py,sha256=anKHqrZRH82uplaN_LvxRm3wIIaf9DDjh9AHQ1J1u70,5565
|
571
|
+
frogml_proto/qwak/builds/build_url_pb2.pyi,sha256=IC0L3D7zg5vf_4U9Ubc-V4lLqviPknUaBKCCrVK6w9k,7299
|
572
|
+
frogml_proto/qwak/builds/build_url_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
573
|
+
frogml_proto/qwak/builds/builds_orchestrator_service_pb2.py,sha256=1b9kaFQ3b5KXVZe6fnuxN9l3OdRqm3EZBrtSxWm9X-k,15687
|
574
|
+
frogml_proto/qwak/builds/builds_orchestrator_service_pb2.pyi,sha256=3GGNRcoviu3BppOv8wWOkfYVvC96HYzOEu3Kqzhzj-A,12923
|
575
|
+
frogml_proto/qwak/builds/builds_orchestrator_service_pb2_grpc.py,sha256=QYmkAvhsxpH_pYcF2G0u0qhJiDEQFOjHDTTEJI8R52o,16926
|
576
|
+
frogml_proto/qwak/builds/builds_pb2.py,sha256=ILPm-E3Ydq0BHOd0fAF9P9TVU1EtfdSS5LoGko2CtAA,38507
|
577
|
+
frogml_proto/qwak/builds/builds_pb2.pyi,sha256=tZPIpz0OrcLmHjPlCg2uGSFquCTp3djJjojsvhP8Xow,53726
|
578
|
+
frogml_proto/qwak/builds/builds_pb2_grpc.py,sha256=iL3tgBh9XhBudqhLK1t-pXRp8zNdFbhNOKsViixNHSQ,11573
|
579
|
+
frogml_proto/qwak/builds/internal_builds_orchestrator_service_pb2.py,sha256=e_3V-F_zyMHNNO3YNLo6EfsioMhhQIrWvzJhk3zTKf4,3522
|
580
|
+
frogml_proto/qwak/builds/internal_builds_orchestrator_service_pb2.pyi,sha256=w4V-bVh7P80HlTSUHnsp6ZyroDh5SQChMXmopPv4Jg8,2365
|
581
|
+
frogml_proto/qwak/builds/internal_builds_orchestrator_service_pb2_grpc.py,sha256=c8vr3qdquYbMSL4VJQ1t0YJuPaUnvqwfSu1NXh0KWUQ,3102
|
582
|
+
frogml_proto/qwak/data_versioning/data_versioning_pb2.py,sha256=S2RT9uGtoYCboN8x8j5p-cEA0x5MeiYcb2OqOqKc5kI,2283
|
583
|
+
frogml_proto/qwak/data_versioning/data_versioning_pb2.pyi,sha256=xd2FCe7PizJv6yL_7Vh5cKkjY34-qibPGgFBuZ8gs2k,2697
|
584
|
+
frogml_proto/qwak/data_versioning/data_versioning_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
585
|
+
frogml_proto/qwak/data_versioning/data_versioning_service_pb2.py,sha256=Y9MyodKmU-aftDaJCghWfCgWmyPdstKPCUKbEcXHat4,4472
|
586
|
+
frogml_proto/qwak/data_versioning/data_versioning_service_pb2.pyi,sha256=E3Nz0B6RD5s9QuRu7khukmTdTk4FAaPw8I-3QBvjJZk,3178
|
587
|
+
frogml_proto/qwak/data_versioning/data_versioning_service_pb2_grpc.py,sha256=ap_9GMwzbPWLKYcpBf94-x2_P51ZqGwtACb-fVIvIkU,5029
|
588
|
+
frogml_proto/qwak/deployment/alert_pb2.py,sha256=QfxoFv1DK7RVnOEgqP2-CiCeVf3_huJ01TlWrFTPMog,7781
|
589
|
+
frogml_proto/qwak/deployment/alert_pb2.pyi,sha256=koLUUpD3H7WkniA7aUdoIm9oyR1WhMLEJIbuHwYmBsQ,11276
|
590
|
+
frogml_proto/qwak/deployment/alert_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
591
|
+
frogml_proto/qwak/deployment/alert_service_pb2.py,sha256=t_I-8MKjBhMOSPskV8JWpKc-J-zMb250TxXP3OGurrY,11885
|
592
|
+
frogml_proto/qwak/deployment/alert_service_pb2.pyi,sha256=8sHxwzLMOv6vKMQw3X1eqLNAnAOCoiUqqqslWMqg-kY,8829
|
593
|
+
frogml_proto/qwak/deployment/alert_service_pb2_grpc.py,sha256=26OcWJMuBMFGQ5MnMsG9TlrrRlpLxWc5IPMzzPlnCTk,12804
|
594
|
+
frogml_proto/qwak/deployment/deployment_messages_pb2.py,sha256=dZ2kQOce4ys6xMtBaqzr4XnV9qKHOqM6h4-C_mtXBCg,2176
|
595
|
+
frogml_proto/qwak/deployment/deployment_messages_pb2.pyi,sha256=wFaOTCsjA5UXlALxu3nOALpx5j5ZsOKT2Wl6Mno7cfA,2750
|
596
|
+
frogml_proto/qwak/deployment/deployment_messages_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
597
|
+
frogml_proto/qwak/deployment/deployment_pb2.py,sha256=V2F0JQZ63TVtUCZwUqhGiGT9uEU3JI4nGRHnlS4kQ2E,51178
|
598
|
+
frogml_proto/qwak/deployment/deployment_pb2.pyi,sha256=UIk8yp7HUqTNCV_qT-s3CX7ZWxe4soykI5smnaiUmY8,77054
|
599
|
+
frogml_proto/qwak/deployment/deployment_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
600
|
+
frogml_proto/qwak/deployment/deployment_service_pb2.py,sha256=nElkI-aRZBXTRbWTn6yZ9-m_sSMG7S_KKSEn2qPH_jg,46324
|
601
|
+
frogml_proto/qwak/deployment/deployment_service_pb2.pyi,sha256=U43wEm09zS8pyjl_bHqym9b778pgodxPl-LrsP8gTrc,40993
|
602
|
+
frogml_proto/qwak/deployment/deployment_service_pb2_grpc.py,sha256=JTfQWEXtDmSa7E_wlCPFGuWe4mWF3BhbU5kphAJmEUk,27757
|
603
|
+
frogml_proto/qwak/ecosystem/v0/credentials_pb2.py,sha256=6ZYXYF7t6vCVBnUDnDjNP5WagHl3BscQzaONc2ErYhg,3641
|
604
|
+
frogml_proto/qwak/ecosystem/v0/credentials_pb2.pyi,sha256=7sxOny-BUipUxrEpBxKVNuJF3-N77Z6Ov1eWI-87Uoo,4098
|
605
|
+
frogml_proto/qwak/ecosystem/v0/credentials_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
606
|
+
frogml_proto/qwak/ecosystem/v0/ecosystem_pb2.py,sha256=fPaU9wz-1gF66UK2IWfRC4MxE1zvj561avO9ItBQg9k,13729
|
607
|
+
frogml_proto/qwak/ecosystem/v0/ecosystem_pb2.pyi,sha256=DrLliBaL1apBE_ywyoY58m6nyY3DtVHqCqTkufKo8KQ,15465
|
608
|
+
frogml_proto/qwak/ecosystem/v0/ecosystem_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
609
|
+
frogml_proto/qwak/ecosystem/v0/ecosystem_runtime_service_pb2.py,sha256=wO68NjLymxfHHbeGw6VeQd6KDKSaJ29iPSPI4C-3MaQ,18891
|
610
|
+
frogml_proto/qwak/ecosystem/v0/ecosystem_runtime_service_pb2.pyi,sha256=qoGgIDToRKMaBf7Kd_yWL9u9_Wf4UvCt0IS-Qorfbs4,19570
|
611
|
+
frogml_proto/qwak/ecosystem/v0/ecosystem_runtime_service_pb2_grpc.py,sha256=gM-I23Wf72vukkIdAlMi8lJGMSOUFL0hqFeif-g7qNc,12834
|
612
|
+
frogml_proto/qwak/execution/v1/backfill_pb2.py,sha256=DJLZwegAlunkjHklW8bgiN1tTyMsPMuzMC13745Oisw,6477
|
613
|
+
frogml_proto/qwak/execution/v1/backfill_pb2.pyi,sha256=rk_RkyDpRSvjfvE1gwsA18eu6O6H4X9NcOH3cZ8pe_k,7984
|
614
|
+
frogml_proto/qwak/execution/v1/backfill_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
615
|
+
frogml_proto/qwak/execution/v1/batch_pb2.py,sha256=jVwHhXn3UeWXbs9mGRgVBscUHlaWcr_cEtQ3yeU28mc,2984
|
616
|
+
frogml_proto/qwak/execution/v1/batch_pb2.pyi,sha256=fAGm7u5WPQjzeEebx8IR7X9BKYjn99zkBdXRQqY7drg,3266
|
617
|
+
frogml_proto/qwak/execution/v1/batch_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
618
|
+
frogml_proto/qwak/execution/v1/deletion_pb2.py,sha256=0B5MolB4A4CioSra8m8Cv81BLD0rlLbtiIytq0KLqwU,3848
|
619
|
+
frogml_proto/qwak/execution/v1/deletion_pb2.pyi,sha256=p-fc2b9avBMSRusZd088Qf4mP-QFHe1bu2jh0pMcPxk,3019
|
620
|
+
frogml_proto/qwak/execution/v1/deletion_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
621
|
+
frogml_proto/qwak/execution/v1/execution_pb2.py,sha256=MnNK3aHqDu2m3_zeG1le0KigmqqB3F5XjwvuOwZ5HK0,7718
|
622
|
+
frogml_proto/qwak/execution/v1/execution_pb2.pyi,sha256=s9NI8fiD__6UCh_Z9OJH85P7E1m0gpc7LeCiKOGt7dk,12262
|
623
|
+
frogml_proto/qwak/execution/v1/execution_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
624
|
+
frogml_proto/qwak/execution/v1/execution_service_pb2.py,sha256=FvG4KNVGSXicLtuMBonWSB-4kBLx4QQSqmtb4lIToQY,25295
|
625
|
+
frogml_proto/qwak/execution/v1/execution_service_pb2.pyi,sha256=n8nRn7EGN9IbM_SK92nTir9b_VRGblYbyxc8Ie0SfSU,18496
|
626
|
+
frogml_proto/qwak/execution/v1/execution_service_pb2_grpc.py,sha256=KRo1PUqyHwoEcIrdEtfXr8obiWxOAWxIvwl1XwonKkI,28128
|
627
|
+
frogml_proto/qwak/execution/v1/jobs/job_pb2.py,sha256=zEoFcsydSpaHj0ZgeBUYNuk4cW5SL88w1sKzdkjjnNc,7709
|
628
|
+
frogml_proto/qwak/execution/v1/jobs/job_pb2.pyi,sha256=RjjrcuGwjDeWCzeQ2HizAnGCMn7_H3nGwlLFvtQP9iM,14998
|
629
|
+
frogml_proto/qwak/execution/v1/jobs/job_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
630
|
+
frogml_proto/qwak/execution/v1/jobs/job_service_pb2.py,sha256=VQiJ2WBFDaXgKes6vZdvMkK40MMs5N0lFfPvQ5OzNZU,22119
|
631
|
+
frogml_proto/qwak/execution/v1/jobs/job_service_pb2.pyi,sha256=6Ip1itqD3Qsw31adZCjJoCFBQhMLkvYdO4pnxjN2BPs,20640
|
632
|
+
frogml_proto/qwak/execution/v1/jobs/job_service_pb2_grpc.py,sha256=-kV9PmFUZBUrh0nLjStG8R9LI99zY2NRYOCY7jL7mps,23232
|
633
|
+
frogml_proto/qwak/execution/v1/jobs/reports/report_pb2.py,sha256=wmnopZ2YjpWpiNLs5FIUCKfnf2N38g9np1_4mQF5RaA,8497
|
634
|
+
frogml_proto/qwak/execution/v1/jobs/reports/report_pb2.pyi,sha256=ypFgD1wvZhhkqYLBCV3EeVDUHkmGadZztf14BHLXOlI,13610
|
635
|
+
frogml_proto/qwak/execution/v1/jobs/reports/report_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
636
|
+
frogml_proto/qwak/execution/v1/state/execution_state_pb2.py,sha256=uvjZ1tris1OxQnmNJj5PKH43lc0QvlS5y7KAAAfKdwI,2065
|
637
|
+
frogml_proto/qwak/execution/v1/state/execution_state_pb2.pyi,sha256=OPbr0pO5CyZWcahpIdKK86JR_KSY_bsWKpXAjCaML8M,1991
|
638
|
+
frogml_proto/qwak/execution/v1/state/execution_state_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
639
|
+
frogml_proto/qwak/execution/v1/state/execution_state_service_pb2.py,sha256=O7bpwQ3rev8rHiIUnEyL6abcEanjn6lSLgAUGMJR3yE,12237
|
640
|
+
frogml_proto/qwak/execution/v1/state/execution_state_service_pb2.pyi,sha256=p2B2hTKs3wAx8_OAMyA0ljd0Yit-pNm66k8bShDRsnY,8008
|
641
|
+
frogml_proto/qwak/execution/v1/state/execution_state_service_pb2_grpc.py,sha256=VK5e25d_B8UlRdgJbyxjQlcFiuhO7H2QbfgHd4aAZz0,14213
|
642
|
+
frogml_proto/qwak/execution/v1/state/featureset_state_pb2.py,sha256=9RLQGJjLRPT6LouZp7C0IKpOZL3EinBBDxIeTJCam9E,1698
|
643
|
+
frogml_proto/qwak/execution/v1/state/featureset_state_pb2.pyi,sha256=ZbN29TTrzJ2wptWObPe5vooLEomor2z309yeask1lp8,1272
|
644
|
+
frogml_proto/qwak/execution/v1/state/featureset_state_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
645
|
+
frogml_proto/qwak/execution/v1/state/spark_execution_state_pb2.py,sha256=mJBZus7RjrtCIE64YxYZ9EyWhx50H1S8zpVXtxIMnmc,6211
|
646
|
+
frogml_proto/qwak/execution/v1/state/spark_execution_state_pb2.pyi,sha256=RNuqy-wJU625PBzmiUXLtBFoP_zlRDuyVVuCWnMRrSQ,7677
|
647
|
+
frogml_proto/qwak/execution/v1/state/spark_execution_state_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
648
|
+
frogml_proto/qwak/execution/v1/streaming_aggregation_pb2.py,sha256=bOdREcHKDY3kzKyF7GHg86B03rxBuuU2hcQB7ipz4nU,4664
|
649
|
+
frogml_proto/qwak/execution/v1/streaming_aggregation_pb2.pyi,sha256=9fYbAdTDz7q5Ekok9yL4PjNNwtcYy-Ep3BaIny7-DJc,3514
|
650
|
+
frogml_proto/qwak/execution/v1/streaming_aggregation_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
651
|
+
frogml_proto/qwak/execution/v1/streaming_pb2.py,sha256=IkWFsV-8HTF0NAXMZ0Enc3ju9TdnQaIZQJjD660eHSo,3817
|
652
|
+
frogml_proto/qwak/execution/v1/streaming_pb2.pyi,sha256=23b3FBXUvbcNWqLNU-H-GE9a00ZFUOu5vpCu-EhsCUc,2938
|
653
|
+
frogml_proto/qwak/execution/v1/streaming_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
654
|
+
frogml_proto/qwak/feature_store/entities/entity_pb2.py,sha256=pHImhCDSFydPP_rIPzeoxrdvsdInoa0t20jqAHK7O6o,4800
|
655
|
+
frogml_proto/qwak/feature_store/entities/entity_pb2.pyi,sha256=1e5hV4Jtm7Q3GZCcD4tU9ka-cjArwDcf2SfVylOl2LY,6713
|
656
|
+
frogml_proto/qwak/feature_store/entities/entity_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
657
|
+
frogml_proto/qwak/feature_store/entities/entity_service_pb2.py,sha256=os14LUvCtdYolsomjb4LQ9BU6xHxx2snynG_Ym8eFBY,9735
|
658
|
+
frogml_proto/qwak/feature_store/entities/entity_service_pb2.pyi,sha256=btFNWOdU85v6hneKmlIkGlwgL_Rh3ofe21_39FUXNhg,7578
|
659
|
+
frogml_proto/qwak/feature_store/entities/entity_service_pb2_grpc.py,sha256=-LCQUmJBBg_GFYfyTHcIYnCEKeqtPx3znAPKNvumyU8,12257
|
660
|
+
frogml_proto/qwak/feature_store/features/aggregation_pb2.py,sha256=rHov3rotwgcdMTZ1ARuKilQl-7MbbaFxZuzXuzihiDU,11445
|
661
|
+
frogml_proto/qwak/feature_store/features/aggregation_pb2.pyi,sha256=nJOMIyOf9GOt0O_r6adwlL_jNTi6kFoFk8DCrtLZLLY,12882
|
662
|
+
frogml_proto/qwak/feature_store/features/aggregation_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
663
|
+
frogml_proto/qwak/feature_store/features/deployment_pb2.py,sha256=xqh787ooG4CwA_n0-dT4LjgnmYGBTf7T42qqFGGSLaY,13838
|
664
|
+
frogml_proto/qwak/feature_store/features/deployment_pb2.pyi,sha256=Jiz8P_BTj5rU5AnaVrq5LMCOrNKjkT4VzFiJp0Vh7Lo,19227
|
665
|
+
frogml_proto/qwak/feature_store/features/deployment_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
666
|
+
frogml_proto/qwak/feature_store/features/deployment_service_pb2.py,sha256=EJlDIbTU9DlWKvM3WQJytkROZAL83Wg-6loQ2mJ3ISo,3321
|
667
|
+
frogml_proto/qwak/feature_store/features/deployment_service_pb2.pyi,sha256=CTrOiFaop6RnNtf6cfqafOgNSA9wI7sIY5URLfU09hU,1650
|
668
|
+
frogml_proto/qwak/feature_store/features/deployment_service_pb2_grpc.py,sha256=aKQhpUMf0rHTl2KyFQnN2Fm0scWP4XDi8jUeFDCn7JY,3294
|
669
|
+
frogml_proto/qwak/feature_store/features/execution_pb2.py,sha256=C3w0xK2GqLQIfuq_Z_iA0jGMJisuWlxOazl92xA6F4s,5316
|
670
|
+
frogml_proto/qwak/feature_store/features/execution_pb2.pyi,sha256=KBpxzsF6fMkzOKeXVBsbysGOS17OxUrXXmoUsV0QlqY,8604
|
671
|
+
frogml_proto/qwak/feature_store/features/execution_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
672
|
+
frogml_proto/qwak/feature_store/features/feature_set_attribute_pb2.py,sha256=tmj7Z3Rbk2B6Fc_6NgqOMjOBmdK0VRsTDT5iXWPmDB0,1992
|
673
|
+
frogml_proto/qwak/feature_store/features/feature_set_attribute_pb2.pyi,sha256=sEmq12SVwQSyVGz8mic6ENWnEr1sJXF5LpBjw8vJmys,1226
|
674
|
+
frogml_proto/qwak/feature_store/features/feature_set_attribute_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
675
|
+
frogml_proto/qwak/feature_store/features/feature_set_pb2.py,sha256=b7lvLR4IrvnYCB1Iapu2BLezUSpD8dpUC51iDoT9LD4,16149
|
676
|
+
frogml_proto/qwak/feature_store/features/feature_set_pb2.pyi,sha256=-BN6qKizZwgZrIou1b_l7c49dtLitXW3oUOSUoFTk0k,22300
|
677
|
+
frogml_proto/qwak/feature_store/features/feature_set_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
678
|
+
frogml_proto/qwak/feature_store/features/feature_set_service_pb2.py,sha256=VezSIl4GhToDL06DNyxonK7QA2r3xA8a4OEW-NKv3co,37041
|
679
|
+
frogml_proto/qwak/feature_store/features/feature_set_service_pb2.pyi,sha256=YH2VDwMtvqBDzsNcMeC07Oo7O9XVsJQPA-leX38KFWo,26645
|
680
|
+
frogml_proto/qwak/feature_store/features/feature_set_service_pb2_grpc.py,sha256=beQqGIpPYV1R25cY8ZHu2Qbqhdz4B5oaaUPpg7J7tjg,43686
|
681
|
+
frogml_proto/qwak/feature_store/features/feature_set_state_pb2.py,sha256=t2nfZDy4i9dBECPGoy2qhWgUTQr4PMwLWf7xwpsKkbc,12651
|
682
|
+
frogml_proto/qwak/feature_store/features/feature_set_state_pb2.pyi,sha256=8XYM1VvPDpl71qJH5BVjwkRvv4tVYq3EzscAUl81LDQ,14071
|
683
|
+
frogml_proto/qwak/feature_store/features/feature_set_state_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
684
|
+
frogml_proto/qwak/feature_store/features/feature_set_state_service_pb2.py,sha256=GMvhHAT4EyiAzkXuGBdrLIe_9vXOJqHynfP7LcoHnQY,10058
|
685
|
+
frogml_proto/qwak/feature_store/features/feature_set_state_service_pb2.pyi,sha256=B4n0NG9y_johGTypJLSvl8k2_DtNCI8ZsDzGQ2oVkaw,6911
|
686
|
+
frogml_proto/qwak/feature_store/features/feature_set_state_service_pb2_grpc.py,sha256=cZRumlpDjHGjb_6IvqgVM45ns3U7yoW-0KX8_XJn628,11648
|
687
|
+
frogml_proto/qwak/feature_store/features/feature_set_types_pb2.py,sha256=TuilWjwfxIJ-1mGSLs7jQ8nWfQTMca2odr7LMgwVolo,29514
|
688
|
+
frogml_proto/qwak/feature_store/features/feature_set_types_pb2.pyi,sha256=Q8Xc-gAwsKZm0UjAYo58lYSZdsavM6QY1eTsjboF1To,43855
|
689
|
+
frogml_proto/qwak/feature_store/features/feature_set_types_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
690
|
+
frogml_proto/qwak/feature_store/features/monitoring_pb2.py,sha256=IVPbVitd3_qYTKaVbxYAUPk6oN4BtkXvMpBuk2TA5ME,2885
|
691
|
+
frogml_proto/qwak/feature_store/features/monitoring_pb2.pyi,sha256=MV8BvUlbVIyzqTJzzkBP2zodvYlpEtzYw221BkoOYXI,2428
|
692
|
+
frogml_proto/qwak/feature_store/features/monitoring_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
693
|
+
frogml_proto/qwak/feature_store/features/real_time_feature_extractor_pb2.py,sha256=b2d3tUqoiSm8Xd1IJnlYcFYyPwbUEyjrMSXG9YrN8d8,13255
|
694
|
+
frogml_proto/qwak/feature_store/features/real_time_feature_extractor_pb2.pyi,sha256=c4_SgKlAUwNwL5JlTvaesB0smfJPTPwR-840dVvjkPU,18576
|
695
|
+
frogml_proto/qwak/feature_store/features/real_time_feature_extractor_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
696
|
+
frogml_proto/qwak/feature_store/jobs/job_pb2.py,sha256=mRGB69HtNonP40lr0n20wuUVmH_JaDmKIS9V0JKSHiI,4209
|
697
|
+
frogml_proto/qwak/feature_store/jobs/job_pb2.pyi,sha256=UPNSXsaeHQeZmZ8JHeaToPbp_PW_Xj69vi4nHLEKaJ8,7323
|
698
|
+
frogml_proto/qwak/feature_store/jobs/job_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
699
|
+
frogml_proto/qwak/feature_store/jobs/job_service_pb2.py,sha256=FPf7hpTz7N8BDnMp2uLXZoFxFKqr8ObZeeTorZcV7Z8,9909
|
700
|
+
frogml_proto/qwak/feature_store/jobs/job_service_pb2.pyi,sha256=OSzX9gWX5sfVG6cGmpEtfs4HGI-Kx5IW_R2USIz7m98,9094
|
701
|
+
frogml_proto/qwak/feature_store/jobs/job_service_pb2_grpc.py,sha256=jLIi2rdw1G5X7-cpKEkRknuNUc8iQ4lR9-y-0V1ci5M,12091
|
702
|
+
frogml_proto/qwak/feature_store/jobs/v1/job_pb2.py,sha256=mocQTgZBLxT0oK8MnlvLSwxhHggy3jGGwuOZ3QfMIJE,4321
|
703
|
+
frogml_proto/qwak/feature_store/jobs/v1/job_pb2.pyi,sha256=tdXYhzo66OqGakylx-cQkjEvJdgqOgzd4sp73f8j2CE,7410
|
704
|
+
frogml_proto/qwak/feature_store/jobs/v1/job_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
705
|
+
frogml_proto/qwak/feature_store/jobs/v1/job_service_pb2.py,sha256=FtWY33ulu5tbuXvCysgZZwkO9ChFygVCDxPO-VTbmPU,15330
|
706
|
+
frogml_proto/qwak/feature_store/jobs/v1/job_service_pb2.pyi,sha256=xv5A4PDffjBdcWokNO7lxTLfWW5G-YqUXPBsDSVR5nM,14178
|
707
|
+
frogml_proto/qwak/feature_store/jobs/v1/job_service_pb2_grpc.py,sha256=z9JmMsr6730bYRpKcyaHuJGfwddDIPgoYaxVzmlC8iU,18466
|
708
|
+
frogml_proto/qwak/feature_store/platform/platform_details_pb2.py,sha256=FstgtfkXllZH922gcvISajWPFfCKcJDyYZ9HbosZv7Q,2487
|
709
|
+
frogml_proto/qwak/feature_store/platform/platform_details_pb2.pyi,sha256=k1L4pBAFrxRt2PbbF_Im2dyVhFPkrYpmdtOdiyPQhQs,2108
|
710
|
+
frogml_proto/qwak/feature_store/platform/platform_details_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
711
|
+
frogml_proto/qwak/feature_store/reports/report_pb2.py,sha256=wWu_eT1lAsmKDLBCYiqxI76Yy6-uBs19lQ4zNoGC-vw,5171
|
712
|
+
frogml_proto/qwak/feature_store/reports/report_pb2.pyi,sha256=qcHoPr3wNQ5-dyCSwuJ5VdpzlzLKGJysY_K3appd1WM,7436
|
713
|
+
frogml_proto/qwak/feature_store/reports/report_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
714
|
+
frogml_proto/qwak/feature_store/repository/common/platform_pb2.py,sha256=YFseV8wzQzd4kl5Sn1dIyReakumGZBlyD1QjTpTqLro,3042
|
715
|
+
frogml_proto/qwak/feature_store/repository/common/platform_pb2.pyi,sha256=FpO12GJAtApZfCHaASsmjQOx-IEP14xiO-yUMb87kUk,2682
|
716
|
+
frogml_proto/qwak/feature_store/repository/common/platform_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
717
|
+
frogml_proto/qwak/feature_store/serving/management_pb2.py,sha256=GUrb0rvF0kYFjQrU1OfZLlqBNmzaLMPh2vBVTBXeIn0,5125
|
718
|
+
frogml_proto/qwak/feature_store/serving/management_pb2.pyi,sha256=2ExtA-ih-U4M_KYhFaTxzeh5_yK06ahpTZ8htUhINZc,2778
|
719
|
+
frogml_proto/qwak/feature_store/serving/management_pb2_grpc.py,sha256=oQAF5jO94BcBLH6ew2HC6744B8Bk1dlPrybBhpIRe1Y,5437
|
720
|
+
frogml_proto/qwak/feature_store/serving/metadata_pb2.py,sha256=yvldfVafgLKBzRmOh1Rq1a2pa8aHktk2Yrh6DqC260s,5400
|
721
|
+
frogml_proto/qwak/feature_store/serving/metadata_pb2.pyi,sha256=BoKTu9Es3hPs2QLYCZvS1jziRSqpb097OafpLp3bblA,7733
|
722
|
+
frogml_proto/qwak/feature_store/serving/metadata_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
723
|
+
frogml_proto/qwak/feature_store/serving/serving_pb2.py,sha256=Kk6sDY-5emKam47rSbVS5AKMpJ6hSv_7nrzKczXbETo,17487
|
724
|
+
frogml_proto/qwak/feature_store/serving/serving_pb2.pyi,sha256=nKfOCD1PEDosY20JYk7d1BUW7DIlFdy4iCC_ZMa86xA,20355
|
725
|
+
frogml_proto/qwak/feature_store/serving/serving_pb2_grpc.py,sha256=34z2urm_j4E1p4Z1gFCb7fg4HUdjxPFjCOXlT155_YQ,4810
|
726
|
+
frogml_proto/qwak/feature_store/serving/v1/value_pb2.py,sha256=g6TupzbGkZAWIBxGwsGGWcGfb-dU1tbhLXMfUoIj17g,2566
|
727
|
+
frogml_proto/qwak/feature_store/serving/v1/value_pb2.pyi,sha256=ngwdxA2ais10BD2jvDfx9I6--guIFWO363HMN6Sls0Y,4000
|
728
|
+
frogml_proto/qwak/feature_store/serving/v1/value_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
729
|
+
frogml_proto/qwak/feature_store/sinks/sink_pb2.py,sha256=cgfzyQogVpxCjnuTJvCIezEe4E9lV32PRXXZVYYozaQ,4806
|
730
|
+
frogml_proto/qwak/feature_store/sinks/sink_pb2.pyi,sha256=3nNMMk0_EA9IEFe8oPaR82MlzGRxcNO6ATr1h65rrwE,6278
|
731
|
+
frogml_proto/qwak/feature_store/sinks/sink_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
732
|
+
frogml_proto/qwak/feature_store/sources/batch_pb2.py,sha256=uZ-YwufEaDVc_FMGqdw_E7YST66PL-VYUo7HTqpOuss,27368
|
733
|
+
frogml_proto/qwak/feature_store/sources/batch_pb2.pyi,sha256=RLTamMG6ssUj7z97txV6ZwBPjInOC3Isfpk1O4yvyHo,43393
|
734
|
+
frogml_proto/qwak/feature_store/sources/batch_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
735
|
+
frogml_proto/qwak/feature_store/sources/data_source_attribute_pb2.py,sha256=C5uo7sk7gytKzsI5EA1R8It4moSYO6JH-1eLrEQDT60,1978
|
736
|
+
frogml_proto/qwak/feature_store/sources/data_source_attribute_pb2.pyi,sha256=vNTcjSfyTgWQ4QFwhMSM0Hectaqmv5ouYOZSF0Yfki4,1229
|
737
|
+
frogml_proto/qwak/feature_store/sources/data_source_attribute_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
738
|
+
frogml_proto/qwak/feature_store/sources/data_source_pb2.py,sha256=e64U1cH4iazOjVvLCXGJ5yv_Aem7aRFfw0Hk_Bl_FsI,6394
|
739
|
+
frogml_proto/qwak/feature_store/sources/data_source_pb2.pyi,sha256=gavTaSY12lz-S0aerHLSKD7tzDDMObqeUZKf-EAfxFE,8773
|
740
|
+
frogml_proto/qwak/feature_store/sources/data_source_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
741
|
+
frogml_proto/qwak/feature_store/sources/data_source_service_pb2.py,sha256=HYCOWzs7j_toJTSZjE_q0OO3lkxiSz7yB3kk3uP0vok,12323
|
742
|
+
frogml_proto/qwak/feature_store/sources/data_source_service_pb2.pyi,sha256=6sotd6lReW8R4nZlqVzspdNvtSgoSG-Ui8lPKegSEts,9413
|
743
|
+
frogml_proto/qwak/feature_store/sources/data_source_service_pb2_grpc.py,sha256=LEn3H0eBzwC5G3dDRYq-mxmsDW1c-D8i27PSzudZCCM,17072
|
744
|
+
frogml_proto/qwak/feature_store/sources/streaming_pb2.py,sha256=TiTVdKAErRoS1l1MRGUk4nNueTLKGlCEAI3x0900Yug,11062
|
745
|
+
frogml_proto/qwak/feature_store/sources/streaming_pb2.pyi,sha256=Gl9XE_awS5aLpFEW9m-sxwWxvcI3l_6EIq8OjBRzqnU,15942
|
746
|
+
frogml_proto/qwak/feature_store/sources/streaming_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
747
|
+
frogml_proto/qwak/feature_store/v1/common/source_code/source_code_pb2.py,sha256=Yth8wPB6lip3cOz7iYjWqpNPIpO75YVHKuqXWjW2cBw,2979
|
748
|
+
frogml_proto/qwak/feature_store/v1/common/source_code/source_code_pb2.pyi,sha256=jimDXVSe8Ird1aB7DKNRb-Feb6IXhXjC3Ttu_u1KAC4,2402
|
749
|
+
frogml_proto/qwak/feature_store/v1/common/source_code/source_code_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
750
|
+
frogml_proto/qwak/feature_store/v1/internal/data_source/data_source_service_pb2.py,sha256=1bn6yrmQ1Q_ltQrhCJAqMWZijLTcnuekCaPYIAP2I6c,5195
|
751
|
+
frogml_proto/qwak/feature_store/v1/internal/data_source/data_source_service_pb2.pyi,sha256=DSChqVqQkLYLbR6whgnMtyi2r_buDDEzcfG-fKUqHTM,2427
|
752
|
+
frogml_proto/qwak/feature_store/v1/internal/data_source/data_source_service_pb2_grpc.py,sha256=vDItq1YEaxnErMyswclxAKrEJ_MssqDqU6Ncj-bW_QU,5909
|
753
|
+
frogml_proto/qwak/feature_store/v1/internal/featureset/featureset_token_service_pb2.py,sha256=y7VI72SZGsKIjVzV-xbrVlhovvU82t5RhWTUd85RtLQ,3181
|
754
|
+
frogml_proto/qwak/feature_store/v1/internal/featureset/featureset_token_service_pb2.pyi,sha256=jmrIw0qDsqqu_kwLkBoszvfUgaZlu6iIqao-kXEsX5U,1467
|
755
|
+
frogml_proto/qwak/feature_store/v1/internal/featureset/featureset_token_service_pb2_grpc.py,sha256=J_DlFIAsT1aezJoKp98ZyUdzH71r6BkTHb1fBmeHkwA,3536
|
756
|
+
frogml_proto/qwak/features_operator/v1/features_operator_pb2.py,sha256=F3p183tOOo4ZMnwgPFPwvApTRrv0naP6Tf3pgtRLJ7o,4740
|
757
|
+
frogml_proto/qwak/features_operator/v1/features_operator_pb2.pyi,sha256=kFNkGwbmd3B6k4VMDdRpK1Pyznkx-yRadoTXwJe1kjI,5122
|
758
|
+
frogml_proto/qwak/features_operator/v1/features_operator_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
759
|
+
frogml_proto/qwak/features_operator/v1/features_operator_service_pb2.py,sha256=nuh8pPXASqVRicGJNtK3gJBgsGGfLZAAHaMpROVpmSk,4662
|
760
|
+
frogml_proto/qwak/features_operator/v1/features_operator_service_pb2.pyi,sha256=uSqVA-wpb13g-l38zrd_UX9aRsYJzAMY3BW9RvSxXmg,4235
|
761
|
+
frogml_proto/qwak/features_operator/v1/features_operator_service_pb2_grpc.py,sha256=ZeIk7wV9oS3KwC-0_8EamXMEMZZ0VWXy8BH24-4IAus,5152
|
762
|
+
frogml_proto/qwak/features_operator/v2/features_operator_pb2.py,sha256=Lgr7vhcL81_SRDXcsuqw_sPd9_5-Jscv8Rct-JxXuQY,5362
|
763
|
+
frogml_proto/qwak/features_operator/v2/features_operator_pb2.pyi,sha256=6UWOQ9ftjSKYekpCvreHcYOEbeKn6GhZPMVDGohlXAk,5363
|
764
|
+
frogml_proto/qwak/features_operator/v2/features_operator_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
765
|
+
frogml_proto/qwak/features_operator/v2/features_operator_service_pb2.py,sha256=Knvan4EPuRoay40Iy_Bsuct1K5YiHrnrdqSMw3Fxx6A,4453
|
766
|
+
frogml_proto/qwak/features_operator/v2/features_operator_service_pb2.pyi,sha256=VdAnKM7Q51hmOfaKwwhIWIBUybsdhpK1GxZJacdIVGY,4270
|
767
|
+
frogml_proto/qwak/features_operator/v2/features_operator_service_pb2_grpc.py,sha256=vBn-cKUHtYY0V-xn1QoCNAqUPvkw-hf1s44bCWEZcYE,5152
|
768
|
+
frogml_proto/qwak/features_operator/v3/features_operator_async_service_pb2.py,sha256=6mc0bR1IEseattOlVSgkMRP5C-BN8nGypwfKzgcflfc,10485
|
769
|
+
frogml_proto/qwak/features_operator/v3/features_operator_async_service_pb2.pyi,sha256=0ebF9vIDV56ZonODT0-zixXO0xNCs7Zf5LTlpyiaohU,11888
|
770
|
+
frogml_proto/qwak/features_operator/v3/features_operator_async_service_pb2_grpc.py,sha256=rTegD-ct-b-MnPIq9ktL98UOoRzCUCNG_C5luqprnO0,9459
|
771
|
+
frogml_proto/qwak/features_operator/v3/features_operator_pb2.py,sha256=8NCkBupLvbLS5woevkn7Agl6OJPHFPCuBQf3IkblC_U,5315
|
772
|
+
frogml_proto/qwak/features_operator/v3/features_operator_pb2.pyi,sha256=YtjHx0b5mxe0xe3Vzp97UxIrtXX98FDboY7cRI8TMwo,5484
|
773
|
+
frogml_proto/qwak/features_operator/v3/features_operator_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
774
|
+
frogml_proto/qwak/file_versioning/file_versioning_pb2.py,sha256=fJcRFrSc99HTJifRFY3eDOgdwZVwqoqmEB-dWad-qU8,2988
|
775
|
+
frogml_proto/qwak/file_versioning/file_versioning_pb2.pyi,sha256=IMwPZgh4c2nzHQ_kd1gPCcxRNQ1UECIuqAVHgcBL4xQ,4026
|
776
|
+
frogml_proto/qwak/file_versioning/file_versioning_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
777
|
+
frogml_proto/qwak/file_versioning/file_versioning_service_pb2.py,sha256=u6DEQt09E-q3-oJfs9BEi2vIrXDlxXk_UkrT63ukTP8,4469
|
778
|
+
frogml_proto/qwak/file_versioning/file_versioning_service_pb2.pyi,sha256=jc5uvQIIDVRJ2RaRTDX9uwd25mQ4FNmH_9uxcDMKsRM,3178
|
779
|
+
frogml_proto/qwak/file_versioning/file_versioning_service_pb2_grpc.py,sha256=JRLNML9FviSZx-2vZofvFmtKK8xpuaRDxF3fcitmMrI,5029
|
780
|
+
frogml_proto/qwak/fitness_service/constructs_pb2.py,sha256=IIhI1lkz6P_YhOB7Q85Z3cNFws8CWi8nEhxXWCzYtZ8,6963
|
781
|
+
frogml_proto/qwak/fitness_service/constructs_pb2.pyi,sha256=e9JRxhSaoWRZPeuepaoRmYziNrX26uhVteITUvVwtZk,11560
|
782
|
+
frogml_proto/qwak/fitness_service/constructs_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
783
|
+
frogml_proto/qwak/fitness_service/fitness_pb2.py,sha256=gMKh_8sPqwfCJndmGxrhPFnyF_uGYodYHuKWtiGbYJ4,3560
|
784
|
+
frogml_proto/qwak/fitness_service/fitness_pb2.pyi,sha256=0bhce22_VOOhXoA7MNWEM2liqy_khM9P9VOFv5GcVoE,6309
|
785
|
+
frogml_proto/qwak/fitness_service/fitness_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
786
|
+
frogml_proto/qwak/fitness_service/fitness_service_pb2.py,sha256=KrhltzRxMiCJgjVGV6NwB_2kjtsGO9Dh9_Own2C_Pos,7138
|
787
|
+
frogml_proto/qwak/fitness_service/fitness_service_pb2.pyi,sha256=MRjFt7DSeAX_dkVujBDREkuAJyDZVUVKXfubrt4O7zc,4059
|
788
|
+
frogml_proto/qwak/fitness_service/fitness_service_pb2_grpc.py,sha256=E18sexzm5C1A4OzuuDw5MPU_gNmjWTjIdMGl6UpyBNA,8547
|
789
|
+
frogml_proto/qwak/fitness_service/status_pb2.py,sha256=klRcNpwZBHLy0txvKyGFpfMWNNUufLgThEn993HV68U,8517
|
790
|
+
frogml_proto/qwak/fitness_service/status_pb2.pyi,sha256=i2MhYQtfxosJbFbwr8Y5Bit4_4QhL4Z85F_UIhBvwTE,12440
|
791
|
+
frogml_proto/qwak/fitness_service/status_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
792
|
+
frogml_proto/qwak/inference/feedback/feedback_pb2.py,sha256=gxMxPXt25EZuFik5QTDW0_oKJlKVGBE8g3qjqnrT3z0,8209
|
793
|
+
frogml_proto/qwak/inference/feedback/feedback_pb2.pyi,sha256=_gURfNxm6IMCDeAqEm1wP6oGmmvBedfktPsioOb0eiw,10867
|
794
|
+
frogml_proto/qwak/inference/feedback/feedback_pb2_grpc.py,sha256=XaZ2CtNxByqhkxpk5B36JsVKdlJIgVIIL7o4_l6_BfY,4701
|
795
|
+
frogml_proto/qwak/instance_template/instance_template_pb2.py,sha256=k1AqghtsB3ntDBFNGLb95UCSQXM8Gn6DffLejHATISQ,3890
|
796
|
+
frogml_proto/qwak/instance_template/instance_template_pb2.pyi,sha256=CWVTrRmuYTqXI1JzvvQonGWNtvtee6JPBC7_wDXUv5E,4697
|
797
|
+
frogml_proto/qwak/instance_template/instance_template_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
798
|
+
frogml_proto/qwak/instance_template/instance_template_service_pb2.py,sha256=klEkpT1-JYOpPD537RWpI5PBox6l7wlzkmmP2iTX9v0,4736
|
799
|
+
frogml_proto/qwak/instance_template/instance_template_service_pb2.pyi,sha256=ICzc61e6_76mLXIbkIuxxgVEOhBndSmWq4aodI7HWj4,3310
|
800
|
+
frogml_proto/qwak/instance_template/instance_template_service_pb2_grpc.py,sha256=leZFwKjLazycqk37oFWc-Q5H6nh7D9Hd9QH1YyWCHts,5241
|
801
|
+
frogml_proto/qwak/integration/hugging_face_integration_pb2.py,sha256=KSszFlncPxA5C0NWr2215CUGJm9kEN3z2JV6klUmlhE,5539
|
802
|
+
frogml_proto/qwak/integration/hugging_face_integration_pb2.pyi,sha256=i4uj9UwKIq1dT4yDcDWuM4nlpBR-GN1lW2yUksKVsHQ,4973
|
803
|
+
frogml_proto/qwak/integration/hugging_face_integration_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
804
|
+
frogml_proto/qwak/integration/integration_pb2.py,sha256=_Yccv0KfqniABvZzQnDxkcfHre32yVCT4EBZZxWMBiY,12792
|
805
|
+
frogml_proto/qwak/integration/integration_pb2.pyi,sha256=RwacReZLRu7u_odB1eaVf2tRlqXCsb3avZ8-69LTr0k,22661
|
806
|
+
frogml_proto/qwak/integration/integration_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
807
|
+
frogml_proto/qwak/integration/integration_service_pb2.py,sha256=Q5oSYp_KlgfVudmoeCrhOrDh_yOhppU5TxbYAEJmT4g,11919
|
808
|
+
frogml_proto/qwak/integration/integration_service_pb2.pyi,sha256=L65AI-3V6dzof_iP_hob5jwPSJ4tJGHx739o8CPYc3U,9089
|
809
|
+
frogml_proto/qwak/integration/integration_service_pb2_grpc.py,sha256=I1zLdR0j4dw41L0HyOKBR__R2aOL3gEmnkQQenRQVfI,14420
|
810
|
+
frogml_proto/qwak/integration/open_a_i_integration_pb2.py,sha256=4tpQWbiU8MXDJqCeP14Kv9-2QUMPrddGcBXk0-gJS4w,5111
|
811
|
+
frogml_proto/qwak/integration/open_a_i_integration_pb2.pyi,sha256=z2yS0XneBagOG_lC565Go_7cqCEIHo-mPRNqEpwm16M,4745
|
812
|
+
frogml_proto/qwak/integration/open_a_i_integration_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
813
|
+
frogml_proto/qwak/integration/opsgenie_integration_pb2.py,sha256=ZpsUeU3Sfj4vJuek7NeEEgx_gJmvvvtdA7B2doItQtI,6805
|
814
|
+
frogml_proto/qwak/integration/opsgenie_integration_pb2.pyi,sha256=VHea_O-vyX_U-QXbzqgIiWD0a-3g643daDWLhpl2Hyg,7290
|
815
|
+
frogml_proto/qwak/integration/opsgenie_integration_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
816
|
+
frogml_proto/qwak/integration/pagerduty_integration_pb2.py,sha256=9gcH5urm7D_0VbU6Ywlg4ls31epNoWlZk3SRHcNIx3U,8937
|
817
|
+
frogml_proto/qwak/integration/pagerduty_integration_pb2.pyi,sha256=GGIPE8OdQYuLrYtmt4OwAUqeUYmRj00cTCdjdgUnmlU,9409
|
818
|
+
frogml_proto/qwak/integration/pagerduty_integration_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
819
|
+
frogml_proto/qwak/integration/slack_app_integration_pb2.py,sha256=JXR-KfAOg5CP5kgkxR_lMhRRHaSqJS7gBo1jFlz8oi0,7961
|
820
|
+
frogml_proto/qwak/integration/slack_app_integration_pb2.pyi,sha256=gcQk_mITzwJaYweIHqB7dv3itRwgLZvLC6z-nMmn82k,7971
|
821
|
+
frogml_proto/qwak/integration/slack_app_integration_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
822
|
+
frogml_proto/qwak/jfrog/gateway/v0/repository_pb2.py,sha256=Tw_OFkBvhQN8fWG_vEAL54eKyCW-UgYRR6hAs3bopv8,5428
|
823
|
+
frogml_proto/qwak/jfrog/gateway/v0/repository_pb2.pyi,sha256=ISVTMGlT_TLtP-Lp0xype65MldQC4Tm84omdQiVifJw,4711
|
824
|
+
frogml_proto/qwak/jfrog/gateway/v0/repository_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
825
|
+
frogml_proto/qwak/jfrog/gateway/v0/repository_service_pb2.py,sha256=DLvNrMczBomUiJzooBmnQIvxWYMLZSOMzQkTSGwCUGQ,4460
|
826
|
+
frogml_proto/qwak/jfrog/gateway/v0/repository_service_pb2.pyi,sha256=PC0kTG8_NNAB1mm4pqR1yrJXuwIjs2D8YqioYpNmNTw,2660
|
827
|
+
frogml_proto/qwak/jfrog/gateway/v0/repository_service_pb2_grpc.py,sha256=XL6b6LqCaWSrL9W1qYyrXvh7mVMnewf3Xx8jWyXAJU4,5060
|
828
|
+
frogml_proto/qwak/kube_deployment_captain/alert_pb2.py,sha256=QCmcLiTnbSTI6WzIq5gbnncp7yQykKFyhk_3iLAJPk8,7816
|
829
|
+
frogml_proto/qwak/kube_deployment_captain/alert_pb2.pyi,sha256=KQQOS47dAVHM2F5oYvbbFEGsP7xhOgsWg5uwiMEd0bc,10487
|
830
|
+
frogml_proto/qwak/kube_deployment_captain/alert_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
831
|
+
frogml_proto/qwak/kube_deployment_captain/alerting_pb2.py,sha256=2WquRLoQXoQMVRn4q0eK4ouA0bbOFUeXBYqqhuUER4s,3717
|
832
|
+
frogml_proto/qwak/kube_deployment_captain/alerting_pb2.pyi,sha256=AGXtot0uXW-mGd2xuixCCJB6eTt0UuF3b2oAhb4IsNc,3759
|
833
|
+
frogml_proto/qwak/kube_deployment_captain/alerting_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
834
|
+
frogml_proto/qwak/kube_deployment_captain/batch_job_pb2.py,sha256=ZsfBxb7kK6WFaArChEkd9V8PFJ_C62s51S4dZute6OA,28172
|
835
|
+
frogml_proto/qwak/kube_deployment_captain/batch_job_pb2.pyi,sha256=KLyFPYDjltXubE2x-TjNgbN6Vcp4_6VCbtqD8653ZEM,37284
|
836
|
+
frogml_proto/qwak/kube_deployment_captain/batch_job_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
837
|
+
frogml_proto/qwak/kube_deployment_captain/deployment_pb2.py,sha256=0smCzk3nWnZtChSizG6HZx5By79p7x-tnrdV5dHQCwY,13445
|
838
|
+
frogml_proto/qwak/kube_deployment_captain/deployment_pb2.pyi,sha256=PjizqKZ8_aaz0CgMREH5auOBnoeIT18lfr_b0dfHx-A,22974
|
839
|
+
frogml_proto/qwak/kube_deployment_captain/deployment_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
840
|
+
frogml_proto/qwak/kube_deployment_captain/feature_set_deployment_pb2.py,sha256=jFcv1f9nE7YrIDGNd5-Y2lkGRgjB22BuSDpVoUp4fjE,12858
|
841
|
+
frogml_proto/qwak/kube_deployment_captain/feature_set_deployment_pb2.pyi,sha256=15sSBt-7G0y_TtuHYIOzSl0cKRLDFsCdLswxTJFRAzc,16933
|
842
|
+
frogml_proto/qwak/kube_deployment_captain/feature_set_deployment_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
843
|
+
frogml_proto/qwak/kube_deployment_captain/kube_deployment_captain_service_pb2.py,sha256=9mehj9GwYv7HSPx2J0sjIYj5ALSmPH6ssZOYJtxSoro,52281
|
844
|
+
frogml_proto/qwak/kube_deployment_captain/kube_deployment_captain_service_pb2.pyi,sha256=iaP8VZ05GFQO_HaIS4vnS7kl8vFqV5eP4vNbaT9eqqc,42355
|
845
|
+
frogml_proto/qwak/kube_deployment_captain/kube_deployment_captain_service_pb2_grpc.py,sha256=W51Ht69JgO70s3fQzuWdPUPB8gJAryQRVxa9RuICx7k,76072
|
846
|
+
frogml_proto/qwak/kube_deployment_captain/traffic_mapping_pb2.py,sha256=0TQOAs6ZJMKA_JSYns-TJjed6Shcxf0zCgLrmBtM230,2424
|
847
|
+
frogml_proto/qwak/kube_deployment_captain/traffic_mapping_pb2.pyi,sha256=Cv-8x8Hp0p9TNcUGGfp5fnPHajYAqgs_vO5vMkrKytM,2637
|
848
|
+
frogml_proto/qwak/kube_deployment_captain/traffic_mapping_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
849
|
+
frogml_proto/qwak/logging/log_filter_pb2.py,sha256=KTeGZM8HtPZ7Ig6vQ8zGfEXN_stiPN-ZFaBLreg-7TE,3472
|
850
|
+
frogml_proto/qwak/logging/log_filter_pb2.pyi,sha256=vlg9EHfvRBKRjqC1SvA907UaE2UG0QMFgxC66YIDExY,4169
|
851
|
+
frogml_proto/qwak/logging/log_filter_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
852
|
+
frogml_proto/qwak/logging/log_line_pb2.py,sha256=JZulY40yusX4hMoKtWUT2UYzlFVSa1uTNthy2IVgTTI,2246
|
853
|
+
frogml_proto/qwak/logging/log_line_pb2.pyi,sha256=bEilPNnaEv6xM6YyIvQ0MIIZoFeAjB85Rykdz6qsnk0,2135
|
854
|
+
frogml_proto/qwak/logging/log_line_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
855
|
+
frogml_proto/qwak/logging/log_reader_service_pb2.py,sha256=7Q8TElWqs0tOK6lyJij-umvj6TvnuIJMU1sppTtGD_U,3142
|
856
|
+
frogml_proto/qwak/logging/log_reader_service_pb2.pyi,sha256=BwJV7tfXYSaUb-gAB77OueDJik86HOtniFkwHRTazh4,3570
|
857
|
+
frogml_proto/qwak/logging/log_reader_service_pb2_grpc.py,sha256=0if2INrwVUF_8NfgoMCboZKYoTRP9Xl2Cy3rGY3yM6E,2832
|
858
|
+
frogml_proto/qwak/logging/log_source_pb2.py,sha256=U_GAGKUDqh2FcB1fVa44cD0eDWNy-3RbaWEdOBkLow4,10151
|
859
|
+
frogml_proto/qwak/logging/log_source_pb2.pyi,sha256=ycRLEvqVgBL-bfQVhp7yWP1xVJoTUxmZHQR_w2uZK8o,14337
|
860
|
+
frogml_proto/qwak/logging/log_source_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
861
|
+
frogml_proto/qwak/model_descriptor/open_ai_descriptor_pb2.py,sha256=yArUUX9SsaOuTmFfhxGIxe_ZEFC6u39oqYBAiPro5mo,6764
|
862
|
+
frogml_proto/qwak/model_descriptor/open_ai_descriptor_pb2.pyi,sha256=G5CaQGczrZ9kGsMbmJXMFWAwnqMZ4jPSl9KQpSq0yMo,12345
|
863
|
+
frogml_proto/qwak/model_descriptor/open_ai_descriptor_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
864
|
+
frogml_proto/qwak/models/models_pb2.py,sha256=vFkGZfot9GipWUJSkY1HWNaTQ9cLnaCJjnGvM_MYJ10,29834
|
865
|
+
frogml_proto/qwak/models/models_pb2.pyi,sha256=bcFrmhKv6Vn593WHP3vgCts2yd3T7-ThUvTxjs4QIMs,35371
|
866
|
+
frogml_proto/qwak/models/models_pb2_grpc.py,sha256=KV9Ez2InTVv7CwFgzNzNmjmMlWQkRgSVAS1iFTrUBh8,19831
|
867
|
+
frogml_proto/qwak/monitoring/v0/alerting_channel_management_service_pb2.py,sha256=skfQrw_RUDMu-F0A1jUmkKrpF694hBgTC1jSNGjeuyg,10759
|
868
|
+
frogml_proto/qwak/monitoring/v0/alerting_channel_management_service_pb2.pyi,sha256=enqAQBr8RW_FLVL1BkZ_MGjeklQkhIZZ2OU2jczePdk,6907
|
869
|
+
frogml_proto/qwak/monitoring/v0/alerting_channel_management_service_pb2_grpc.py,sha256=r-RVpwiZrMaAo3zlGh__DvR6GwL5i0Z4p6Kp7amdFFM,13658
|
870
|
+
frogml_proto/qwak/monitoring/v0/alerting_channel_pb2.py,sha256=6OcDcaU6ooxFpcIcOOOatTyDjYP1YAPv7mmW36ybMd0,11577
|
871
|
+
frogml_proto/qwak/monitoring/v0/alerting_channel_pb2.pyi,sha256=m0Y3Ou1tQ_klWPHpjXX_kQRkuaXW_azeHRj8-CI2b-w,14927
|
872
|
+
frogml_proto/qwak/monitoring/v0/alerting_channel_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
873
|
+
frogml_proto/qwak/monitoring/v0/alerting_channel_sync_service_pb2.py,sha256=3fFKDUseqximXrXv0NIotJS5C-xbmG7eihiVm5jmkBA,5297
|
874
|
+
frogml_proto/qwak/monitoring/v0/alerting_channel_sync_service_pb2.pyi,sha256=fKa2zl5LBF2jZYQDaPzTbp5Bi74KEnTAc4bCu3xpJJw,3810
|
875
|
+
frogml_proto/qwak/monitoring/v0/alerting_channel_sync_service_pb2_grpc.py,sha256=HkSKKOFTaSMPleDZBNFVkDY0hgIT1McPI-0sl5Dmap8,5552
|
876
|
+
frogml_proto/qwak/offline/serving/v1/feature_values_pb2.py,sha256=qCLcVjs-vszvxgV8NYUc-tQ6szq-NN4b_b4Owlt6atM,1611
|
877
|
+
frogml_proto/qwak/offline/serving/v1/feature_values_pb2.pyi,sha256=b3tlv0xZd8KqormvhSUVMrb6YbsYoCkEK_zO64a8MCE,1221
|
878
|
+
frogml_proto/qwak/offline/serving/v1/feature_values_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
879
|
+
frogml_proto/qwak/offline/serving/v1/offline_serving_async_service_pb2.py,sha256=7btf7O9JbudNJQqjkU4b6wJunjvW_3srt-JlPmWyVFs,11829
|
880
|
+
frogml_proto/qwak/offline/serving/v1/offline_serving_async_service_pb2.pyi,sha256=t1dW0WG-hJyZJ9xAMlWnUhrVGLe6xE3_Rdpss4-4fR0,13028
|
881
|
+
frogml_proto/qwak/offline/serving/v1/offline_serving_async_service_pb2_grpc.py,sha256=JvOqphCQCfEoXMVLhMA4xwq-A8e-pmam_q_IY2VIWsw,9794
|
882
|
+
frogml_proto/qwak/offline/serving/v1/options_pb2.py,sha256=eh0TN8CFsAtMVHJXw0m8xl9iU0e_UvMI_QYRTecKF4k,1628
|
883
|
+
frogml_proto/qwak/offline/serving/v1/options_pb2.pyi,sha256=CQLi2k6b6bdBPnlatAJKHGGAK4-s4wkyfo5DwPN2ZRg,999
|
884
|
+
frogml_proto/qwak/offline/serving/v1/options_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
885
|
+
frogml_proto/qwak/offline/serving/v1/population_pb2.py,sha256=ZdZbhDf89YPYRMFdKbSZBjA7cakkSJNgz0pgv1qMisM,4073
|
886
|
+
frogml_proto/qwak/offline/serving/v1/population_pb2.pyi,sha256=O9khD516sbdaY5FZHcDOGxTFSoOOUa__SiJN8wkteLs,3906
|
887
|
+
frogml_proto/qwak/offline/serving/v1/population_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
888
|
+
frogml_proto/qwak/projects/projects_pb2.py,sha256=nsbWAyTIqn5d9xcc6vvIdSDwIhCO8OtA26Ls9Ap1kH8,15786
|
889
|
+
frogml_proto/qwak/projects/projects_pb2.pyi,sha256=MYjPFj0JRQ4XmbPa0r67z3ANoNnTQK5OXvXmLW2S5s8,18665
|
890
|
+
frogml_proto/qwak/projects/projects_pb2_grpc.py,sha256=Lzofyas6Bwx2z-5kgB5MGwxp_CJ_au2k8-QgNzzunqo,9643
|
891
|
+
frogml_proto/qwak/prompt/v1/prompt/prompt_manager_service_pb2.py,sha256=JEzeZ9_DoENW1BJgOFseqCqj3xccZSK0Wfj9y7m1HtA,19872
|
892
|
+
frogml_proto/qwak/prompt/v1/prompt/prompt_manager_service_pb2.pyi,sha256=SPZ0n_Jc29nhIkU2UKZQlq9M5XRz-tNVCqdIHooUjm0,16539
|
893
|
+
frogml_proto/qwak/prompt/v1/prompt/prompt_manager_service_pb2_grpc.py,sha256=obGRBSL4UzS0__m3NaM9WPhOjdlnelkmdL_hsonTOvY,24986
|
894
|
+
frogml_proto/qwak/prompt/v1/prompt/prompt_pb2.py,sha256=9IBEmtdeFFh4gsnwePZqAs2UtV6IoUWPpI_2T9ma7As,14579
|
895
|
+
frogml_proto/qwak/prompt/v1/prompt/prompt_pb2.pyi,sha256=gvbgxIy3MAb24g9hzGTXQGDOc58_RkNB3p5vKNgkQsE,17747
|
896
|
+
frogml_proto/qwak/prompt/v1/prompt/prompt_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
897
|
+
frogml_proto/qwak/secret_service/secret_service_pb2.py,sha256=1iPCq2o0MdkdsDaD31TA7xwO_x-v97PnZVx9Krt88bc,4765
|
898
|
+
frogml_proto/qwak/secret_service/secret_service_pb2.pyi,sha256=YiLNDCYiObqrXckY2AxHu2uwRmNkfedm5-qR1h6fUUk,2818
|
899
|
+
frogml_proto/qwak/secret_service/secret_service_pb2_grpc.py,sha256=pId7OklMYe-UOIBq26xKb0fvF3G5-HePsS2Zhe4rEwE,6254
|
900
|
+
frogml_proto/qwak/self_service/account/v0/account_membership_pb2.py,sha256=rjAO4lagvl40Qh-uisyXfAgYy1fXOSF9mS38AcHE_Ds,10733
|
901
|
+
frogml_proto/qwak/self_service/account/v0/account_membership_pb2.pyi,sha256=_2Gq_9A1YPwqlvvGobgxkatMUmyQ37lNl1_1E4Qr8Xg,12731
|
902
|
+
frogml_proto/qwak/self_service/account/v0/account_membership_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
903
|
+
frogml_proto/qwak/self_service/account/v0/account_membership_service_pb2.py,sha256=jX3R1k_TbY1Fz4rmL-ZpknTaEVwRDZQ_0cCroElicfA,19767
|
904
|
+
frogml_proto/qwak/self_service/account/v0/account_membership_service_pb2.pyi,sha256=iGTDy7edWid5rZlQ0WT4yPGD8KtA-FzUSpsS8HYXQbY,13636
|
905
|
+
frogml_proto/qwak/self_service/account/v0/account_membership_service_pb2_grpc.py,sha256=NixVJrbO2yS68NKyg6EQessZf7xe50mNnqXm4vt82n4,24353
|
906
|
+
frogml_proto/qwak/self_service/account/v0/account_status_pb2.py,sha256=Fgli-Zzpi4Cu2xHT1v9W6T0rkgDybwJ5r912Wtb0INE,7329
|
907
|
+
frogml_proto/qwak/self_service/account/v0/account_status_pb2.pyi,sha256=iGV9zdUEG2HvvALSZKc8kBQzw65Wc6bnDIaBYZ1EPyA,8289
|
908
|
+
frogml_proto/qwak/self_service/account/v0/account_status_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
909
|
+
frogml_proto/qwak/self_service/account/v0/managing_account_pb2.py,sha256=8K07fNFz71hL--9ANR0w2kBKy1ZpQIbUom60-yBU3pU,10876
|
910
|
+
frogml_proto/qwak/self_service/account/v0/managing_account_pb2.pyi,sha256=BHH4kyqZnwsDUScIVs-5mNaoPA6xA3GnGq9Eu7WE8Vw,11661
|
911
|
+
frogml_proto/qwak/self_service/account/v0/managing_account_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
912
|
+
frogml_proto/qwak/self_service/account/v0/managing_account_service_pb2.py,sha256=H-JJo5bPIHJjK-If0ketFA0rZv9o27aS3cFUjbZakV4,8891
|
913
|
+
frogml_proto/qwak/self_service/account/v0/managing_account_service_pb2.pyi,sha256=2WO6BzSdnMxsJ3GpJpY6ia-zs88nktxHfMCsY6Ipzu0,5746
|
914
|
+
frogml_proto/qwak/self_service/account/v0/managing_account_service_pb2_grpc.py,sha256=XAo4aOOGszkVv0LrYTkXtuwqvPiN0I5dyDZSAwpWNmo,9802
|
915
|
+
frogml_proto/qwak/self_service/user/v1/api_key_pb2.py,sha256=1xr1VaV8fTGXe1OtxmM4Ok9ByWow6oRlfQqamR-iOiw,1764
|
916
|
+
frogml_proto/qwak/self_service/user/v1/api_key_pb2.pyi,sha256=fD-qvc-MonsWivx8i5eqLtrkXNc8P0tpTdfKwWDQ5dM,777
|
917
|
+
frogml_proto/qwak/self_service/user/v1/api_key_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
918
|
+
frogml_proto/qwak/self_service/user/v1/user_pb2.py,sha256=HeazU5jcKdwU39BsfHUnsmCXGut-O-wBCpp_byop-gQ,2491
|
919
|
+
frogml_proto/qwak/self_service/user/v1/user_pb2.pyi,sha256=1GqP7MwTOQ4SNyyfu2cjJwYoIc3R3TaKKQFLH4YGuxs,2770
|
920
|
+
frogml_proto/qwak/self_service/user/v1/user_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
921
|
+
frogml_proto/qwak/self_service/user/v1/user_service_pb2.py,sha256=NgUE8b_XEdnLYblT7kAhC1iE8h9lOXwFYCLL6cNJMX8,10404
|
922
|
+
frogml_proto/qwak/self_service/user/v1/user_service_pb2.pyi,sha256=e3OA_PP-BzlZxm05tM9IJ0LDjKd8iW0E9a9I0-R8_Q8,8278
|
923
|
+
frogml_proto/qwak/self_service/user/v1/user_service_pb2_grpc.py,sha256=B8i4v8j4UdQu331789PPN2tWLKi2hwS8mtZU57nutXY,10513
|
924
|
+
frogml_proto/qwak/traffic/v1/traffic_api_pb2.py,sha256=yWJe2zJWGKK7sx11-SQNG1Jf9jymyAYUN4alBWcE2is,6923
|
925
|
+
frogml_proto/qwak/traffic/v1/traffic_api_pb2.pyi,sha256=1InzqfEe36axD60wEF0_S7NjISDTTalrfzBY-7kgeBE,5251
|
926
|
+
frogml_proto/qwak/traffic/v1/traffic_api_pb2_grpc.py,sha256=rxTMb-vkj5ZpaKg7uEpgj-CKW7fajw0FX64AFzScQZU,8229
|
927
|
+
frogml_proto/qwak/traffic/v1/traffic_pb2.py,sha256=gSeXBia-B7scPHN7Ap_MCrickHhmFPy9ve2A44Mva38,7881
|
928
|
+
frogml_proto/qwak/traffic/v1/traffic_pb2.pyi,sha256=f70a7ubisNu5sPtrn-yNSlvg6tiWQvsRWtkgLYHwP8o,12177
|
929
|
+
frogml_proto/qwak/traffic/v1/traffic_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
930
|
+
frogml_proto/qwak/user_application/common/v0/resources_pb2.py,sha256=4rrcPDMNKsDkGfGQlw6RNBOUO6t4vNxhcbrpwvr3utI,11409
|
931
|
+
frogml_proto/qwak/user_application/common/v0/resources_pb2.pyi,sha256=v_a0e5Q38Qt1vYcXKN0HpphXkDAyXjUFfVy7LU6u8w4,15139
|
932
|
+
frogml_proto/qwak/user_application/common/v0/resources_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
933
|
+
frogml_proto/qwak/user_application/v0/user_application_pb2.py,sha256=W48l6wlvH45X7tk_LIVzJ088a0Env1X1j2hgguWXWPE,3807
|
934
|
+
frogml_proto/qwak/user_application/v0/user_application_pb2.pyi,sha256=aG9WBCAmYmlh9xnSSi6xzC0DYVmaODAupUvYkcMsPjk,3189
|
935
|
+
frogml_proto/qwak/user_application/v0/user_application_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
936
|
+
frogml_proto/qwak/vectors/v1/collection/collection_pb2.py,sha256=7poN8QsT-ZOWmUBZl6FyfDucil0904LJfeHyVa2NWAY,8661
|
937
|
+
frogml_proto/qwak/vectors/v1/collection/collection_pb2.pyi,sha256=R2yugrWoJQ8vRebxNXUp4qVpZvcGiNwo-GAHLJF7xvo,12852
|
938
|
+
frogml_proto/qwak/vectors/v1/collection/collection_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
939
|
+
frogml_proto/qwak/vectors/v1/collection/collection_service_pb2.py,sha256=Ysj0gABpyoj82qvdAIouYOA8beXWvq27I3M-QnRMcdU,13844
|
940
|
+
frogml_proto/qwak/vectors/v1/collection/collection_service_pb2.pyi,sha256=l19j3SIpJYMjTPvnHd9zihE_VOVdaqF1JgKsr7LMEeY,10518
|
941
|
+
frogml_proto/qwak/vectors/v1/collection/collection_service_pb2_grpc.py,sha256=qYOaYcbXhPKY199QLiSEoKIxOBKmjIZzIHxfvX0mtY0,17184
|
942
|
+
frogml_proto/qwak/vectors/v1/collection/event/collection_event_pb2.py,sha256=T5lDGc14ht_6LKbUigtY-qcWBlEZ5acXQ4NxGKyUILM,1886
|
943
|
+
frogml_proto/qwak/vectors/v1/collection/event/collection_event_pb2.pyi,sha256=LfFB6-5nKHxF8xY9BKJftf_Vn8y7rjN9oUgj3TrkkLU,1550
|
944
|
+
frogml_proto/qwak/vectors/v1/collection/event/collection_event_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
945
|
+
frogml_proto/qwak/vectors/v1/filters_pb2.py,sha256=yoXsGxYWBU403PusGtgiKTH6dXKekdmJlgAFByUVaEU,9009
|
946
|
+
frogml_proto/qwak/vectors/v1/filters_pb2.pyi,sha256=ZdDa_jCDsBkzhHgvbPtwqX2PxYJyf_GWRdpSK2NfewU,11380
|
947
|
+
frogml_proto/qwak/vectors/v1/filters_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
948
|
+
frogml_proto/qwak/vectors/v1/vector_pb2.py,sha256=kbA5bWcBBF5dVt-3hjY_XwRELMim7y3EQQ8rnvxK5rc,4546
|
949
|
+
frogml_proto/qwak/vectors/v1/vector_pb2.pyi,sha256=ssNBqdiQJbYId4_m2CUVZD-ie9Q1KRpVKhOI1a6Qp3o,6103
|
950
|
+
frogml_proto/qwak/vectors/v1/vector_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
951
|
+
frogml_proto/qwak/vectors/v1/vector_service_pb2.py,sha256=fU0NUcEKqjqNL8kyD7_Xc6uwoNWJggEysraU6Xp3I1o,9753
|
952
|
+
frogml_proto/qwak/vectors/v1/vector_service_pb2.pyi,sha256=TH6-VMhjN0jYnuikRB1vUb-8t4Sd2zdk3dWL9FQqJs8,11107
|
953
|
+
frogml_proto/qwak/vectors/v1/vector_service_pb2_grpc.py,sha256=Rm5VYDI2t5ADPN7zgmtTbLtJ05XC8B48kMOXBimWaV8,10158
|
954
|
+
frogml_proto/qwak/workspace/workspace_pb2.py,sha256=JyKBIfHY5BESrOCM1hffOY24c6loca_wIX2_7RoU2B8,10867
|
955
|
+
frogml_proto/qwak/workspace/workspace_pb2.pyi,sha256=YBNrJXreJseq_S2zUr1AUPSOTYTx83z13mGs2fK7zaE,17225
|
956
|
+
frogml_proto/qwak/workspace/workspace_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
957
|
+
frogml_proto/qwak/workspace/workspace_service_pb2.py,sha256=f-cfJ8EruFSrgCtEiftSlGyXXyloW2vbpUZ-vm2YvQY,21443
|
958
|
+
frogml_proto/qwak/workspace/workspace_service_pb2.pyi,sha256=FHNTyGxvdewsKzvSYOxSx9IYje0tLnypX8h9ZL6EIsc,13869
|
959
|
+
frogml_proto/qwak/workspace/workspace_service_pb2_grpc.py,sha256=h8km3_lj2GKeLmqaq6LoTupZTWfL2KcOCquZ4G_lmf8,27194
|
960
|
+
frogml_services_mock/__init__.py,sha256=0T7bNPpbIApVHcQ9vn5RXKy1PNaD5hl3sFnkMvscIlI,48
|
961
|
+
frogml_services_mock/mocks/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
962
|
+
frogml_services_mock/mocks/alert_manager_service_api.py,sha256=wEBgwtCRAxUSAni-rb0tjlKZjoyeM8jh1Y6Poi4PGMc,2163
|
963
|
+
frogml_services_mock/mocks/alert_registry_service_api.py,sha256=k_MbEytyIvUcMffqd1E6Wf0qBEOyZMVpBu-jaS6Tvjw,2277
|
964
|
+
frogml_services_mock/mocks/analytics_api.py,sha256=9zA90He4hYOd8Wr1k_wZho6bWsbkd8mVUt4MUCrTEKc,2132
|
965
|
+
frogml_services_mock/mocks/audience_service_api.py,sha256=x96adhF05NYqEtI8lJaf5llrZX29udPLHuVXKy_FbR0,2661
|
966
|
+
frogml_services_mock/mocks/authentication_service.py,sha256=cmsDEcVjJsCU143oOAEfinShvzRw9I8mJAAEIa53SjI,1176
|
967
|
+
frogml_services_mock/mocks/automation_management_service.py,sha256=-7kncqM3R-_pLmppzFpuv_TniXCVGVuESculVuQ3EbY,8238
|
968
|
+
frogml_services_mock/mocks/autoscaling_service_api.py,sha256=u3RkwHxACPFSk9DwhLFQSI7_ULoHN9uWFL-zyyo-sNw,1032
|
969
|
+
frogml_services_mock/mocks/batch_job_manager_service.py,sha256=QY3HA0MlA8eg2jkQEzjyGx8UsSnlGbOUopDLOYLacL4,13146
|
970
|
+
frogml_services_mock/mocks/build_management.py,sha256=IECGXfSEDOUhwMcHtI3pd9PF0aXqZL2R98gl3wS0joY,3697
|
971
|
+
frogml_services_mock/mocks/build_orchestrator_build_api.py,sha256=fnB6x7W_UWoOxkCm7AgtrRYJjjm1QCotkf-2hPGk75c,5026
|
972
|
+
frogml_services_mock/mocks/build_orchestrator_build_settings_api.py,sha256=5V15s2QUur4CPMNZPyXIIt_NJ2W_DwugfreMDA6WbfM,1394
|
973
|
+
frogml_services_mock/mocks/build_orchestrator_service_api.py,sha256=5LMVyz8fJCKaPqohzbMyb1DJaZQmxQMq7RF7tf8178E,5233
|
974
|
+
frogml_services_mock/mocks/data_versioning_service.py,sha256=XVsFBX9LQtbfo2JG2yBlNoPEZyFKtlFeztJmQULaR7g,2467
|
975
|
+
frogml_services_mock/mocks/deployment_management_service.py,sha256=pcW963FailhEZuFmVXX_gz7N0zydzuxwVb8g803vBK4,20580
|
976
|
+
frogml_services_mock/mocks/ecosystem_service_api.py,sha256=NlJfxC7tFZc94biAN8r2wtkap7eXC0Qjp2j8iifDmoA,1621
|
977
|
+
frogml_services_mock/mocks/execution_management_service.py,sha256=aIxid8ScdUKRpV_w_dErNpMSm2Pj30ZK8ejBqe06HTY,889
|
978
|
+
frogml_services_mock/mocks/feature_store_data_sources_manager_api.py,sha256=uO6I_3qJB-q8JD7ov_tko838wlI6o5B4GsW08cnaYxI,3541
|
979
|
+
frogml_services_mock/mocks/feature_store_entities_manager_api.py,sha256=exPHmeYHtkA0BVA5x_srXCKV7qp5zD4XWD4ZaFdUb4o,3404
|
980
|
+
frogml_services_mock/mocks/feature_store_feature_set_manager_api.py,sha256=1iPwTYcHIWkw6yEWvb7lOOjFADVVogQL32GQamtfXKo,10932
|
981
|
+
frogml_services_mock/mocks/features_online_serving_api.py,sha256=LVfpcJyWNos9J3t7s6xgWoOBKM-QHStPcIX4wCI6Zs8,6844
|
982
|
+
frogml_services_mock/mocks/features_operator_v3_service.py,sha256=_RcUeL9LRFbxL7k-Lw5zXH9O1z16KkIiUU-JON_ZBC4,1003
|
983
|
+
frogml_services_mock/mocks/features_set_state_service_api.py,sha256=jLtDYRBQUXP9x2DaywRPNFTtAGewP1JF1wv28ZTRbL4,2290
|
984
|
+
frogml_services_mock/mocks/feedback_service.py,sha256=NH8IskHnwbHGfDJCunSWMWQd9UfVBL7rPzVrFWrCZC4,1140
|
985
|
+
frogml_services_mock/mocks/file_versioning_service.py,sha256=MtxGcWoB_hkJUMBRSso9-G_6_WBbHkrgzG6Rf_37Ysk,2606
|
986
|
+
frogml_services_mock/mocks/frogml_mocks.py,sha256=NkzhyXe7wKyGNZvpcMV3cJTIGitlvgIBw0v_sOM0BVc,6371
|
987
|
+
frogml_services_mock/mocks/fs_offline_serving_service.py,sha256=O4hd4kQ-sXm9zMPVJYHXO4ARPuc3UN0E9rcOtDkSJRk,2093
|
988
|
+
frogml_services_mock/mocks/instance_template_management_service.py,sha256=8J8NlD667kWfjhSXsyH31jjr7qKIaF77K1Fc7FgxtHY,4762
|
989
|
+
frogml_services_mock/mocks/integration_management_service.py,sha256=XvWyif8pGuqJsrjTs6m29cneVuYdjVptPpRndwIdqq4,2771
|
990
|
+
frogml_services_mock/mocks/internal_build_orchestrator_service.py,sha256=saWQOWbJC5uoAcr053rmd0Jj2TI4TH3Kyr2D5lsL87w,1059
|
991
|
+
frogml_services_mock/mocks/job_registry_service_api.py,sha256=Zd5lVM6h4jFfKHxnQAux1FiBEw2tXFA284OJ33a_IH4,2711
|
992
|
+
frogml_services_mock/mocks/kube_captain_service_api.py,sha256=WVCaoOHY-kFdS73bd7kuOssr1RAK1F6MUlJ-NO0eLfY,1596
|
993
|
+
frogml_services_mock/mocks/logging_service.py,sha256=JRTCjJRIKlJQeTHr3Qt5gbkfxMLUPblo0Sp50COspxE,7385
|
994
|
+
frogml_services_mock/mocks/model_management_service.py,sha256=YKNgZ65AcKTMFs1zkrfVfGOBjqPBpodTgD6r358iRMg,4167
|
995
|
+
frogml_services_mock/mocks/model_version_manager_service.py,sha256=izF1ke3swXCIM4S5Wv_8HVZGrLK2Pn_po38YHjiT628,3665
|
996
|
+
frogml_services_mock/mocks/project_manager_service.py,sha256=dxjhZwqN2UjDpHybArB8O6JOBke2JnQ9OMxy_1lLLJM,3093
|
997
|
+
frogml_services_mock/mocks/prompt_manager_service.py,sha256=dJufY5oO4SwdO3rmbz9KaOzZKz25H5Ggx3grUQ3sIHg,11369
|
998
|
+
frogml_services_mock/mocks/repository_service_mock.py,sha256=jct78Re6rcOAoBIMi9kTVwzwNCuHh-_9tA_DaIXRUFU,1331
|
999
|
+
frogml_services_mock/mocks/secret_service.py,sha256=8MNvM8Us5OwImLijR__Q7iphsVLOfn-E6qcL3K7fi_I,1409
|
1000
|
+
frogml_services_mock/mocks/self_service_user_service.py,sha256=3JTvekeE04KoiAuS0r4w4nI7yRQxsqDd3UJ4viJDhdc,1207
|
1001
|
+
frogml_services_mock/mocks/system_secret_service.py,sha256=IXcjXoN0L7jbxAF-7g6HO4LIdq0NZeR35DES6JorA80,1900
|
1002
|
+
frogml_services_mock/mocks/user_application_instance_service_api.py,sha256=2kMFeKdxRIWySYYbMAGII4ds04i3m4u_Ds8VrQbm7l0,4097
|
1003
|
+
frogml_services_mock/mocks/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1004
|
+
frogml_services_mock/mocks/utils/exception_handlers.py,sha256=k_8mez3cwjNjKE9yGQRJUuK95qNQyk_slotIF08IIEE,308
|
1005
|
+
frogml_services_mock/mocks/vector_serving_api.py,sha256=ZljLOw9_ee-nlvEMU0HNzmK2tcsmBY6VzuVzLmInYj4,5838
|
1006
|
+
frogml_services_mock/mocks/vectors_management_api.py,sha256=-GtKow3JmBj6LRZw625WdD8pt9VKtGZUs2VXTbtEPg0,3602
|
1007
|
+
frogml_services_mock/mocks/workspace_manager_service_mock.py,sha256=WbOiWgOyr-xTicwJO7jdY-gN_5hF_s9GOU-ZO5P_2_M,7745
|
1008
|
+
frogml_services_mock/services_mock.py,sha256=_34z6rFCHFwcSni-9eyJlrH264xsL_QDNmG-EBv0zMc,20281
|
1009
|
+
frogml_services_mock/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1010
|
+
frogml_services_mock/utils/service_utils.py,sha256=ZlB0CnB1J6oBn6_m7fQO2U8tKoboHdUa6ljjkRMYNXU,265
|
1011
|
+
frogml_core-0.0.2.dist-info/METADATA,sha256=0Kjz_KRsvTG-AIFzlruQ2qF952q9V65nzJf1nciWTxM,2221
|
1012
|
+
frogml_core-0.0.2.dist-info/WHEEL,sha256=IYZQI976HJqqOpQU6PHkJ8fb3tMNBFjg-Cn-pwAbaFM,88
|
1013
|
+
frogml_core-0.0.2.dist-info/RECORD,,
|