feat: refactor runtime to use application runtime executor and update related types

This commit is contained in:
mlogclub
2026-04-14 12:13:33 +08:00
parent c79d508177
commit fcb2e11998
16 changed files with 90 additions and 98 deletions
+2 -1
View File
@@ -3,6 +3,7 @@ package runtime
import (
"strings"
applicationruntime "cs-agent/internal/ai/application/runtime"
svc "cs-agent/internal/services"
)
@@ -30,7 +31,7 @@ type aiReplyService struct {
runlog *replyRunLogService
}
func firstInvokedToolCode(summary *Summary) string {
func firstInvokedToolCode(summary *applicationruntime.Summary) string {
if summary == nil {
return ""
}