[Developer] #424 add MCP routing chatbot demo

This commit is contained in:
devmrko
2026-06-25 15:50:37 +09:00
parent cfad317d73
commit eac43439d5
7 changed files with 448 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
package com.cloudhandson.vpdbackoffice.domain.mcp;
public record McpChatbotResult(
String contextPath,
String question,
String selectedTool,
String status,
String answer,
String routingReason,
String toolResultJson,
String toolsListJson
) {
}