Compare commits

..

No commits in common. "9d86b6e430465640eb07a54782fe96ee0a0b1dcf" and "a0044c4c42400fdb1f18844dcc9dad591495ffac" have entirely different histories.

3 changed files with 3 additions and 4 deletions

View File

@ -62,6 +62,5 @@ export type {
LLMProvidersResponse,
LLMUsageTypesResponse,
LLMConfigUpdateResponse,
LLMAllConfigs,
LLMUsageType
LLMAllConfigs
}

View File

@ -593,7 +593,7 @@ const handleEdit = async (row: ScriptFlow) => {
allowed_kb_ids: step.allowed_kb_ids || [],
preferred_kb_ids: step.preferred_kb_ids || [],
kb_query_hint: step.kb_query_hint || '',
max_kb_calls_per_step: step.max_kb_calls_per_step ?? undefined
max_kb_calls_per_step: step.max_kb_calls_per_step || null
})),
is_enabled: detail.is_enabled,
metadata: detail.metadata || {}

View File

@ -17,7 +17,7 @@ from app.services.document.base import (
PageText,
ParseResult,
)
from app.services.llm.factory import get_llm_config_manager
from app.services.llm.factory import LLMUsageType, get_llm_config_manager
logger = logging.getLogger(__name__)