p = ze.get_prompt(
"support-triage",
version=None, # default: None (int | None) - if set, overrides tag
tag=None, # default: None (str | None) → SDK default tag ("production" in prod else "latest")
fallback=None, # default: None (str | None) - local content if fetch fails / 404
variables=None, # default: None (dict | None) - {name: value} for {{name}} templating
task_name=None, # default: None (str | None) - associate content with a tuning task
render=True, # default: True (bool) - render template with variables
missing="error", # default: "error" ("error" | "leave") - behavior for missing variables
use_cache=True, # default: True (bool) - in-process TTL cache for server results
timeout=None, # default: None (float | None) → uses client default timeout (10.0s)
)
# Returned object
# p.content -> str (prompt text, possibly rendered/decorated)
# p.version -> int | None
# p.version_id -> str | None
# p.tag -> str | None
# p.is_latest -> bool
# p.metadata -> dict
# p.source -> "server" | "fallback"