mirror of
https://github.com/langgenius/dify.git
synced 2026-07-25 05:28:35 +08:00
14 lines
313 B
TypeScript
14 lines
313 B
TypeScript
import { agent } from '@dify/contracts/api/console/agent/orpc.gen'
|
|
import { agentDriveContracts } from './agent-drive'
|
|
|
|
export const agentRouterContract = {
|
|
...agent,
|
|
byAgentId: {
|
|
...agent.byAgentId,
|
|
drive: {
|
|
...agent.byAgentId.drive,
|
|
...agentDriveContracts.byAgentId.drive,
|
|
},
|
|
},
|
|
}
|