nemo_microservices.types.evaluation.job_create_params#

Module Contents#

Classes#

Data#

API#

nemo_microservices.types.evaluation.job_create_params.Config: typing_extensions.TypeAlias#

None

class nemo_microservices.types.evaluation.job_create_params.JobCreateParams#

Bases: typing_extensions.TypedDict

config: typing_extensions.Required[Config]#

None

The evaluation configuration.

custom_fields: Dict[str, object]#

None

A set of custom fields that the user can define and use for various purposes.

description: str#

None

The description of the entity.

namespace: str#

None

The namespace of the entity.

This can be missing for namespace entities or in deployments that don’t use namespaces.

output_files_url: str#

None

The place where the output files, if any, should be written.

ownership: nemo_microservices.types.shared_params.ownership.Ownership#

None

Information about ownership of an entity.

If the entity is a namespace, the access_policies will typically apply to all entities inside the namespace.

project: str#

None

The URN of the project associated with this entity.

result: str#

None

The evaluation result URN.

status: nemo_microservices.types.shared.job_status.JobStatus#

None

Normalized statuses for all jobs.

  • CREATED: The job is created, but not yet scheduled.

  • PENDING: The job is waiting for resource allocation.

  • RUNNING: The job is currently running.

  • CANCELLING: The job is being cancelled at the user’s request.

  • CANCELLED: The job has been cancelled by the user.

  • CANCELLING: The job is being cancelled at the user’s request.

  • FAILED: The job failed to execute and terminated.

  • COMPLETED: The job has completed successfully.

  • READY: The job is ready to be used.

  • UNKNOWN: The job status is unknown.

status_details: nemo_microservices.types.evaluation_status_details_param.EvaluationStatusDetailsParam#

None

Details about the status of the evaluation.

target: typing_extensions.Required[Target]#

None

The evaluation target.

nemo_microservices.types.evaluation.job_create_params.Target: typing_extensions.TypeAlias#

None