Compare commits
3 Commits
8d21cbc2da
..
dev
| Author | SHA1 | Date | |
|---|---|---|---|
| 3d796bda54 | |||
| 82988d5204 | |||
| bce67e4e18 |
@@ -207,7 +207,7 @@ const Main: FC = () => {
|
||||
isOpeningStatement: isShowPrompt,
|
||||
}
|
||||
if (calculatedIntroduction)
|
||||
return [openStatement]
|
||||
return [openstatement]
|
||||
|
||||
return []
|
||||
}
|
||||
|
||||
+10
-1
@@ -1,5 +1,5 @@
|
||||
import type { IOnCompleted, IOnData, IOnError, IOnFile, IOnMessageEnd, IOnMessageReplace, IOnNodeFinished, IOnNodeStarted, IOnThought, IOnWorkflowFinished, IOnWorkflowStarted } from './base'
|
||||
import { get, post, ssePost } from './base'
|
||||
import { get, post, del, ssePost } from './base'
|
||||
import type { Feedbacktype } from '@/types/app'
|
||||
|
||||
export const sendChatMessage = async (
|
||||
@@ -60,3 +60,12 @@ export const updateFeedback = async ({ url, body }: { url: string; body: Feedbac
|
||||
export const generationConversationName = async (id: string) => {
|
||||
return post(`conversations/${id}/name`, { body: { auto_generate: true } })
|
||||
}
|
||||
|
||||
export const renameConversation = async (id: string, name: string) => {
|
||||
return post(`conversations/${id}/name`, { body: { name: name, auto_generate: false } })
|
||||
}
|
||||
|
||||
export const deleteConversation = async (id: string) => {
|
||||
return del(`conversations/${id}`)
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user