import os
from gcore import Gcore
client = Gcore(
api_key=os.environ.get("GCORE_API_KEY"), # This is the default and can be omitted
)
inference_secret = client.cloud.inference.secrets.get(
secret_name="aws-dev",
project_id=1,
)
print(inference_secret.data)
import os
from gcore import Gcore
client = Gcore(
api_key=os.environ.get("GCORE_API_KEY"), # This is the default and can be omitted
)
inference_secret = client.cloud.inference.secrets.get(
secret_name="aws-dev",
project_id=1,
)
print(inference_secret.data)