mirror of
https://github.com/langgenius/dify.git
synced 2024-11-16 19:59:50 +08:00
7753ba2d37
Co-authored-by: Joel <iamjoel007@gmail.com> Co-authored-by: Yeuoly <admin@srmxy.cn> Co-authored-by: JzoNg <jzongcode@gmail.com> Co-authored-by: StyleZhang <jasonapring2015@outlook.com> Co-authored-by: jyong <jyong@dify.ai> Co-authored-by: nite-knite <nkCoding@gmail.com> Co-authored-by: jyong <718720800@qq.com>
76 lines
3.2 KiB
TypeScript
76 lines
3.2 KiB
TypeScript
import type { Fetcher } from 'swr'
|
|
import { get, post } from './base'
|
|
import type {
|
|
AnnotationsCountResponse,
|
|
ChatConversationFullDetailResponse,
|
|
ChatConversationsRequest,
|
|
ChatConversationsResponse,
|
|
ChatMessagesRequest,
|
|
ChatMessagesResponse,
|
|
CompletionConversationFullDetailResponse,
|
|
CompletionConversationsRequest,
|
|
CompletionConversationsResponse,
|
|
ConversationListResponse,
|
|
LogMessageAnnotationsRequest,
|
|
LogMessageAnnotationsResponse,
|
|
LogMessageFeedbacksRequest,
|
|
LogMessageFeedbacksResponse,
|
|
WorkflowLogsRequest,
|
|
WorkflowLogsResponse,
|
|
WorkflowRunDetailResponse,
|
|
} from '@/models/log'
|
|
import type { NodeTracingListResponse } from '@/types/workflow'
|
|
|
|
export const fetchConversationList: Fetcher<ConversationListResponse, { name: string; appId: string; params?: Record<string, any> }> = ({ appId, params }) => {
|
|
return get<ConversationListResponse>(`/console/api/apps/${appId}/messages`, params)
|
|
}
|
|
|
|
// (Text Generation Application) Session List
|
|
export const fetchCompletionConversations: Fetcher<CompletionConversationsResponse, { url: string; params?: CompletionConversationsRequest }> = ({ url, params }) => {
|
|
return get<CompletionConversationsResponse>(url, { params })
|
|
}
|
|
|
|
// (Text Generation Application) Session Detail
|
|
export const fetchCompletionConversationDetail: Fetcher<CompletionConversationFullDetailResponse, { url: string }> = ({ url }) => {
|
|
return get<CompletionConversationFullDetailResponse>(url, {})
|
|
}
|
|
|
|
// (Chat Application) Session List
|
|
export const fetchChatConversations: Fetcher<ChatConversationsResponse, { url: string; params?: ChatConversationsRequest }> = ({ url, params }) => {
|
|
return get<ChatConversationsResponse>(url, { params })
|
|
}
|
|
|
|
// (Chat Application) Session Detail
|
|
export const fetchChatConversationDetail: Fetcher<ChatConversationFullDetailResponse, { url: string }> = ({ url }) => {
|
|
return get<ChatConversationFullDetailResponse>(url, {})
|
|
}
|
|
|
|
// (Chat Application) Message list in one session
|
|
export const fetchChatMessages: Fetcher<ChatMessagesResponse, { url: string; params: ChatMessagesRequest }> = ({ url, params }) => {
|
|
return get<ChatMessagesResponse>(url, { params })
|
|
}
|
|
|
|
export const updateLogMessageFeedbacks: Fetcher<LogMessageFeedbacksResponse, { url: string; body: LogMessageFeedbacksRequest }> = ({ url, body }) => {
|
|
return post<LogMessageFeedbacksResponse>(url, { body })
|
|
}
|
|
|
|
export const updateLogMessageAnnotations: Fetcher<LogMessageAnnotationsResponse, { url: string; body: LogMessageAnnotationsRequest }> = ({ url, body }) => {
|
|
return post<LogMessageAnnotationsResponse>(url, { body })
|
|
}
|
|
|
|
export const fetchAnnotationsCount: Fetcher<AnnotationsCountResponse, { url: string }> = ({ url }) => {
|
|
return get<AnnotationsCountResponse>(url)
|
|
}
|
|
|
|
export const fetchWorkflowLogs: Fetcher<WorkflowLogsResponse, { url: string; params?: WorkflowLogsRequest }> = ({ url, params }) => {
|
|
return get<WorkflowLogsResponse>(url, { params })
|
|
}
|
|
|
|
export const fetchRunDetail = ({ appID, runID }: { appID: string; runID: string }) => {
|
|
return get<WorkflowRunDetailResponse>(`/apps/${appID}/workflow-runs/${runID}`)
|
|
}
|
|
|
|
export const fetchTracingList: Fetcher<NodeTracingListResponse, { url: string }> = ({ url }) => {
|
|
return get<NodeTracingListResponse>(url)
|
|
}
|