mirror of
https://github.com/trustgraph-ai/trustgraph.git
synced 2026-07-03 15:01:00 +02:00
git-subtree-dir: ai-context/trustgraph-templates git-subtree-split: 42a5fd1b678f32be378062e30451e2052ccb95dd
18 lines
436 B
Jsonnet
18 lines
436 B
Jsonnet
// vLLM Model Definitions
|
|
// Defines available models and their configurations for vLLM
|
|
// vLLM works with any HuggingFace model. We have to use the model
|
|
// vLLM was initialised with
|
|
|
|
{
|
|
"type": "string",
|
|
"description": "LLM model to use",
|
|
"default": "model",
|
|
"enum": [
|
|
// Llama 3.1 models
|
|
{
|
|
id: "model",
|
|
description: "Pre-defined model"
|
|
},
|
|
],
|
|
"required": true
|
|
}
|