import osfrom scale_gp import SGPClientclient = SGPClient( api_key=os.environ.get("SGP_API_KEY"), # This is the default and can be omitted)page = client.fine_tuning_jobs.events.list( "fine_tuning_job_id",)page = page.items[0]print(page.level)
import osfrom scale_gp import SGPClientclient = SGPClient( api_key=os.environ.get("SGP_API_KEY"), # This is the default and can be omitted)page = client.fine_tuning_jobs.events.list( "fine_tuning_job_id",)page = page.items[0]print(page.level)