import os
from scale_gp import SGPClient
client = 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)[
{
"message": "<string>",
"level": "<string>",
"timestamp": 123
}
]import os
from scale_gp import SGPClient
client = 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)[
{
"message": "<string>",
"level": "<string>",
"timestamp": 123
}
]Documentation Index
Fetch the complete documentation index at: https://docs.gp.scale.com/llms.txt
Use this file to discover all available pages before exploring further.