Fix loglist
This commit is contained in:
@@ -14,6 +14,7 @@ type MasterAPIKeyStatus string
|
||||
type PollingStrategy string
|
||||
type FileProcessingState string
|
||||
type LogType string
|
||||
type ProtocolType string
|
||||
|
||||
const (
|
||||
// --- 运营状态 (在中间表中使用) ---
|
||||
@@ -35,8 +36,12 @@ const (
|
||||
FileActive FileProcessingState = "ACTIVE"
|
||||
FileFailed FileProcessingState = "FAILED"
|
||||
|
||||
LogTypeFinal LogType = "FINAL" // Represents the final outcome of a request, including all retries.
|
||||
LogTypeRetry LogType = "RETRY" // Represents a single, failed attempt that triggered a retry.
|
||||
LogTypeFinal LogType = "FINAL" // Represents the final outcome of a request, including all retries.
|
||||
LogTypeRetry LogType = "RETRY" // Represents a single, failed attempt that triggered a retry.
|
||||
LogTypeValidation LogType = "VALIDATION"
|
||||
|
||||
ProtocolOpenAI ProtocolType = "openai"
|
||||
ProtocolGemini ProtocolType = "gemini"
|
||||
)
|
||||
|
||||
// ========= 核心数据库模型 =========
|
||||
|
||||
Reference in New Issue
Block a user