2023-11-18 11:53:35 +08:00
|
|
|
import type { ModelModeType, RETRIEVE_TYPE } from '@/types/app'
|
2023-05-15 08:51:32 +08:00
|
|
|
export type Inputs = Record<string, string | number | object>
|
|
|
|
|
2023-10-12 23:14:28 +08:00
|
|
|
export enum PromptMode {
|
|
|
|
simple = 'simple',
|
|
|
|
advanced = 'advanced',
|
|
|
|
}
|
|
|
|
|
|
|
|
export type PromptItem = {
|
|
|
|
role?: PromptRole
|
|
|
|
text: string
|
|
|
|
}
|
|
|
|
|
|
|
|
export type ChatPromptConfig = {
|
|
|
|
prompt: PromptItem[]
|
|
|
|
}
|
|
|
|
|
|
|
|
export type ConversationHistoriesRole = {
|
|
|
|
user_prefix: string
|
|
|
|
assistant_prefix: string
|
|
|
|
}
|
|
|
|
export type CompletionPromptConfig = {
|
|
|
|
prompt: PromptItem
|
|
|
|
conversation_histories_role: ConversationHistoriesRole
|
|
|
|
}
|
|
|
|
|
|
|
|
export type BlockStatus = {
|
|
|
|
context: boolean
|
|
|
|
history: boolean
|
|
|
|
query: boolean
|
|
|
|
}
|
|
|
|
|
|
|
|
export enum PromptRole {
|
|
|
|
system = 'system',
|
|
|
|
user = 'user',
|
|
|
|
assistant = 'assistant',
|
|
|
|
}
|
|
|
|
|
2023-05-15 08:51:32 +08:00
|
|
|
export type PromptVariable = {
|
2023-06-06 14:58:56 +08:00
|
|
|
key: string
|
|
|
|
name: string
|
|
|
|
type: string // "string" | "number" | "select",
|
|
|
|
default?: string | number
|
|
|
|
required: boolean
|
2023-05-15 08:51:32 +08:00
|
|
|
options?: string[]
|
|
|
|
max_length?: number
|
2023-09-27 14:53:22 +08:00
|
|
|
is_context_var?: boolean
|
2023-05-15 08:51:32 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
export type CompletionParams = {
|
2023-06-06 14:58:56 +08:00
|
|
|
max_tokens: number
|
|
|
|
temperature: number
|
|
|
|
top_p: number
|
|
|
|
presence_penalty: number
|
|
|
|
frequency_penalty: number
|
2023-10-12 23:14:28 +08:00
|
|
|
stop?: string[]
|
2023-05-15 08:51:32 +08:00
|
|
|
}
|
|
|
|
|
2023-06-06 14:58:56 +08:00
|
|
|
export type ModelId = 'gpt-3.5-turbo' | 'text-davinci-003'
|
2023-05-15 08:51:32 +08:00
|
|
|
|
|
|
|
export type PromptConfig = {
|
2023-06-06 14:58:56 +08:00
|
|
|
prompt_template: string
|
|
|
|
prompt_variables: PromptVariable[]
|
2023-05-15 08:51:32 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
export type MoreLikeThisConfig = {
|
|
|
|
enabled: boolean
|
|
|
|
}
|
|
|
|
|
|
|
|
export type SuggestedQuestionsAfterAnswerConfig = MoreLikeThisConfig
|
|
|
|
|
2023-07-07 17:50:42 +08:00
|
|
|
export type SpeechToTextConfig = MoreLikeThisConfig
|
|
|
|
|
2023-09-09 19:17:12 +08:00
|
|
|
export type CitationConfig = MoreLikeThisConfig
|
|
|
|
|
2023-12-18 15:41:24 +08:00
|
|
|
export type AnnotationReplyConfig = {
|
|
|
|
id: string
|
|
|
|
enabled: boolean
|
|
|
|
score_threshold: number
|
|
|
|
embedding_model: {
|
|
|
|
embedding_provider_name: string
|
|
|
|
embedding_model_name: string
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-11-06 19:36:32 +08:00
|
|
|
export type ModerationContentConfig = {
|
|
|
|
enabled: boolean
|
|
|
|
preset_response?: string
|
|
|
|
}
|
|
|
|
export type ModerationConfig = MoreLikeThisConfig & {
|
|
|
|
type?: string
|
|
|
|
config?: {
|
|
|
|
keywords?: string
|
|
|
|
api_based_extension_id?: string
|
|
|
|
inputs_config?: ModerationContentConfig
|
|
|
|
outputs_config?: ModerationContentConfig
|
|
|
|
} & Partial<Record<string, any>>
|
|
|
|
}
|
|
|
|
|
2023-09-11 09:30:17 +08:00
|
|
|
export type RetrieverResourceConfig = MoreLikeThisConfig
|
|
|
|
|
2023-05-15 08:51:32 +08:00
|
|
|
// frontend use. Not the same as backend
|
|
|
|
export type ModelConfig = {
|
2023-06-06 14:58:56 +08:00
|
|
|
provider: string // LLM Provider: for example "OPENAI"
|
|
|
|
model_id: string
|
2023-10-12 23:14:28 +08:00
|
|
|
mode: ModelModeType
|
2023-05-15 08:51:32 +08:00
|
|
|
configs: PromptConfig
|
2023-06-06 14:58:56 +08:00
|
|
|
opening_statement: string | null
|
2023-09-11 09:30:17 +08:00
|
|
|
more_like_this: MoreLikeThisConfig | null
|
|
|
|
suggested_questions_after_answer: SuggestedQuestionsAfterAnswerConfig | null
|
|
|
|
speech_to_text: SpeechToTextConfig | null
|
|
|
|
retriever_resource: RetrieverResourceConfig | null
|
2023-11-06 19:36:32 +08:00
|
|
|
sensitive_word_avoidance: ModerationConfig | null
|
2023-06-06 14:58:56 +08:00
|
|
|
dataSets: any[]
|
2023-05-15 08:51:32 +08:00
|
|
|
}
|
2023-10-12 23:14:28 +08:00
|
|
|
export type DatasetConfigItem = {
|
|
|
|
enable: boolean
|
|
|
|
value: number
|
|
|
|
}
|
2023-11-18 11:53:35 +08:00
|
|
|
|
2023-10-12 23:14:28 +08:00
|
|
|
export type DatasetConfigs = {
|
2023-11-18 11:53:35 +08:00
|
|
|
retrieval_model: RETRIEVE_TYPE
|
|
|
|
reranking_model: {
|
|
|
|
reranking_provider_name: string
|
|
|
|
reranking_model_name: string
|
|
|
|
}
|
2023-10-12 23:14:28 +08:00
|
|
|
top_k: number
|
2023-11-18 11:53:35 +08:00
|
|
|
score_threshold_enabled: boolean
|
|
|
|
score_threshold: number
|
2023-10-12 23:14:28 +08:00
|
|
|
}
|
2023-05-15 08:51:32 +08:00
|
|
|
|
|
|
|
export type DebugRequestBody = {
|
2023-06-06 14:58:56 +08:00
|
|
|
inputs: Inputs
|
|
|
|
query: string
|
|
|
|
completion_params: CompletionParams
|
2023-05-15 08:51:32 +08:00
|
|
|
model_config: ModelConfig
|
|
|
|
}
|
|
|
|
|
|
|
|
export type DebugResponse = {
|
2023-06-06 14:58:56 +08:00
|
|
|
id: string
|
|
|
|
answer: string
|
|
|
|
created_at: string
|
2023-05-15 08:51:32 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
export type DebugResponseStream = {
|
2023-06-06 14:58:56 +08:00
|
|
|
id: string
|
|
|
|
data: string
|
|
|
|
created_at: string
|
2023-05-15 08:51:32 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
export type FeedBackRequestBody = {
|
2023-06-06 14:58:56 +08:00
|
|
|
message_id: string
|
|
|
|
rating: 'like' | 'dislike'
|
|
|
|
content?: string
|
2023-05-15 08:51:32 +08:00
|
|
|
from_source: 'api' | 'log'
|
|
|
|
}
|
|
|
|
|
|
|
|
export type FeedBackResponse = {
|
2023-06-06 14:58:56 +08:00
|
|
|
message_id: string
|
2023-05-15 08:51:32 +08:00
|
|
|
rating: 'like' | 'dislike'
|
|
|
|
}
|
|
|
|
|
|
|
|
// Log session list
|
|
|
|
export type LogSessionListQuery = {
|
2023-06-06 14:58:56 +08:00
|
|
|
keyword?: string
|
|
|
|
start?: string // format datetime(YYYY-mm-dd HH:ii)
|
|
|
|
end?: string // format datetime(YYYY-mm-dd HH:ii)
|
|
|
|
page: number
|
|
|
|
limit: number // default 20. 1-100
|
2023-05-15 08:51:32 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
export type LogSessionListResponse = {
|
|
|
|
data: {
|
2023-06-06 14:58:56 +08:00
|
|
|
id: string
|
|
|
|
conversation_id: string
|
|
|
|
query: string // user's query question
|
|
|
|
message: string // prompt send to LLM
|
|
|
|
answer: string
|
|
|
|
creat_at: string
|
|
|
|
}[]
|
|
|
|
total: number
|
|
|
|
page: number
|
2023-05-15 08:51:32 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// log session detail and debug
|
|
|
|
export type LogSessionDetailResponse = {
|
2023-06-06 14:58:56 +08:00
|
|
|
id: string
|
|
|
|
cnversation_id: string
|
|
|
|
model_provider: string
|
|
|
|
query: string
|
|
|
|
inputs: Record<string, string | number | object>[]
|
|
|
|
message: string
|
|
|
|
message_tokens: number // number of tokens in message
|
|
|
|
answer: string
|
|
|
|
answer_tokens: number // number of tokens in answer
|
|
|
|
provider_response_latency: number // used time in ms
|
|
|
|
from_source: 'api' | 'log'
|
2023-05-15 08:51:32 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
export type SavedMessage = {
|
2023-06-06 14:58:56 +08:00
|
|
|
id: string
|
2023-05-15 08:51:32 +08:00
|
|
|
answer: string
|
2023-06-06 14:58:56 +08:00
|
|
|
}
|