Skip to main content
The Jobs Service in the Galtea SDK lets you inspect and cancel asynchronous Galtea jobs — for example, the inference-generation pipeline started by evaluations.run() in endpoint-connection mode. This Service is exposed by the galtea.jobs object.
Remember that we will be using the galtea object. More information here.

What is a Job?

When you call evaluations.run() without an agent, Galtea queues an inference batch and returns a jobId. The platform then calls your endpoint for every test case and evaluates the results asynchronously. The Jobs Service gives you visibility into that background process and lets you cancel it if needed. A job moves through the following states:

Quick Example

Check job status and cancel if it is still running:

Service Methods