GET
/
cloud
/
v3
/
inference
/
applications
/
catalog
/
{application_name}
Python
from gcore import Gcore

client = Gcore(
    api_key="My API Key",
)
inference_application_template = client.cloud.inference.applications.templates.get(
    "26f1kl-.n.71",
)
print(inference_application_template.components)
{
  "components": {},
  "cover_url": "https://cdn.example.com",
  "description": "This is a demo application",
  "display_name": "Llama-3.2-1B-Instruct",
  "name": "demo-app",
  "readme": "Detailed documentation",
  "tags": {
    "category": "Model",
    "model_docs_endpoint": "/docs",
    "model_inference_engine": "vllm",
    "model_owner": "Meta",
    "model_type": "Text Generation"
  }
}

Authorizations

Authorization
string
header
required

API key for authentication. Make sure to include the word apikey, followed by a single space and then your token. Example: apikey 1234$abcdef

Path Parameters

application_name
string
required

Name of application in catalog

Response

200 - application/json

OK

components
object
required

Configurable components of the application

cover_url
string
required

URL to the application's cover image

Examples:

"https://cdn.example.com"

description
string
required

Brief overview of the application

Examples:

"This is a demo application"

display_name
string
required

Human-readable name of the application

Examples:

"Llama-3.2-1B-Instruct"

name
string
required

Unique application identifier in the catalog

Examples:

"demo-app"

readme
string
required

Detailed documentation or instructions

Examples:

"Detailed documentation"

tags
object
required

Categorization key-value pairs

Examples:
{
"category": "Model",
"model_docs_endpoint": "/docs",
"model_inference_engine": "vllm",
"model_owner": "Meta",
"model_type": "Text Generation"
}