mirror of
https://github.com/infiniflow/ragflow.git
synced 2025-12-08 20:42:30 +08:00
Feat: Make the agent dialog window exposed to the outside world fill in the begin form #3221 (#9124)
### What problem does this PR solve? Feat: Make the agent dialog window exposed to the outside world fill in the begin form #3221 ### Type of change - [x] New Feature (non-breaking change which adds functionality)
This commit is contained in:
@ -24,6 +24,7 @@ const {
|
||||
fetchCanvas,
|
||||
fetchAgentAvatar,
|
||||
fetchAgentLogs,
|
||||
fetchExternalAgentInputs,
|
||||
} = api;
|
||||
|
||||
const methods = {
|
||||
@ -107,6 +108,10 @@ const methods = {
|
||||
url: fetchAgentLogs,
|
||||
method: 'get',
|
||||
},
|
||||
fetchExternalAgentInputs: {
|
||||
url: fetchExternalAgentInputs,
|
||||
method: 'get',
|
||||
},
|
||||
} as const;
|
||||
|
||||
const agentService = registerNextServer<keyof typeof methods>(methods);
|
||||
|
||||
Reference in New Issue
Block a user