From 5403d9a8e5d9f1c4e2217b14f3a4c1af2351d07f Mon Sep 17 00:00:00 2001 From: tikikun Date: Fri, 1 Dec 2023 14:39:00 +0700 Subject: [PATCH] docs: change to correct naming of engine and model params --- docs/docs/specs/engineering/models.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/docs/specs/engineering/models.md b/docs/docs/specs/engineering/models.md index c47a62bab..283c8e37e 100644 --- a/docs/docs/specs/engineering/models.md +++ b/docs/docs/specs/engineering/models.md @@ -64,13 +64,13 @@ Here's a standard example `model.json` for a GGUF model. "description": null, // Defaults to null "state": enum[null, "downloading", "ready", "starting", "stopping", ...] "format": "ggufv3", // Defaults to "ggufv3" -"settings": { // Models are initialized with settings +"engine_parameters": { // Engine "ctx_len": 2048, "ngl": 100, "embedding": true, "n_parallel": 4, }, -"parameters": { // Models are called parameters +"model_parameters": { // Models are called parameters "stream": true, "max_tokens": 2048, "stop": [""], // This usually can be left blank, only used with specific need from model author