* feat: replace provider config with credential-based system (#477) Introduce a new credential management system replacing the old ProviderConfig singleton and standalone Models page. Each credential stores encrypted API keys and provider-specific configuration with full CRUD support via a unified settings UI. Backend: - Add Credential domain model with encrypted API key storage - Add credentials API router (CRUD, discovery, registration, testing) - Add encryption utilities for secure key storage - Add key_provider for DB-first env-var fallback provisioning - Add connection tester and model discovery services - Integrate ModelManager with credential-based config - Add provider name normalization for Esperanto compatibility - Add database migrations 11-12 for credential schema Frontend: - Rewrite settings/api-keys page with credential management UI - Add model discovery dialog with search and custom model support - Add compact default model assignments (primary/advanced layout) - Add inline model testing and credential connection testing - Add env-var migration banner - Update navigation to unified settings page - Remove standalone models page and old settings components i18n: - Update all 7 locale files with credential and model management keys Closes #477 Co-Authored-By: JFMD <git@jfmd.us> Co-Authored-By: OraCatQAQ <570768706@qq.com> * fix: address PR #540 review comments - Fix docs referencing removed Models page - Fix error-handler returning raw messages instead of i18n keys - Fix auth.py misleading docstring and missing no-password guard - Fix connection_tester using wrong env var for openai_compatible - Add provision_provider_keys before model discovery/sync - Update CLAUDE.md to reflect credential-based system - Fix missing closing brace in api-keys page useEffect * fix: add logging to credential migration and surface errors in UI - Add comprehensive logging to migrate-from-env and migrate-from-provider-config endpoints (start, per-provider progress, success/failure with stack traces, final summary) - Fix frontend migration hooks ignoring errors array from response - Show error toast when migration fails instead of "nothing to migrate" - Invalidate status/envStatus queries after migration so banner updates * docs: update CLAUDE.md files for credential system Replace stale ProviderConfig and /api-keys/ references across 8 CLAUDE.md files to reflect the new Credential-based system from PR #540. * docs: update user documentation for credential-based system Replace env var API key instructions with Settings UI credential workflow across all user-facing documentation. The new flow is: set OPEN_NOTEBOOK_ENCRYPTION_KEY → start services → add credential in Settings UI → test → discover models → register. - Rewrite ai-providers.md, api-configuration.md, environment-reference.md - Update all quick-start guides and installation docs - Update ollama.md, openai-compatible.md, local-tts/stt networking sections - Update reverse-proxy.md, development-setup.md, security.md - Fix broken links to non-existent docs/deployment/ paths - Add credentials endpoints to api-reference.md - Move all API key env vars to deprecated/legacy sections * chore: bump version to 1.7.0-rc1 Release candidate for credential-based provider management system. * fix: initialize provider before try block in test_credential Prevents UnboundLocalError when Credential.get() throws (e.g., invalid credential_id) before provider is assigned. * fix: reorder down migration to drop index before table Removes duplicate REMOVE FIELD statement and reorders so the index is dropped before the table, preventing rollback failures. * refactor: simplify encryption key to always derive via SHA-256 Remove the dual code path in _ensure_fernet_key() that detected native Fernet keys. Since the credential system is new, always deriving via SHA-256 removes unnecessary complexity. Also removes the generate_key() function and Fernet.generate_key() references from docs. * fix: correct mock patch targets in embedding tests and URL validation Fix embedding tests patching wrong module path for model_manager (was targeting open_notebook.utils.embedding.model_manager but it's imported locally from open_notebook.ai.models). Also fix URL validation to allow unresolvable hostnames since they may be valid in the deployment environment (e.g., Azure endpoints, internal DNS). * feat: add global setup banner for encryption and migration status Show a persistent banner in AppShell when encryption key is missing (red) or env var API keys can be migrated (amber), so users see these prompts on every page instead of only on Settings > API Keys. Includes a docs link for the encryption banner and i18n support across all 7 locales. * docs: several improvements to docker-compose e env examples * Update README.md Co-authored-by: cubic-dev-ai[bot] <191113872+cubic-dev-ai[bot]@users.noreply.github.com> * docs: fix env var format in README and update model setup instructions Align the encryption key snippet in README Step 2 with the list format used in the compose file. Replace deprecated "Settings → Models" instructions with credential-based Discover Models flow. * fix: address credential system review issues - Fix SSRF bypass via IPv4-mapped IPv6 addresses (::ffff:169.254.x.x) - Fix TTS connection test missing config parameter - Add Azure-specific model discovery using api-key auth header - Add Vertex static model list for credential-based discovery - Fix PROVIDER_DISCOVERY_FUNCTIONS incorrect azure/vertex mapping - Extract business logic to api/credentials_service.py (service layer) - Move credential Pydantic schemas to api/models.py - Update tests to use new service imports and ValueError assertions * fix: sanitize error responses and migrate key_provider to Credential - Replace raw exception messages in all credential router 500 responses with generic error strings (internal details logged server-side only) - Refactor key_provider.py to use Credential.get_by_provider() instead of deprecated ProviderConfig.get_instance() - Remove unused functions (get_provider_configs, get_default_api_key, get_provider_config) that were dead code --------- Co-authored-by: JFMD <git@jfmd.us> Co-authored-by: OraCatQAQ <570768706@qq.com>
770 lines
28 KiB
Python
770 lines
28 KiB
Python
import os
|
|
import traceback
|
|
from typing import Dict, List, Optional
|
|
|
|
from esperanto import AIFactory
|
|
from fastapi import APIRouter, HTTPException, Query
|
|
from loguru import logger
|
|
from pydantic import BaseModel
|
|
|
|
from api.models import (
|
|
DefaultModelsResponse,
|
|
ModelCreate,
|
|
ModelResponse,
|
|
ProviderAvailabilityResponse,
|
|
)
|
|
from open_notebook.domain.credential import Credential
|
|
from open_notebook.ai.connection_tester import test_individual_model
|
|
from open_notebook.ai.key_provider import provision_provider_keys
|
|
from open_notebook.ai.model_discovery import (
|
|
discover_provider_models,
|
|
get_provider_model_count,
|
|
sync_all_providers,
|
|
sync_provider_models,
|
|
)
|
|
from open_notebook.ai.models import DefaultModels, Model
|
|
from open_notebook.exceptions import InvalidInputError
|
|
|
|
router = APIRouter()
|
|
|
|
|
|
# =============================================================================
|
|
# Model Discovery Response Models
|
|
# =============================================================================
|
|
|
|
|
|
class DiscoveredModelResponse(BaseModel):
|
|
"""Response model for a discovered model."""
|
|
|
|
name: str
|
|
provider: str
|
|
model_type: str
|
|
description: Optional[str] = None
|
|
|
|
|
|
class ProviderSyncResponse(BaseModel):
|
|
"""Response model for provider sync operation."""
|
|
|
|
provider: str
|
|
discovered: int
|
|
new: int
|
|
existing: int
|
|
|
|
|
|
class AllProvidersSyncResponse(BaseModel):
|
|
"""Response model for syncing all providers."""
|
|
|
|
results: Dict[str, ProviderSyncResponse]
|
|
total_discovered: int
|
|
total_new: int
|
|
|
|
|
|
class ProviderModelCountResponse(BaseModel):
|
|
"""Response model for provider model counts."""
|
|
|
|
provider: str
|
|
counts: Dict[str, int]
|
|
total: int
|
|
|
|
|
|
class AutoAssignResult(BaseModel):
|
|
"""Response model for auto-assign operation."""
|
|
|
|
assigned: Dict[str, str] # slot_name -> model_id
|
|
skipped: List[str] # slots already assigned
|
|
missing: List[str] # slots with no available models
|
|
|
|
|
|
class ModelTestResponse(BaseModel):
|
|
"""Response model for individual model test."""
|
|
|
|
success: bool
|
|
message: str
|
|
details: Optional[str] = None
|
|
|
|
|
|
# Provider priority for auto-assignment (higher priority first)
|
|
PROVIDER_PRIORITY = [
|
|
"openai",
|
|
"anthropic",
|
|
"google",
|
|
"mistral",
|
|
"groq",
|
|
"deepseek",
|
|
"xai",
|
|
"openrouter",
|
|
"ollama",
|
|
"azure",
|
|
"openai_compatible",
|
|
]
|
|
|
|
# Model preference patterns (preferred models within each provider)
|
|
MODEL_PREFERENCES = {
|
|
"openai": ["gpt-4o", "gpt-4", "gpt-3.5-turbo"],
|
|
"anthropic": ["claude-3-5-sonnet", "claude-3-opus", "claude-3-sonnet"],
|
|
"google": ["gemini-2.0", "gemini-1.5-pro", "gemini-pro"],
|
|
"mistral": ["mistral-large", "mixtral"],
|
|
"groq": ["llama-3.3", "llama-3.1", "mixtral"],
|
|
}
|
|
|
|
|
|
async def _check_provider_has_credential(provider: str) -> bool:
|
|
"""Check if a provider has any credentials configured in the database."""
|
|
try:
|
|
credentials = await Credential.get_by_provider(provider)
|
|
return len(credentials) > 0
|
|
except Exception:
|
|
pass
|
|
return False
|
|
|
|
|
|
def _check_azure_support(mode: str) -> bool:
|
|
"""
|
|
Check if Azure OpenAI provider is available for a specific mode.
|
|
|
|
Args:
|
|
mode: One of 'LLM', 'EMBEDDING', 'STT', 'TTS'
|
|
|
|
Returns:
|
|
bool: True if either generic or mode-specific env vars are set
|
|
"""
|
|
# Check generic configuration (applies to all modes)
|
|
generic = (
|
|
os.environ.get("AZURE_OPENAI_API_KEY") is not None
|
|
and os.environ.get("AZURE_OPENAI_ENDPOINT") is not None
|
|
and os.environ.get("AZURE_OPENAI_API_VERSION") is not None
|
|
)
|
|
|
|
# Check mode-specific configuration (takes precedence)
|
|
specific = (
|
|
os.environ.get(f"AZURE_OPENAI_API_KEY_{mode}") is not None
|
|
and os.environ.get(f"AZURE_OPENAI_ENDPOINT_{mode}") is not None
|
|
and os.environ.get(f"AZURE_OPENAI_API_VERSION_{mode}") is not None
|
|
)
|
|
|
|
return generic or specific
|
|
|
|
|
|
def _check_openai_compatible_support(mode: str) -> bool:
|
|
"""
|
|
Check if OpenAI-compatible provider is available for a specific mode.
|
|
|
|
Args:
|
|
mode: One of 'LLM', 'EMBEDDING', 'STT', 'TTS'
|
|
|
|
Returns:
|
|
bool: True if either generic or mode-specific env var is set
|
|
"""
|
|
generic = os.environ.get("OPENAI_COMPATIBLE_BASE_URL") is not None
|
|
specific = os.environ.get(f"OPENAI_COMPATIBLE_BASE_URL_{mode}") is not None
|
|
generic_key = os.environ.get("OPENAI_COMPATIBLE_API_KEY") is not None
|
|
specific_key = os.environ.get(f"OPENAI_COMPATIBLE_API_KEY_{mode}") is not None
|
|
return generic or specific or generic_key or specific_key
|
|
|
|
|
|
@router.get("/models", response_model=List[ModelResponse])
|
|
async def get_models(
|
|
type: Optional[str] = Query(None, description="Filter by model type"),
|
|
):
|
|
"""Get all configured models with optional type filtering."""
|
|
try:
|
|
if type:
|
|
models = await Model.get_models_by_type(type)
|
|
else:
|
|
models = await Model.get_all()
|
|
|
|
return [
|
|
ModelResponse(
|
|
id=model.id,
|
|
name=model.name,
|
|
provider=model.provider,
|
|
type=model.type,
|
|
credential=model.credential,
|
|
created=str(model.created),
|
|
updated=str(model.updated),
|
|
)
|
|
for model in models
|
|
]
|
|
except Exception as e:
|
|
logger.error(f"Error fetching models: {str(e)}")
|
|
raise HTTPException(status_code=500, detail=f"Error fetching models: {str(e)}")
|
|
|
|
|
|
@router.post("/models", response_model=ModelResponse)
|
|
async def create_model(model_data: ModelCreate):
|
|
"""Create a new model configuration."""
|
|
try:
|
|
# Validate model type
|
|
valid_types = ["language", "embedding", "text_to_speech", "speech_to_text"]
|
|
if model_data.type not in valid_types:
|
|
raise HTTPException(
|
|
status_code=400,
|
|
detail=f"Invalid model type. Must be one of: {valid_types}",
|
|
)
|
|
|
|
# Check for duplicate model name under the same provider and type (case-insensitive)
|
|
from open_notebook.database.repository import repo_query
|
|
|
|
existing = await repo_query(
|
|
"SELECT * FROM model WHERE string::lowercase(provider) = $provider AND string::lowercase(name) = $name AND string::lowercase(type) = $type LIMIT 1",
|
|
{
|
|
"provider": model_data.provider.lower(),
|
|
"name": model_data.name.lower(),
|
|
"type": model_data.type.lower(),
|
|
},
|
|
)
|
|
if existing:
|
|
raise HTTPException(
|
|
status_code=400,
|
|
detail=f"Model '{model_data.name}' already exists for provider '{model_data.provider}' with type '{model_data.type}'",
|
|
)
|
|
|
|
new_model = Model(
|
|
name=model_data.name,
|
|
provider=model_data.provider,
|
|
type=model_data.type,
|
|
credential=model_data.credential,
|
|
)
|
|
await new_model.save()
|
|
|
|
return ModelResponse(
|
|
id=new_model.id or "",
|
|
name=new_model.name,
|
|
provider=new_model.provider,
|
|
type=new_model.type,
|
|
credential=new_model.credential,
|
|
created=str(new_model.created),
|
|
updated=str(new_model.updated),
|
|
)
|
|
except HTTPException:
|
|
raise
|
|
except InvalidInputError as e:
|
|
raise HTTPException(status_code=400, detail=str(e))
|
|
except Exception as e:
|
|
logger.error(f"Error creating model: {str(e)}")
|
|
raise HTTPException(status_code=500, detail=f"Error creating model: {str(e)}")
|
|
|
|
|
|
@router.delete("/models/{model_id}")
|
|
async def delete_model(model_id: str):
|
|
"""Delete a model configuration."""
|
|
try:
|
|
model = await Model.get(model_id)
|
|
if not model:
|
|
raise HTTPException(status_code=404, detail="Model not found")
|
|
|
|
await model.delete()
|
|
|
|
return {"message": "Model deleted successfully"}
|
|
except HTTPException:
|
|
raise
|
|
except Exception as e:
|
|
logger.error(f"Error deleting model {model_id}: {str(e)}")
|
|
raise HTTPException(status_code=500, detail=f"Error deleting model: {str(e)}")
|
|
|
|
|
|
@router.post("/models/{model_id}/test", response_model=ModelTestResponse)
|
|
async def test_model(model_id: str):
|
|
"""Test if a specific model is correctly configured and functional."""
|
|
try:
|
|
model = await Model.get(model_id)
|
|
if not model:
|
|
raise HTTPException(status_code=404, detail="Model not found")
|
|
except HTTPException:
|
|
raise
|
|
except Exception:
|
|
raise HTTPException(status_code=404, detail="Model not found")
|
|
|
|
try:
|
|
success, message = await test_individual_model(model)
|
|
return ModelTestResponse(success=success, message=message)
|
|
except Exception as e:
|
|
logger.error(f"Error testing model {model_id}: {traceback.format_exc()}")
|
|
return ModelTestResponse(
|
|
success=False,
|
|
message=str(e)[:200],
|
|
)
|
|
|
|
|
|
@router.get("/models/defaults", response_model=DefaultModelsResponse)
|
|
async def get_default_models():
|
|
"""Get default model assignments."""
|
|
try:
|
|
defaults = await DefaultModels.get_instance()
|
|
|
|
return DefaultModelsResponse(
|
|
default_chat_model=defaults.default_chat_model, # type: ignore[attr-defined]
|
|
default_transformation_model=defaults.default_transformation_model, # type: ignore[attr-defined]
|
|
large_context_model=defaults.large_context_model, # type: ignore[attr-defined]
|
|
default_text_to_speech_model=defaults.default_text_to_speech_model, # type: ignore[attr-defined]
|
|
default_speech_to_text_model=defaults.default_speech_to_text_model, # type: ignore[attr-defined]
|
|
default_embedding_model=defaults.default_embedding_model, # type: ignore[attr-defined]
|
|
default_tools_model=defaults.default_tools_model, # type: ignore[attr-defined]
|
|
)
|
|
except Exception as e:
|
|
logger.error(f"Error fetching default models: {str(e)}")
|
|
raise HTTPException(
|
|
status_code=500, detail=f"Error fetching default models: {str(e)}"
|
|
)
|
|
|
|
|
|
@router.put("/models/defaults", response_model=DefaultModelsResponse)
|
|
async def update_default_models(defaults_data: DefaultModelsResponse):
|
|
"""Update default model assignments."""
|
|
try:
|
|
defaults = await DefaultModels.get_instance()
|
|
|
|
# Update only provided fields
|
|
if defaults_data.default_chat_model is not None:
|
|
defaults.default_chat_model = defaults_data.default_chat_model # type: ignore[attr-defined]
|
|
if defaults_data.default_transformation_model is not None:
|
|
defaults.default_transformation_model = (
|
|
defaults_data.default_transformation_model
|
|
) # type: ignore[attr-defined]
|
|
if defaults_data.large_context_model is not None:
|
|
defaults.large_context_model = defaults_data.large_context_model # type: ignore[attr-defined]
|
|
if defaults_data.default_text_to_speech_model is not None:
|
|
defaults.default_text_to_speech_model = (
|
|
defaults_data.default_text_to_speech_model
|
|
) # type: ignore[attr-defined]
|
|
if defaults_data.default_speech_to_text_model is not None:
|
|
defaults.default_speech_to_text_model = (
|
|
defaults_data.default_speech_to_text_model
|
|
) # type: ignore[attr-defined]
|
|
if defaults_data.default_embedding_model is not None:
|
|
defaults.default_embedding_model = defaults_data.default_embedding_model # type: ignore[attr-defined]
|
|
if defaults_data.default_tools_model is not None:
|
|
defaults.default_tools_model = defaults_data.default_tools_model # type: ignore[attr-defined]
|
|
|
|
await defaults.update()
|
|
|
|
# No cache refresh needed - next access will fetch fresh data from DB
|
|
|
|
return DefaultModelsResponse(
|
|
default_chat_model=defaults.default_chat_model, # type: ignore[attr-defined]
|
|
default_transformation_model=defaults.default_transformation_model, # type: ignore[attr-defined]
|
|
large_context_model=defaults.large_context_model, # type: ignore[attr-defined]
|
|
default_text_to_speech_model=defaults.default_text_to_speech_model, # type: ignore[attr-defined]
|
|
default_speech_to_text_model=defaults.default_speech_to_text_model, # type: ignore[attr-defined]
|
|
default_embedding_model=defaults.default_embedding_model, # type: ignore[attr-defined]
|
|
default_tools_model=defaults.default_tools_model, # type: ignore[attr-defined]
|
|
)
|
|
except HTTPException:
|
|
raise
|
|
except Exception as e:
|
|
logger.error(f"Error updating default models: {str(e)}")
|
|
raise HTTPException(
|
|
status_code=500, detail=f"Error updating default models: {str(e)}"
|
|
)
|
|
|
|
|
|
@router.get("/models/providers", response_model=ProviderAvailabilityResponse)
|
|
async def get_provider_availability():
|
|
"""Get provider availability based on database config and environment variables."""
|
|
try:
|
|
# Check which providers have credentials in the database or env vars
|
|
# For each provider, check DB credentials first, then env vars as fallback
|
|
|
|
# Simple env var mapping for backward compatibility
|
|
env_var_map = {
|
|
"openai": "OPENAI_API_KEY",
|
|
"anthropic": "ANTHROPIC_API_KEY",
|
|
"google": "GOOGLE_API_KEY",
|
|
"groq": "GROQ_API_KEY",
|
|
"mistral": "MISTRAL_API_KEY",
|
|
"deepseek": "DEEPSEEK_API_KEY",
|
|
"xai": "XAI_API_KEY",
|
|
"openrouter": "OPENROUTER_API_KEY",
|
|
"voyage": "VOYAGE_API_KEY",
|
|
"elevenlabs": "ELEVENLABS_API_KEY",
|
|
"ollama": "OLLAMA_API_BASE",
|
|
}
|
|
|
|
provider_status = {}
|
|
|
|
# Check simple providers: credential in DB or env var
|
|
for provider, env_var in env_var_map.items():
|
|
has_cred = await _check_provider_has_credential(provider)
|
|
has_env = os.environ.get(env_var) is not None
|
|
provider_status[provider] = has_cred or has_env
|
|
|
|
# Google also supports GEMINI_API_KEY
|
|
if not provider_status.get("google"):
|
|
provider_status["google"] = os.environ.get("GEMINI_API_KEY") is not None
|
|
|
|
# Vertex: DB credential or env vars
|
|
provider_status["vertex"] = (
|
|
await _check_provider_has_credential("vertex")
|
|
or os.environ.get("VERTEX_PROJECT") is not None
|
|
)
|
|
|
|
# Azure: DB credential or env vars
|
|
provider_status["azure"] = (
|
|
await _check_provider_has_credential("azure")
|
|
or _check_azure_support("LLM")
|
|
or _check_azure_support("EMBEDDING")
|
|
or _check_azure_support("STT")
|
|
or _check_azure_support("TTS")
|
|
)
|
|
|
|
# OpenAI-compatible: DB credential or env vars
|
|
provider_status["openai-compatible"] = (
|
|
await _check_provider_has_credential("openai_compatible")
|
|
or _check_openai_compatible_support("LLM")
|
|
or _check_openai_compatible_support("EMBEDDING")
|
|
or _check_openai_compatible_support("STT")
|
|
or _check_openai_compatible_support("TTS")
|
|
)
|
|
|
|
available_providers = [k for k, v in provider_status.items() if v]
|
|
unavailable_providers = [k for k, v in provider_status.items() if not v]
|
|
|
|
# Get supported model types from Esperanto
|
|
esperanto_available = AIFactory.get_available_providers()
|
|
|
|
# Build supported types mapping only for available providers
|
|
supported_types: dict[str, list[str]] = {}
|
|
for provider in available_providers:
|
|
supported_types[provider] = []
|
|
|
|
# Map Esperanto model types to our environment variable modes
|
|
mode_mapping = {
|
|
"language": "LLM",
|
|
"embedding": "EMBEDDING",
|
|
"speech_to_text": "STT",
|
|
"text_to_speech": "TTS",
|
|
}
|
|
|
|
# Special handling for openai-compatible to check mode-specific availability
|
|
if provider == "openai-compatible":
|
|
has_db_cred = await _check_provider_has_credential("openai_compatible")
|
|
for model_type, mode in mode_mapping.items():
|
|
if (
|
|
model_type in esperanto_available
|
|
and provider in esperanto_available[model_type]
|
|
):
|
|
if has_db_cred or _check_openai_compatible_support(mode):
|
|
supported_types[provider].append(model_type)
|
|
# Special handling for azure to check mode-specific availability
|
|
elif provider == "azure":
|
|
has_db_cred = await _check_provider_has_credential("azure")
|
|
for model_type, mode in mode_mapping.items():
|
|
if (
|
|
model_type in esperanto_available
|
|
and provider in esperanto_available[model_type]
|
|
):
|
|
if has_db_cred or _check_azure_support(mode):
|
|
supported_types[provider].append(model_type)
|
|
else:
|
|
# Standard provider detection
|
|
for model_type, providers in esperanto_available.items():
|
|
if provider in providers:
|
|
supported_types[provider].append(model_type)
|
|
|
|
return ProviderAvailabilityResponse(
|
|
available=available_providers,
|
|
unavailable=unavailable_providers,
|
|
supported_types=supported_types,
|
|
)
|
|
except Exception as e:
|
|
logger.error(f"Error checking provider availability: {str(e)}")
|
|
raise HTTPException(
|
|
status_code=500, detail=f"Error checking provider availability: {str(e)}"
|
|
)
|
|
|
|
|
|
# =============================================================================
|
|
# Model Discovery Endpoints
|
|
# =============================================================================
|
|
|
|
|
|
@router.get(
|
|
"/models/discover/{provider}", response_model=List[DiscoveredModelResponse]
|
|
)
|
|
async def discover_models(provider: str):
|
|
"""
|
|
Discover available models from a provider without registering them.
|
|
|
|
This endpoint queries the provider's API to list available models
|
|
but does not save them to the database. Use the sync endpoint
|
|
to both discover and register models.
|
|
"""
|
|
try:
|
|
# Provision DB-stored credentials into env vars before discovery
|
|
await provision_provider_keys(provider)
|
|
discovered = await discover_provider_models(provider)
|
|
return [
|
|
DiscoveredModelResponse(
|
|
name=m.name,
|
|
provider=m.provider,
|
|
model_type=m.model_type,
|
|
description=m.description,
|
|
)
|
|
for m in discovered
|
|
]
|
|
except Exception as e:
|
|
logger.error(f"Error discovering models for {provider}: {str(e)}")
|
|
raise HTTPException(
|
|
status_code=500, detail="Error discovering models. Check server logs for details."
|
|
)
|
|
|
|
|
|
@router.post("/models/sync/{provider}", response_model=ProviderSyncResponse)
|
|
async def sync_models(provider: str):
|
|
"""
|
|
Sync models for a specific provider.
|
|
|
|
Discovers available models from the provider's API and registers
|
|
any new models in the database. Existing models are skipped.
|
|
|
|
Returns counts of discovered, new, and existing models.
|
|
"""
|
|
try:
|
|
# Provision DB-stored credentials into env vars before discovery
|
|
await provision_provider_keys(provider)
|
|
discovered, new, existing = await sync_provider_models(
|
|
provider, auto_register=True
|
|
)
|
|
return ProviderSyncResponse(
|
|
provider=provider,
|
|
discovered=discovered,
|
|
new=new,
|
|
existing=existing,
|
|
)
|
|
except Exception as e:
|
|
logger.error(f"Error syncing models for {provider}: {str(e)}")
|
|
raise HTTPException(status_code=500, detail="Error syncing models. Check server logs for details.")
|
|
|
|
|
|
@router.post("/models/sync", response_model=AllProvidersSyncResponse)
|
|
async def sync_all_models():
|
|
"""
|
|
Sync models for all configured providers.
|
|
|
|
Discovers and registers models from all providers that have
|
|
valid API keys configured. This is useful for initial setup
|
|
or periodic refresh of available models.
|
|
"""
|
|
try:
|
|
results = await sync_all_providers()
|
|
|
|
response_results = {}
|
|
total_discovered = 0
|
|
total_new = 0
|
|
|
|
for provider, (discovered, new, existing) in results.items():
|
|
response_results[provider] = ProviderSyncResponse(
|
|
provider=provider,
|
|
discovered=discovered,
|
|
new=new,
|
|
existing=existing,
|
|
)
|
|
total_discovered += discovered
|
|
total_new += new
|
|
|
|
return AllProvidersSyncResponse(
|
|
results=response_results,
|
|
total_discovered=total_discovered,
|
|
total_new=total_new,
|
|
)
|
|
except Exception as e:
|
|
logger.error(f"Error syncing all models: {str(e)}")
|
|
raise HTTPException(
|
|
status_code=500, detail=f"Error syncing all models: {str(e)}"
|
|
)
|
|
|
|
|
|
@router.get("/models/count/{provider}", response_model=ProviderModelCountResponse)
|
|
async def get_model_count(provider: str):
|
|
"""
|
|
Get count of registered models for a provider, grouped by type.
|
|
|
|
Returns counts for each model type (language, embedding,
|
|
speech_to_text, text_to_speech) as well as total count.
|
|
"""
|
|
try:
|
|
counts = await get_provider_model_count(provider)
|
|
total = sum(counts.values())
|
|
return ProviderModelCountResponse(
|
|
provider=provider,
|
|
counts=counts,
|
|
total=total,
|
|
)
|
|
except Exception as e:
|
|
logger.error(f"Error getting model count for {provider}: {str(e)}")
|
|
raise HTTPException(
|
|
status_code=500, detail=f"Error getting model count: {str(e)}"
|
|
)
|
|
|
|
|
|
@router.get("/models/by-provider/{provider}", response_model=List[ModelResponse])
|
|
async def get_models_by_provider(provider: str):
|
|
"""
|
|
Get all registered models for a specific provider.
|
|
|
|
Returns models from the database that belong to the specified provider.
|
|
"""
|
|
try:
|
|
from open_notebook.database.repository import repo_query
|
|
|
|
models = await repo_query(
|
|
"SELECT * FROM model WHERE provider = $provider ORDER BY type, name",
|
|
{"provider": provider},
|
|
)
|
|
|
|
return [
|
|
ModelResponse(
|
|
id=model.get("id", ""),
|
|
name=model.get("name", ""),
|
|
provider=model.get("provider", ""),
|
|
type=model.get("type", ""),
|
|
credential=model.get("credential"),
|
|
created=str(model.get("created", "")),
|
|
updated=str(model.get("updated", "")),
|
|
)
|
|
for model in models
|
|
]
|
|
except Exception as e:
|
|
logger.error(f"Error fetching models for {provider}: {str(e)}")
|
|
raise HTTPException(
|
|
status_code=500, detail=f"Error fetching models: {str(e)}"
|
|
)
|
|
|
|
|
|
def _get_preferred_model(
|
|
models: List[Dict], provider_priority: List[str], model_preferences: Dict
|
|
) -> Optional[Dict]:
|
|
"""
|
|
Select the best model from a list based on provider priority and model preferences.
|
|
|
|
Args:
|
|
models: List of model dictionaries with 'provider', 'name', 'id' keys
|
|
provider_priority: List of providers in preference order
|
|
model_preferences: Dict mapping provider to list of preferred model name patterns
|
|
|
|
Returns:
|
|
The best model dict, or None if no models available
|
|
"""
|
|
if not models:
|
|
return None
|
|
|
|
# Group models by provider
|
|
by_provider: Dict[str, List[Dict]] = {}
|
|
for model in models:
|
|
provider = model.get("provider", "")
|
|
if provider not in by_provider:
|
|
by_provider[provider] = []
|
|
by_provider[provider].append(model)
|
|
|
|
# Find first provider with models (in priority order)
|
|
for provider in provider_priority:
|
|
if provider in by_provider:
|
|
provider_models = by_provider[provider]
|
|
|
|
# Check for preferred models within this provider
|
|
if provider in model_preferences:
|
|
for preference in model_preferences[provider]:
|
|
for model in provider_models:
|
|
if preference.lower() in model.get("name", "").lower():
|
|
return model
|
|
|
|
# Fall back to first model from this provider
|
|
return provider_models[0]
|
|
|
|
# Fall back to first model from any provider
|
|
return models[0] if models else None
|
|
|
|
|
|
@router.post("/models/auto-assign", response_model=AutoAssignResult)
|
|
async def auto_assign_defaults():
|
|
"""
|
|
Auto-assign default models based on available models.
|
|
|
|
This endpoint intelligently assigns the first available model of each
|
|
required type to the corresponding default slot. It uses provider
|
|
priority (preferring premium providers like OpenAI, Anthropic) and
|
|
model preferences within each provider.
|
|
|
|
Returns:
|
|
- assigned: Dict of slot names to assigned model IDs
|
|
- skipped: List of slots that already have models assigned
|
|
- missing: List of slots with no available models
|
|
"""
|
|
try:
|
|
from open_notebook.database.repository import repo_query
|
|
|
|
# Get current defaults
|
|
defaults = await DefaultModels.get_instance()
|
|
|
|
# Get all models grouped by type
|
|
all_models = await repo_query(
|
|
"SELECT * FROM model ORDER BY provider, name",
|
|
{},
|
|
)
|
|
|
|
# Group models by type
|
|
models_by_type: Dict[str, List[Dict]] = {
|
|
"language": [],
|
|
"embedding": [],
|
|
"text_to_speech": [],
|
|
"speech_to_text": [],
|
|
}
|
|
|
|
for model in all_models:
|
|
model_type = model.get("type", "")
|
|
if model_type in models_by_type:
|
|
models_by_type[model_type].append(model)
|
|
|
|
# Define slot configuration: (slot_name, model_type, current_value)
|
|
slot_configs = [
|
|
("default_chat_model", "language", defaults.default_chat_model), # type: ignore[attr-defined]
|
|
("default_transformation_model", "language", defaults.default_transformation_model), # type: ignore[attr-defined]
|
|
("default_tools_model", "language", defaults.default_tools_model), # type: ignore[attr-defined]
|
|
("large_context_model", "language", defaults.large_context_model), # type: ignore[attr-defined]
|
|
("default_embedding_model", "embedding", defaults.default_embedding_model), # type: ignore[attr-defined]
|
|
("default_text_to_speech_model", "text_to_speech", defaults.default_text_to_speech_model), # type: ignore[attr-defined]
|
|
("default_speech_to_text_model", "speech_to_text", defaults.default_speech_to_text_model), # type: ignore[attr-defined]
|
|
]
|
|
|
|
assigned: Dict[str, str] = {}
|
|
skipped: List[str] = []
|
|
missing: List[str] = []
|
|
|
|
for slot_name, model_type, current_value in slot_configs:
|
|
if current_value:
|
|
# Slot already has a value
|
|
skipped.append(slot_name)
|
|
continue
|
|
|
|
available_models = models_by_type.get(model_type, [])
|
|
if not available_models:
|
|
# No models of this type available
|
|
missing.append(slot_name)
|
|
continue
|
|
|
|
# Select best model for this slot
|
|
best_model = _get_preferred_model(
|
|
available_models, PROVIDER_PRIORITY, MODEL_PREFERENCES
|
|
)
|
|
|
|
if best_model:
|
|
model_id = best_model.get("id", "")
|
|
assigned[slot_name] = model_id
|
|
# Update the defaults object
|
|
setattr(defaults, slot_name, model_id)
|
|
|
|
# Save updated defaults if any assignments were made
|
|
if assigned:
|
|
await defaults.update()
|
|
|
|
return AutoAssignResult(
|
|
assigned=assigned,
|
|
skipped=skipped,
|
|
missing=missing,
|
|
)
|
|
|
|
except Exception as e:
|
|
logger.error(f"Error auto-assigning defaults: {str(e)}")
|
|
raise HTTPException(
|
|
status_code=500, detail=f"Error auto-assigning defaults: {str(e)}"
|
|
)
|