From 292688313b69dd295d57618c73e104d9899ad6fd Mon Sep 17 00:00:00 2001 From: Andrey Nering Date: Tue, 20 Jan 2026 13:38:06 -0300 Subject: [PATCH 1/2] docs(readme): remove link to site that is offline (#1926) --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 6a57c7934d0714cd4e0ae3f30fab108d03196b98..8caf83d4562c4afbd72f87487548792b337da419 100644 --- a/README.md +++ b/README.md @@ -735,8 +735,8 @@ Or by setting the following in your config: } ``` -Crush also respects the [`DO_NOT_TRACK`](https://consoledonottrack.com) -convention which can be enabled via `export DO_NOT_TRACK=1`. +Crush also respects the `DO_NOT_TRACK` convention which can be enabled via +`export DO_NOT_TRACK=1`. ## Contributing From 077706036c3a6dc502d7f5d30f2bc77ad1b4d733 Mon Sep 17 00:00:00 2001 From: Carlos Alexandro Becker Date: Tue, 20 Jan 2026 15:21:10 -0300 Subject: [PATCH 2/2] fix: recent models dont go into the schema (#1892) Signed-off-by: Carlos Alexandro Becker --- internal/config/config.go | 3 ++- schema.json | 10 ---------- 2 files changed, 2 insertions(+), 11 deletions(-) diff --git a/internal/config/config.go b/internal/config/config.go index 2c414e3e9e35d6f232e00762f50aca1066aca321..dcff778d7cdc79494dfcbd54071fd3f2dff7cfc8 100644 --- a/internal/config/config.go +++ b/internal/config/config.go @@ -359,8 +359,9 @@ type Config struct { // We currently only support large/small as values here. Models map[SelectedModelType]SelectedModel `json:"models,omitempty" jsonschema:"description=Model configurations for different model types,example={\"large\":{\"model\":\"gpt-4o\",\"provider\":\"openai\"}}"` + // Recently used models stored in the data directory config. - RecentModels map[SelectedModelType][]SelectedModel `json:"recent_models,omitempty" jsonschema:"description=Recently used models sorted by most recent first"` + RecentModels map[SelectedModelType][]SelectedModel `json:"recent_models,omitempty" jsonschema:"-"` // The providers that are configured Providers *csync.Map[string, ProviderConfig] `json:"providers,omitempty" jsonschema:"description=AI provider configurations"` diff --git a/schema.json b/schema.json index d92c398cc84704e69975f501c5f96e26ebfa7d1e..6eeaa40c1865ebb5e46f70964f4eba69cf47013e 100644 --- a/schema.json +++ b/schema.json @@ -63,16 +63,6 @@ "type": "object", "description": "Model configurations for different model types" }, - "recent_models": { - "additionalProperties": { - "items": { - "$ref": "#/$defs/SelectedModel" - }, - "type": "array" - }, - "type": "object", - "description": "Recently used models sorted by most recent first" - }, "providers": { "additionalProperties": { "$ref": "#/$defs/ProviderConfig"