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
)
file = client.beta.files.delete(
"file_id",
)
print(file.id){
"id": "<string>",
"deleted": true,
"object": "file"
}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
)
file = client.beta.files.delete(
"file_id",
)
print(file.id){
"id": "<string>",
"deleted": true,
"object": "file"
}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.