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 diff --git a/internal/config/config.go b/internal/config/config.go index e6477ec807494007cb4eada285035e34a38d88ef..f1dd94655a76bded8f5e9071b543fb09f8600e02 100644 --- a/internal/config/config.go +++ b/internal/config/config.go @@ -364,8 +364,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"