Add explorer AI chat and context endpoints

This commit is contained in:
defiQUG
2026-03-27 13:37:53 -07:00
parent 01e0633124
commit c9e792d55f
4 changed files with 1272 additions and 5 deletions

View File

@@ -39,6 +39,10 @@ func (s *Server) SetupRoutes(mux *http.ServeMux) {
// Feature flags endpoint
mux.HandleFunc("/api/v1/features", s.handleFeatures)
// Explorer AI endpoints
mux.HandleFunc("/api/v1/ai/context", s.handleAIContext)
mux.HandleFunc("/api/v1/ai/chat", s.handleAIChat)
// Route decision tree proxy
mux.HandleFunc("/api/v1/routes/tree", s.handleRouteDecisionTree)
mux.HandleFunc("/api/v1/routes/depth", s.handleRouteDepth)