Refactor internal services to use agent-desk package structure

- Updated import paths in multiple service files to reflect the new agent-desk module.
- Added a new configuration file for agent-desk in the Docker setup.
This commit is contained in:
mlogclub
2026-05-31 18:43:48 +08:00
parent 472b3053b8
commit 101577f163
381 changed files with 1401 additions and 1308 deletions
@@ -7,10 +7,10 @@ import (
"strings"
"time"
applicationruntime "cs-ai-agent/internal/ai/application/runtime"
"cs-ai-agent/internal/ai/runtime/graphs"
"cs-ai-agent/internal/models"
svc "cs-ai-agent/internal/services"
applicationruntime "agent-desk/internal/ai/application/runtime"
"agent-desk/internal/ai/runtime/graphs"
"agent-desk/internal/models"
svc "agent-desk/internal/services"
)
type runtimeReplyExecutor struct{}