Files
ubicloud/views/inference/tabbar.erb
Benjamin Satzger c81ac9ab5a Rename InferenceToken to InferenceApiKey
As the term token in the context of generative AI refers to text/data units,
calling tokens that allow to access inference endpoints "inference token"
might be confusing. For that reason, we consistently refer to such tokens
as api keys.
2025-01-10 09:31:56 +01:00

11 lines
296 B
Plaintext

<%== render(
"components/tabbar",
locals: {
tabs: [
["Inference Endpoints", @project_data[:path] + "/inference-endpoint"],
["Inference API Keys", @project_data[:path] + "/inference-api-key"],
["Playground", @project_data[:path] + "/inference-playground"]
]
}
) %>