mirror of
https://github.com/patriceckhart/zot.git
synced 2026-06-27 05:46:34 +02:00
Single Go module, four top-level packages under packages/. Import
paths become github.com/patriceckhart/zot/packages/<name>; downstream
consumers can depend on individual packages without pulling the rest.
Layout:
packages/provider/ LLM clients + catalog
packages/provider/auth/ credential store + OAuth + login server
packages/core/ agent loop, sessions, cost
packages/tui/ terminal toolkit + chat view
packages/agent/ CLI wiring, system prompt
extensions/ extproto/ modes/ tools/ skills/ swarm/
sdk/ (was pkg/zotcore, package renamed zotcore -> sdk)
ext/ (was pkg/zotext, package renamed zotext -> ext)
internal/ and pkg/ removed. The internal/assets logo moved into
packages/provider/auth/assets.
Public Go SDK identifiers renamed:
pkg/zotcore (package zotcore) -> packages/agent/sdk (package sdk)
pkg/zotext (package zotext) -> packages/agent/ext (package ext)
This breaks Go-based extensions and embedders; the JSON wire protocol
for extensions and RPC is unchanged, so non-Go extensions, already-
built extension binaries, and zot rpc consumers are unaffected.
Docs, examples, and the built-in write-zot-extension skill updated
for the new paths and identifiers. Shadow-bug fixes in code samples
(ext := ext.New -> e := ext.New).
197 lines
5.6 KiB
Go
197 lines
5.6 KiB
Go
package provider
|
|
|
|
import (
|
|
"encoding/json"
|
|
"fmt"
|
|
"os"
|
|
)
|
|
|
|
// UserModelsFile is the JSON format for user-defined models.
|
|
// Place a models.json in $ZOT_HOME to add models that aren't in the
|
|
// baked-in catalog or to override catalog entries.
|
|
//
|
|
// Example:
|
|
//
|
|
// {
|
|
// "providers": {
|
|
// "openai": {
|
|
// "models": [
|
|
// {
|
|
// "id": "gpt-5.5",
|
|
// "name": "GPT-5.5",
|
|
// "reasoning": true,
|
|
// "contextWindow": 400000,
|
|
// "maxTokens": 128000,
|
|
// "priceInput": 2.50,
|
|
// "priceOutput": 15.00,
|
|
// "priceCacheRead": 0.25
|
|
// }
|
|
// ]
|
|
// }
|
|
// }
|
|
// }
|
|
type UserModelsFile struct {
|
|
Providers map[string]UserProvider `json:"providers"`
|
|
}
|
|
|
|
// UserProvider groups models under a provider key.
|
|
type UserProvider struct {
|
|
Models []UserModel `json:"models"`
|
|
}
|
|
|
|
// UserModel is a single model entry in the user's models.json.
|
|
type UserModel struct {
|
|
ID string `json:"id"`
|
|
Name string `json:"name"`
|
|
Reasoning bool `json:"reasoning"`
|
|
ContextWindow int `json:"contextWindow"`
|
|
MaxTokens int `json:"maxTokens"`
|
|
PriceInput float64 `json:"priceInput"`
|
|
PriceOutput float64 `json:"priceOutput"`
|
|
PriceCacheRead float64 `json:"priceCacheRead"`
|
|
PriceCacheWrite float64 `json:"priceCacheWrite"`
|
|
BaseURL string `json:"baseUrl,omitempty"`
|
|
Input []string `json:"input"` // informational only
|
|
API string `json:"api"` // informational only
|
|
}
|
|
|
|
// LoadUserModels reads a models.json file and returns the models
|
|
// converted to the internal Model type. Returns nil on any error
|
|
// (missing file, bad JSON, etc.) so the caller can treat it as
|
|
// optional without error handling.
|
|
func LoadUserModels(path string) []Model {
|
|
models, _ := LoadUserModelsWithWarnings(path)
|
|
return models
|
|
}
|
|
|
|
// LoadUserModelsWithWarnings is like LoadUserModels but also returns
|
|
// human-readable warnings about every recoverable issue it found in
|
|
// the file (unknown provider id, empty model id, malformed JSON for a
|
|
// single provider block, etc.). The caller is responsible for
|
|
// surfacing the warnings; the file is never rejected wholesale unless
|
|
// the top-level JSON itself fails to parse.
|
|
func LoadUserModelsWithWarnings(path string) ([]Model, []string) {
|
|
var warnings []string
|
|
data, err := os.ReadFile(path)
|
|
if err != nil {
|
|
return nil, nil
|
|
}
|
|
var file UserModelsFile
|
|
if err := json.Unmarshal(data, &file); err != nil {
|
|
warnings = append(warnings, fmt.Sprintf("models.json: parse error: %v (file ignored)", err))
|
|
return nil, warnings
|
|
}
|
|
|
|
var out []Model
|
|
for providerName, prov := range file.Providers {
|
|
if providerName == "" {
|
|
warnings = append(warnings, "models.json: empty provider key skipped")
|
|
continue
|
|
}
|
|
// Normalize legacy transport aliases to their provider names.
|
|
normalized := providerName
|
|
switch providerName {
|
|
case "openai-responses":
|
|
normalized = "openai"
|
|
case "anthropic-messages":
|
|
normalized = "anthropic"
|
|
case "moonshot", "moonshot-ai", "kimi-code":
|
|
normalized = "kimi"
|
|
case "deepseek-chat", "deepseek-ai":
|
|
normalized = "deepseek"
|
|
}
|
|
|
|
for i, um := range prov.Models {
|
|
if um.ID == "" {
|
|
warnings = append(warnings, fmt.Sprintf("models.json: provider %q entry #%d has empty id; skipped", providerName, i))
|
|
continue
|
|
}
|
|
if um.ContextWindow < 0 || um.MaxTokens < 0 {
|
|
warnings = append(warnings, fmt.Sprintf("models.json: %s/%s has negative contextWindow/maxTokens; clamped to 0", normalized, um.ID))
|
|
if um.ContextWindow < 0 {
|
|
um.ContextWindow = 0
|
|
}
|
|
if um.MaxTokens < 0 {
|
|
um.MaxTokens = 0
|
|
}
|
|
}
|
|
m := Model{
|
|
Provider: normalized,
|
|
ID: um.ID,
|
|
DisplayName: um.Name,
|
|
ContextWindow: um.ContextWindow,
|
|
MaxOutput: um.MaxTokens,
|
|
Reasoning: um.Reasoning,
|
|
PriceInput: um.PriceInput,
|
|
PriceOutput: um.PriceOutput,
|
|
PriceCacheRead: um.PriceCacheRead,
|
|
PriceCacheWrite: um.PriceCacheWrite,
|
|
BaseURL: um.BaseURL,
|
|
Source: "user",
|
|
}
|
|
if m.DisplayName == "" {
|
|
m.DisplayName = m.ID
|
|
}
|
|
out = append(out, m)
|
|
}
|
|
}
|
|
return out, warnings
|
|
}
|
|
|
|
// SetUserModels merges user-defined models into the active catalog.
|
|
// User models take precedence over both the baked-in catalog and
|
|
// live-discovered models.
|
|
func SetUserModels(models []Model) {
|
|
if len(models) == 0 {
|
|
return
|
|
}
|
|
activeMu.Lock()
|
|
defer activeMu.Unlock()
|
|
|
|
// Build index of current active models.
|
|
byKey := func(p, id string) string { return p + "/" + id }
|
|
index := make(map[string]int, len(active))
|
|
for i, m := range active {
|
|
index[byKey(m.Provider, m.ID)] = i
|
|
}
|
|
|
|
for _, um := range models {
|
|
k := byKey(um.Provider, um.ID)
|
|
if idx, ok := index[k]; ok {
|
|
// Override existing entry but keep prices from user if
|
|
// they provided them, otherwise keep catalog prices.
|
|
existing := active[idx]
|
|
if um.PriceInput > 0 {
|
|
existing.PriceInput = um.PriceInput
|
|
}
|
|
if um.PriceOutput > 0 {
|
|
existing.PriceOutput = um.PriceOutput
|
|
}
|
|
if um.PriceCacheRead > 0 {
|
|
existing.PriceCacheRead = um.PriceCacheRead
|
|
}
|
|
if um.PriceCacheWrite > 0 {
|
|
existing.PriceCacheWrite = um.PriceCacheWrite
|
|
}
|
|
if um.DisplayName != "" {
|
|
existing.DisplayName = um.DisplayName
|
|
}
|
|
if um.ContextWindow > 0 {
|
|
existing.ContextWindow = um.ContextWindow
|
|
}
|
|
if um.MaxOutput > 0 {
|
|
existing.MaxOutput = um.MaxOutput
|
|
}
|
|
existing.Reasoning = um.Reasoning
|
|
if um.BaseURL != "" {
|
|
existing.BaseURL = um.BaseURL
|
|
}
|
|
existing.Source = "user"
|
|
existing.Speculative = false
|
|
active[idx] = existing
|
|
} else {
|
|
// New model not in catalog.
|
|
active = append(active, um)
|
|
}
|
|
}
|
|
}
|