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
)
application_schema = client.application_schemas.retrieve(
version="OFFLINE",
)
print(application_schema){}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
)
application_schema = client.application_schemas.retrieve(
version="OFFLINE",
)
print(application_schema){}An enum representing the version states of an application and its nodes' schemas. Attributes: V0: The initial version of an application schema. AGENTS_SERVICE: Application schema references egp_services definition. OFFLINE: Application schema for applications that do not run on SGP directly.
OFFLINE, V0, AGENTS_SERVICE Successful Response
Show child attributes