package neo import ( "fmt" "io" "net/url" "path/filepath" "strconv" "strings" "time" "github.com/gin-gonic/gin" "github.com/google/uuid" "github.com/yaoapp/gou/api" "github.com/yaoapp/gou/connector" "github.com/yaoapp/gou/process" "github.com/yaoapp/yao/helper" "github.com/yaoapp/yao/neo/assistant" chatctx "github.com/yaoapp/yao/neo/context" "github.com/yaoapp/yao/neo/message" "github.com/yaoapp/yao/neo/store" ) // API registers the Neo API endpoints func (neo *DSL) API(router *gin.Engine, path string) error { // Get the guards middlewares, err := neo.getGuardHandlers() if err != nil { return err } // Register OPTIONS handlers for all endpoints router.OPTIONS(path, neo.optionsHandler) router.OPTIONS(path+"/status", neo.optionsHandler) router.OPTIONS(path+"/chats", neo.optionsHandler) router.OPTIONS(path+"/chats/:id", neo.optionsHandler) router.OPTIONS(path+"/history", neo.optionsHandler) router.OPTIONS(path+"/upload", neo.optionsHandler) router.OPTIONS(path+"/download", neo.optionsHandler) router.OPTIONS(path+"/mentions", neo.optionsHandler) router.OPTIONS(path+"/generate", neo.optionsHandler) router.OPTIONS(path+"/generate/title", neo.optionsHandler) router.OPTIONS(path+"/generate/prompts", neo.optionsHandler) router.OPTIONS(path+"/dangerous/clear_chats", neo.optionsHandler) router.OPTIONS(path+"/assistants", neo.optionsHandler) router.OPTIONS(path+"/assistants/:id", neo.optionsHandler) router.OPTIONS(path+"/assistants/:id/call", neo.optionsHandler) // Chat endpoint // Chat endpoint // Example: // curl -X GET 'http://localhost:5099/api/__yao/neo?content=Hello&chat_id=chat_123&context=previous_context&token=xxx' // curl -X POST 'http://localhost:5099/api/__yao/neo' \ // -H 'Content-Type: application/json' \ // -d '{"content": "Hello", "chat_id": "chat_123", "context": "previous_context", "token": "xxx"}' router.GET(path, append(middlewares, neo.handleChat)...) router.POST(path, append(middlewares, neo.handleChat)...) // Status check endpoint // Example: // curl -X GET 'http://localhost:5099/api/__yao/neo/status?token=xxx' router.GET(path+"/status", append(middlewares, neo.handleStatus)...) // Assistant API endpoints // List assistants example: // curl -X GET 'http://localhost:5099/api/__yao/neo/assistants?page=1&pagesize=20&tags=tag1,tag2&token=xxx' router.GET(path+"/assistants", append(middlewares, neo.handleAssistantList)...) // Get all assistant tags example: // curl -X GET 'http://localhost:5099/api/__yao/neo/assistants/tags?token=xxx' router.GET(path+"/assistants/tags", append(middlewares, neo.handleAssistantTags)...) // Get assistant details example: // curl -X GET 'http://localhost:5099/api/__yao/neo/assistants/assistant_123?token=xxx' router.GET(path+"/assistants/:id", append(middlewares, neo.handleAssistantDetail)...) // Execute assistant API example: // curl -X POST 'http://localhost:5099/api/__yao/neo/assistants/assistant_123/api' \ // -H 'Content-Type: application/json' \ // -d '{"name": "Test", "payload": {"name": "yao", "age": 18}}' router.POST(path+"/assistants/:id/call", append(middlewares, neo.handleAssistantCall)...) // Create/Update assistant example: // curl -X POST 'http://localhost:5099/api/__yao/neo/assistants' \ // -H 'Content-Type: application/json' \ // -d '{"name": "My Assistant", "type": "chat", "tags": ["tag1", "tag2"], "mentionable": true, "avatar": "path/to/avatar.png", "token": "xxx"}' router.POST(path+"/assistants", append(middlewares, neo.handleAssistantSave)...) // Delete assistant example: // curl -X DELETE 'http://localhost:5099/api/__yao/neo/assistants/assistant_123?token=xxx' router.DELETE(path+"/assistants/:id", append(middlewares, neo.handleAssistantDelete)...) // Chat management endpoints // List chats example: // curl -X GET 'http://localhost:5099/api/__yao/neo/chats?page=1&pagesize=20&keywords=search+term&order=desc&token=xxx' router.GET(path+"/chats", append(middlewares, neo.handleChatList)...) // Get latest chat example: // curl -X GET 'http://localhost:5099/api/__yao/neo/chats/latest?assistant_id=assistant_123&token=xxx' router.GET(path+"/chats/latest", append(middlewares, neo.handleChatLatest)...) // Get chat details example: // curl -X GET 'http://localhost:5099/api/__yao/neo/chats/chat_123?token=xxx' router.GET(path+"/chats/:id", append(middlewares, neo.handleChatDetail)...) // Update chat example: // curl -X POST 'http://localhost:5099/api/__yao/neo/chats/chat_123' \ // -H 'Content-Type: application/json' \ // -d '{"title": "New Title", "content": "Chat content for title generation", "token": "xxx"}' router.POST(path+"/chats/:id", append(middlewares, neo.handleChatUpdate)...) // Delete chat example: // curl -X DELETE 'http://localhost:5099/api/__yao/neo/chats/chat_123?token=xxx' router.DELETE(path+"/chats/:id", append(middlewares, neo.handleChatDelete)...) // Chat history endpoint // Example: // curl -X GET 'http://localhost:5099/api/__yao/neo/history?chat_id=chat_123&token=xxx' router.GET(path+"/history", append(middlewares, neo.handleChatHistory)...) // File management endpoints // Upload file example: // curl -X POST 'http://localhost:5099/api/__yao/neo/upload?chat_id=chat_123&token=xxx' \ // -F 'file=@/path/to/file.txt' router.POST(path+"/upload", append(middlewares, neo.handleUpload)...) // Download file example: // curl -X GET 'http://localhost:5099/api/__yao/neo/download?file_id=file_123&disposition=attachment&token=xxx' \ // -o downloaded_file.txt router.GET(path+"/download", append(middlewares, neo.handleDownload)...) // Mentions endpoint // Example: // curl -X GET 'http://localhost:5099/api/__yao/neo/mentions?keywords=assistant&token=xxx' router.GET(path+"/mentions", append(middlewares, neo.handleMentions)...) // Generation endpoints // Generate custom content example: // curl -X GET 'http://localhost:5099/api/__yao/neo/generate?content=Generate+something&type=custom&system_prompt=You+are+a+helpful+assistant&chat_id=chat_123&token=xxx' // curl -X POST 'http://localhost:5099/api/__yao/neo/generate' \ // -H 'Content-Type: application/json' \ // -d '{"content": "Generate something", "type": "custom", "system_prompt": "You are a helpful assistant", "chat_id": "chat_123", "token": "xxx"}' router.GET(path+"/generate", append(middlewares, neo.handleGenerateCustom)...) router.POST(path+"/generate", append(middlewares, neo.handleGenerateCustom)...) // Generate title example: // curl -X GET 'http://localhost:5099/api/__yao/neo/generate/title?content=Chat+content&chat_id=chat_123&token=xxx' // curl -X POST 'http://localhost:5099/api/__yao/neo/generate/title' \ // -H 'Content-Type: application/json' \ // -d '{"content": "Chat content", "chat_id": "chat_123", "token": "xxx"}' router.GET(path+"/generate/title", append(middlewares, neo.handleGenerateTitle)...) router.POST(path+"/generate/title", append(middlewares, neo.handleGenerateTitle)...) // Generate prompts example: // curl -X GET 'http://localhost:5099/api/__yao/neo/generate/prompts?content=Generate+prompts&chat_id=chat_123&token=xxx' // curl -X POST 'http://localhost:5099/api/__yao/neo/generate/prompts' \ // -H 'Content-Type: application/json' \ // -d '{"content": "Generate prompts", "chat_id": "chat_123", "token": "xxx"}' router.GET(path+"/generate/prompts", append(middlewares, neo.handleGeneratePrompts)...) router.POST(path+"/generate/prompts", append(middlewares, neo.handleGeneratePrompts)...) // Utility endpoints // List connectors example: // curl -X GET 'http://localhost:5099/api/__yao/neo/utility/connectors?token=xxx' router.GET(path+"/utility/connectors", append(middlewares, neo.handleConnectors)...) // Dangerous operations // Dangerous operations // Clear all chats example: // curl -X DELETE 'http://localhost:5099/api/__yao/neo/dangerous/clear_chats?token=xxx' router.DELETE(path+"/dangerous/clear_chats", append(middlewares, neo.handleChatsDeleteAll)...) return nil } // handleStatus handles the status request func (neo *DSL) handleStatus(c *gin.Context) { c.Status(200) c.Done() } // handleUpload handles the upload request func (neo *DSL) handleUpload(c *gin.Context) { sid := c.GetString("__sid") if sid == "" { sid = uuid.New().String() } // Set the context ctx, cancel := chatctx.NewWithCancel(sid, c.Query("chat_id"), "") defer cancel() // Upload the file file, err := neo.Upload(ctx, c) if err != nil { c.JSON(500, gin.H{"message": err.Error(), "code": 500}) c.Done() return } c.JSON(200, file) c.Done() } // handleChat handles the chat request func (neo *DSL) handleChat(c *gin.Context) { // Set headers for SSE c.Header("Content-Type", "text/event-stream;charset=utf-8") c.Header("Cache-Control", "no-cache") c.Header("Connection", "keep-alive") sid := c.GetString("__sid") if sid == "" { sid = uuid.New().String() } content := c.Query("content") if content == "" { msg := message.New().Error("content is required").Done() msg.Write(c.Writer) return } chatID := c.Query("chat_id") if chatID == "" { // Only generate new chat_id if not provided chatID = fmt.Sprintf("chat_%d", time.Now().UnixNano()) } // Set the context with validated chat_id ctx, cancel := chatctx.NewWithCancel(sid, chatID, c.Query("context")) defer cancel() neo.Answer(ctx, content, c) } // handleChatList handles the chat list request func (neo *DSL) handleChatList(c *gin.Context) { sid := c.GetString("__sid") if sid == "" { c.JSON(400, gin.H{"message": "sid is required", "code": 400}) c.Done() return } // Create filter from query parameters filter := store.ChatFilter{ Keywords: c.Query("keywords"), Order: c.Query("order"), } // Parse page and pagesize if page := c.Query("page"); page != "" { if n, err := strconv.Atoi(page); err == nil { filter.Page = n } } if pageSize := c.Query("pagesize"); pageSize != "" { if n, err := strconv.Atoi(pageSize); err == nil { filter.PageSize = n } } response, err := neo.Store.GetChats(sid, filter) if err != nil { c.JSON(500, gin.H{"message": err.Error(), "code": 500}) c.Done() return } c.JSON(200, map[string]interface{}{"data": response}) c.Done() } // handleChatHistory handles the chat history request func (neo *DSL) handleChatHistory(c *gin.Context) { sid := c.GetString("__sid") if sid == "" { c.JSON(400, gin.H{"message": "sid is required", "code": 400}) c.Done() return } cid := c.Query("chat_id") history, err := neo.Store.GetHistory(sid, cid) if err != nil { c.JSON(500, gin.H{"message": err.Error(), "code": 500}) c.Done() return } c.JSON(200, map[string]interface{}{"data": history}) c.Done() } // handleDownload handles the download request func (neo *DSL) handleDownload(c *gin.Context) { sid := c.GetString("__sid") if sid == "" { c.JSON(400, gin.H{"message": "sid is required", "code": 400}) c.Done() return } fileID := c.Query("file_id") if fileID == "" { c.JSON(400, gin.H{"message": "file_id is required", "code": 400}) c.Done() return } // Set the context ctx, cancel := chatctx.NewWithCancel(sid, c.Query("chat_id"), "") defer cancel() // Download the file fileResponse, err := neo.Download(ctx, c) if err != nil { c.JSON(500, gin.H{"message": err.Error(), "code": 500}) c.Done() return } defer fileResponse.Reader.Close() // Set response headers c.Header("Content-Type", fileResponse.ContentType) if disposition := c.Query("disposition"); disposition == "attachment" { c.Header("Content-Disposition", fmt.Sprintf("attachment; filename=%s", filepath.Base(fileID)+fileResponse.Extension)) } // Copy the file content to response _, err = io.Copy(c.Writer, fileResponse.Reader) if err != nil { c.JSON(500, gin.H{"message": err.Error(), "code": 500}) return } } // getCorsHandlers returns CORS middleware handlers func (neo *DSL) getCorsHandlers() ([]gin.HandlerFunc, error) { if len(neo.Allows) == 0 { return []gin.HandlerFunc{}, nil } allowsMap := map[string]bool{} for _, allow := range neo.Allows { allow = strings.TrimPrefix(allow, "http://") allow = strings.TrimPrefix(allow, "https://") allowsMap[allow] = true } return []gin.HandlerFunc{neo.corsMiddleware(allowsMap)}, nil } // corsMiddleware handles CORS requests func (neo *DSL) corsMiddleware(allowsMap map[string]bool) gin.HandlerFunc { return func(c *gin.Context) { origin := neo.getOrigin(c) if origin == "" { c.Next() return } // Check if origin is allowed if !api.IsAllowed(c, allowsMap) { c.AbortWithStatusJSON(403, gin.H{ "message": origin + " not allowed", "code": 403, }) return } // Set CORS headers c.Header("Access-Control-Allow-Origin", origin) c.Header("Access-Control-Allow-Credentials", "true") c.Header("Access-Control-Allow-Headers", "Content-Type, Content-Length, Accept-Encoding, X-CSRF-Token, Authorization, Accept, Origin, Cache-Control, X-Requested-With") c.Header("Access-Control-Allow-Methods", "GET, POST, OPTIONS") if c.Request.Method == "OPTIONS" { c.AbortWithStatus(204) return } c.Next() } } // optionsHandler handles OPTIONS requests func (neo *DSL) optionsHandler(c *gin.Context) { origin := neo.getOrigin(c) if origin != "" { c.Header("Access-Control-Allow-Origin", origin) c.Header("Access-Control-Allow-Methods", "GET, POST, DELETE, OPTIONS") c.Header("Access-Control-Allow-Headers", "Content-Type, Authorization, Accept") c.Header("Access-Control-Allow-Credentials", "true") c.Header("Access-Control-Max-Age", "86400") // 24 hours } c.AbortWithStatus(204) } // getOrigin returns the request origin func (neo *DSL) getOrigin(c *gin.Context) string { origin := c.Request.Header.Get("Origin") if origin == "" { origin = c.Request.Referer() if origin != "" { if u, err := url.Parse(origin); err == nil { origin = fmt.Sprintf("%s://%s", u.Scheme, u.Host) } } } return origin } // getGuardHandlers returns authentication middleware handlers func (neo *DSL) getGuardHandlers() ([]gin.HandlerFunc, error) { // Cross-Domain handlers cors, err := neo.getCorsHandlers() if err != nil { return nil, err } if neo.Guard == "" { middlewares := append(cors, neo.defaultGuard) return middlewares, nil } // Validate the custom guard _, err = process.Of(neo.Guard) if err != nil { return nil, err } middlewares := append(cors, api.ProcessGuard(neo.Guard, cors...)) return middlewares, nil } // defaultGuard is the default authentication handler func (neo *DSL) defaultGuard(c *gin.Context) { token := strings.TrimSpace(strings.TrimPrefix(c.Query("token"), "Bearer ")) if token == "" { c.JSON(403, gin.H{"message": "token is required", "code": 403}) c.Abort() return } user := helper.JwtValidate(token) c.Set("__sid", user.SID) c.Next() } // handleChatLatest handles getting the latest chat func (neo *DSL) handleChatLatest(c *gin.Context) { sid := c.GetString("__sid") if sid == "" { c.JSON(400, gin.H{"message": "sid is required", "code": 400}) c.Done() return } // Get the chats chats, err := neo.Store.GetChats(sid, store.ChatFilter{Page: 1}) if err != nil { c.JSON(500, gin.H{"message": err.Error(), "code": 500}) c.Done() return } // Create a new chat if len(chats.Groups) == 0 || len(chats.Groups[0].Chats) == 0 { assistantID := neo.Use queryAssistantID := c.Query("assistant_id") if queryAssistantID != "" { assistantID = queryAssistantID } // Get the assistant info ast, err := assistant.Get(assistantID) if err != nil { c.JSON(500, gin.H{"message": err.Error(), "code": 500}) c.Done() return } c.JSON(200, map[string]interface{}{"data": map[string]interface{}{ "placeholder": ast.GetPlaceholder(), "assistant_id": ast.ID, "assistant_name": ast.Name, "assistant_avatar": ast.Avatar, "assistant_deleteable": neo.Use != ast.ID, }}) c.Done() return } // Get the chat_id chatID, ok := chats.Groups[0].Chats[0]["chat_id"].(string) if !ok { c.JSON(404, gin.H{"message": "chat_id not found", "code": 404}) c.Done() return } chat, err := neo.Store.GetChat(sid, chatID) if err != nil { c.JSON(500, gin.H{"message": err.Error(), "code": 500}) c.Done() return } // assistant_id is nil return the default assistant if chat.Chat["assistant_id"] == nil { chat.Chat["assistant_id"] = neo.Use // Get the assistant info ast, err := assistant.Get(neo.Use) if err != nil { c.JSON(500, gin.H{"message": err.Error(), "code": 500}) c.Done() return } chat.Chat["assistant_name"] = ast.Name chat.Chat["assistant_avatar"] = ast.Avatar } chat.Chat["assistant_deleteable"] = neo.Use != chat.Chat["assistant_id"] c.JSON(200, map[string]interface{}{"data": chat}) c.Done() } // handleChatDetail handles getting a single chat's details func (neo *DSL) handleChatDetail(c *gin.Context) { sid := c.GetString("__sid") if sid == "" { c.JSON(400, gin.H{"message": "sid is required", "code": 400}) c.Done() return } chatID := c.Param("id") if chatID == "" { c.JSON(400, gin.H{"message": "chat id is required", "code": 400}) c.Done() return } chat, err := neo.Store.GetChat(sid, chatID) if err != nil { c.JSON(500, gin.H{"message": err.Error(), "code": 500}) c.Done() return } // assistant_id is nil return the default assistant if chat.Chat["assistant_id"] == nil { chat.Chat["assistant_id"] = neo.Use // Get the assistant info ast, err := assistant.Get(neo.Use) if err != nil { c.JSON(500, gin.H{"message": err.Error(), "code": 500}) c.Done() return } chat.Chat["assistant_name"] = ast.Name chat.Chat["assistant_avatar"] = ast.Avatar } chat.Chat["assistant_deleteable"] = neo.Use != chat.Chat["assistant_id"] c.JSON(200, map[string]interface{}{"data": chat}) c.Done() } // handleMentions handles getting mentions for a chat func (neo *DSL) handleMentions(c *gin.Context) { sid := c.GetString("__sid") if sid == "" { c.JSON(400, gin.H{"message": "sid is required", "code": 400}) c.Done() return } // Get keywords from query parameter keywords := strings.ToLower(c.Query("keywords")) mentionable := true // Query mentionable assistants filter := store.AssistantFilter{ Keywords: keywords, Mentionable: &mentionable, Page: 1, PageSize: 20, } response, err := neo.Store.GetAssistants(filter) if err != nil { c.JSON(500, gin.H{"message": err.Error(), "code": 500}) c.Done() return } // Convert assistants to mentions mentions := []Mention{} for _, item := range response.Data { mention := Mention{ ID: item["assistant_id"].(string), Name: item["name"].(string), Type: item["type"].(string), Avatar: item["avatar"].(string), } mentions = append(mentions, mention) } c.JSON(200, map[string]interface{}{"data": mentions}) c.Done() } // handleChatUpdate handles updating a chat's details func (neo *DSL) handleChatUpdate(c *gin.Context) { sid := c.GetString("__sid") if sid == "" { c.JSON(400, gin.H{"message": "sid is required", "code": 400}) c.Done() return } chatID := c.Param("id") if chatID == "" { c.JSON(400, gin.H{"message": "chat id is required", "code": 400}) c.Done() return } // Get title from request body var body struct { Title string `json:"title"` Content string `json:"content"` } if err := c.BindJSON(&body); err != nil { c.JSON(400, gin.H{"message": "invalid request body", "code": 400}) c.Done() return } // If content is not empty, Generate the chat title if body.Content != "" { ctx, cancel := chatctx.NewWithCancel(sid, c.Query("chat_id"), "") defer cancel() title, err := neo.GenerateChatTitle(ctx, body.Content, c, true) if err != nil { c.JSON(500, gin.H{"message": err.Error(), "code": 500}) c.Done() return } body.Title = title } if body.Title == "" { c.JSON(400, gin.H{"message": "title is required", "code": 400}) c.Done() return } err := neo.Store.UpdateChatTitle(sid, chatID, body.Title) if err != nil { c.JSON(500, gin.H{"message": err.Error(), "code": 500}) c.Done() return } c.JSON(200, gin.H{"message": "ok", "title": body.Title, "chat_id": chatID}) c.Done() } // handleChatDelete handles deleting a single chat func (neo *DSL) handleChatDelete(c *gin.Context) { sid := c.GetString("__sid") if sid == "" { c.JSON(400, gin.H{"message": "sid is required", "code": 400}) c.Done() return } chatID := c.Param("id") if chatID == "" { c.JSON(400, gin.H{"message": "chat id is required", "code": 400}) c.Done() return } err := neo.Store.DeleteChat(sid, chatID) if err != nil { c.JSON(500, gin.H{"message": err.Error(), "code": 500}) c.Done() return } c.JSON(200, gin.H{"message": "ok"}) c.Done() } // handleChatsDeleteAll handles deleting all chats for a user func (neo *DSL) handleChatsDeleteAll(c *gin.Context) { sid := c.GetString("__sid") if sid == "" { c.JSON(400, gin.H{"message": "sid is required", "code": 400}) c.Done() return } err := neo.Store.DeleteAllChats(sid) if err != nil { c.JSON(500, gin.H{"message": err.Error(), "code": 500}) c.Done() return } c.JSON(200, gin.H{"message": "ok"}) c.Done() } // generateResponse is a helper struct to handle both SSE and HTTP responses type generateResponse struct { c *gin.Context sid string content string result interface{} err error } // validate checks common validation rules func (r *generateResponse) validate() bool { if r.sid == "" { if strings.Contains(r.c.GetHeader("Accept"), "text/event-stream") { r.c.Header("Content-Type", "text/event-stream;charset=utf-8") r.c.Header("Cache-Control", "no-cache") r.c.Header("Connection", "keep-alive") msg := message.New(). Error("sid is required"). Done() msg.Write(r.c.Writer) } else { r.c.JSON(400, gin.H{"message": "sid is required", "code": 400}) } return false } if r.content == "" { if strings.Contains(r.c.GetHeader("Accept"), "text/event-stream") { r.c.Header("Content-Type", "text/event-stream;charset=utf-8") r.c.Header("Cache-Control", "no-cache") r.c.Header("Connection", "keep-alive") msg := message.New(). Error("content is required"). Done() msg.Write(r.c.Writer) } else { r.c.JSON(400, gin.H{"message": "content is required", "code": 400}) } return false } return true } // send handles both SSE and HTTP responses func (r *generateResponse) send(key string) { if r.err != nil { if strings.Contains(r.c.GetHeader("Accept"), "text/event-stream") { r.c.Header("Content-Type", "text/event-stream;charset=utf-8") r.c.Header("Cache-Control", "no-cache") r.c.Header("Connection", "keep-alive") msg := message.New(). Error(r.err.Error()). Done() msg.Write(r.c.Writer) } else { r.c.JSON(500, gin.H{"message": r.err.Error(), "code": 500}) } return } if strings.Contains(r.c.GetHeader("Accept"), "text/event-stream") { r.c.Header("Content-Type", "text/event-stream;charset=utf-8") r.c.Header("Cache-Control", "no-cache") r.c.Header("Connection", "keep-alive") msg := message.New(). Map(gin.H{key: r.result}). Done() msg.Write(r.c.Writer) } else { r.c.JSON(200, gin.H{key: r.result}) } } // handleGenerateTitle handles generating a chat title func (neo *DSL) handleGenerateTitle(c *gin.Context) { var content string if c.Request.Method == "GET" { content = c.Query("content") } else { var body struct { Content string `json:"content"` } if err := c.BindJSON(&body); err != nil { // For SSE requests, send error message in SSE format if strings.Contains(c.GetHeader("Accept"), "text/event-stream") { c.Header("Content-Type", "text/event-stream;charset=utf-8") c.Header("Cache-Control", "no-cache") c.Header("Connection", "keep-alive") msg := message.New().Error("invalid request body").Done() msg.Write(c.Writer) return } c.JSON(400, gin.H{"message": "invalid request body", "code": 400}) return } content = body.Content } resp := &generateResponse{ c: c, sid: c.GetString("__sid"), content: content, } // For SSE requests, set headers before validation if strings.Contains(c.GetHeader("Accept"), "text/event-stream") { c.Header("Content-Type", "text/event-stream;charset=utf-8") c.Header("Cache-Control", "no-cache") c.Header("Connection", "keep-alive") } if !resp.validate() { return } ctx, cancel := chatctx.NewWithCancel(resp.sid, c.Query("chat_id"), "") defer cancel() // Use silent mode for regular HTTP requests, streaming for SSE silent := !strings.Contains(c.GetHeader("Accept"), "text/event-stream") resp.result, resp.err = neo.GenerateChatTitle(ctx, resp.content, c, silent) resp.send("result") } // handleGeneratePrompts handles generating prompts func (neo *DSL) handleGeneratePrompts(c *gin.Context) { var content string if c.Request.Method == "GET" { content = c.Query("content") } else { var body struct { Content string `json:"content"` } if err := c.BindJSON(&body); err != nil { // For SSE requests, send error message in SSE format if strings.Contains(c.GetHeader("Accept"), "text/event-stream") { c.Header("Content-Type", "text/event-stream;charset=utf-8") c.Header("Cache-Control", "no-cache") c.Header("Connection", "keep-alive") msg := message.New().Error("invalid request body").Done() msg.Write(c.Writer) return } c.JSON(400, gin.H{"message": "invalid request body", "code": 400}) return } content = body.Content } resp := &generateResponse{ c: c, sid: c.GetString("__sid"), content: content, } // For SSE requests, set headers before validation if strings.Contains(c.GetHeader("Accept"), "text/event-stream") { c.Header("Content-Type", "text/event-stream;charset=utf-8") c.Header("Cache-Control", "no-cache") c.Header("Connection", "keep-alive") } if !resp.validate() { return } ctx, cancel := chatctx.NewWithCancel(resp.sid, c.Query("chat_id"), "") defer cancel() // Use silent mode for regular HTTP requests, streaming for SSE silent := !strings.Contains(c.GetHeader("Accept"), "text/event-stream") resp.result, resp.err = neo.GeneratePrompts(ctx, resp.content, c, silent) resp.send("result") } // handleGenerateCustom handles generating custom content func (neo *DSL) handleGenerateCustom(c *gin.Context) { var content, genType, systemPrompt string if c.Request.Method == "GET" { content = c.Query("content") genType = c.Query("type") systemPrompt = c.Query("system_prompt") } else { var body struct { Content string `json:"content"` Type string `json:"type"` SystemPrompt string `json:"system_prompt"` } if err := c.BindJSON(&body); err != nil { c.JSON(400, gin.H{"message": "invalid request body", "code": 400}) return } content = body.Content genType = body.Type systemPrompt = body.SystemPrompt } resp := &generateResponse{ c: c, sid: c.GetString("__sid"), content: content, } if !resp.validate() { return } // Additional validations for custom generation if genType == "" { c.JSON(400, gin.H{"message": "type is required", "code": 400}) return } if systemPrompt == "" { c.JSON(400, gin.H{"message": "system_prompt is required", "code": 400}) return } ctx, cancel := chatctx.NewWithCancel(resp.sid, c.Query("chat_id"), "") defer cancel() // Use silent mode for regular HTTP requests, streaming for SSE silent := !strings.Contains(c.GetHeader("Accept"), "text/event-stream") resp.result, resp.err = neo.GenerateWithAI(ctx, resp.content, genType, systemPrompt, c, silent) resp.send("result") } // handleAssistantList handles listing assistants func (neo *DSL) handleAssistantList(c *gin.Context) { // Parse filter parameters filter := store.AssistantFilter{ Page: 1, PageSize: 20, } // Parse page and pagesize if page := c.Query("page"); page != "" { if n, err := strconv.Atoi(page); err == nil { filter.Page = n } } if pageSize := c.Query("pagesize"); pageSize != "" { if n, err := strconv.Atoi(pageSize); err == nil { filter.PageSize = n } } // Parse tags if tags := c.Query("tags"); tags != "" { filter.Tags = strings.Split(tags, ",") } // Parse keywords if keywords := c.Query("keywords"); keywords != "" { filter.Keywords = keywords } // Parse connector if connector := c.Query("connector"); connector != "" { filter.Connector = connector } // Parse select fields if selectFields := c.Query("select"); selectFields != "" { filter.Select = strings.Split(selectFields, ",") } // Parse built_in (support various boolean formats) if builtIn := c.Query("built_in"); builtIn != "" { val := parseBoolValue(builtIn) if val != nil { filter.BuiltIn = val } } // Parse mentionable (support various boolean formats) if mentionable := c.Query("mentionable"); mentionable != "" { val := parseBoolValue(mentionable) if val != nil { filter.Mentionable = val } } // Parse automated (support various boolean formats) if automated := c.Query("automated"); automated != "" { val := parseBoolValue(automated) if val != nil { filter.Automated = val } } // Parse assistant_id if assistantID := c.Query("assistant_id"); assistantID != "" { filter.AssistantID = assistantID } response, err := neo.Store.GetAssistants(filter) if err != nil { c.JSON(500, gin.H{"message": err.Error(), "code": 500}) c.Done() return } c.JSON(200, response) c.Done() } // parseBoolValue parses various string formats into a boolean pointer // Supports: 1, 0, "1", "0", "true", "false", etc. func parseBoolValue(value string) *bool { value = strings.ToLower(strings.TrimSpace(value)) switch value { case "1", "true", "yes", "on": v := true return &v case "0", "false", "no", "off": v := false return &v default: return nil } } // handleAssistantAPI handles the assistant API func (neo *DSL) handleAssistantCall(c *gin.Context) { assistantID := c.Param("id") if assistantID == "" { c.JSON(400, gin.H{"message": "assistant id is required", "code": 400}) c.Done() return } ast, err := assistant.Get(assistantID) if err != nil { c.JSON(500, gin.H{"message": err.Error(), "code": 500}) c.Done() return } sid := c.GetString("__sid") if sid == "" { c.JSON(400, gin.H{"message": "sid is required", "code": 400}) c.Done() return } payload := assistant.APIPayload{Sid: sid} if err := c.BindJSON(&payload); err != nil { c.JSON(400, gin.H{"message": "invalid request body", "code": 400}) c.Done() return } result, err := ast.Call(c, payload) if err != nil { c.JSON(500, gin.H{"message": err.Error(), "code": 500}) c.Done() return } c.JSON(200, result) c.Done() } // handleAssistantDetail handles getting a single assistant's details func (neo *DSL) handleAssistantDetail(c *gin.Context) { assistantID := c.Param("id") if assistantID == "" { c.JSON(400, gin.H{"message": "assistant id is required", "code": 400}) c.Done() return } filter := store.AssistantFilter{ AssistantID: assistantID, Page: 1, PageSize: 1, } response, err := neo.Store.GetAssistants(filter) if err != nil { c.JSON(500, gin.H{"message": err.Error(), "code": 500}) c.Done() return } if len(response.Data) == 0 { c.JSON(404, gin.H{"message": "assistant not found", "code": 404}) c.Done() return } c.JSON(200, map[string]interface{}{"data": response.Data[0]}) c.Done() } // handleAssistantSave handles creating or updating an assistant func (neo *DSL) handleAssistantSave(c *gin.Context) { var assistant map[string]interface{} if err := c.BindJSON(&assistant); err != nil { c.JSON(400, gin.H{"message": "invalid request body", "code": 400}) c.Done() return } id, err := neo.Store.SaveAssistant(assistant) if err != nil { c.JSON(500, gin.H{"message": err.Error(), "code": 500}) c.Done() return } // Update the assistant map with the returned ID if it's not already set if _, ok := assistant["assistant_id"]; !ok { assistant["assistant_id"] = id } c.JSON(200, gin.H{"message": "ok", "data": assistant}) c.Done() } // handleAssistantDelete handles deleting an assistant func (neo *DSL) handleAssistantDelete(c *gin.Context) { assistantID := c.Param("id") if assistantID == "" { c.JSON(400, gin.H{"message": "assistant id is required", "code": 400}) c.Done() return } err := neo.Store.DeleteAssistant(assistantID) if err != nil { c.JSON(500, gin.H{"message": err.Error(), "code": 500}) c.Done() return } c.JSON(200, gin.H{"message": "ok"}) c.Done() } // handleConnectors handles listing connectors func (neo *DSL) handleConnectors(c *gin.Context) { options := []map[string]interface{}{} // Filter and format connectors for id, conn := range connector.Connectors { if conn.Is(connector.OPENAI) || conn.Is(connector.MOAPI) { setting := conn.Setting() label := setting["label"] if label == nil || label == "" { label = setting["name"] } if label == nil || label == "" { label = id } options = append(options, map[string]interface{}{ "label": label, "value": id, }) } } c.JSON(200, gin.H{"data": options}) c.Done() } // handleAssistantTags handles getting all assistant tags func (neo *DSL) handleAssistantTags(c *gin.Context) { sid := c.GetString("__sid") if sid == "" { c.JSON(400, gin.H{"message": "sid is required", "code": 400}) c.Done() return } tags, err := neo.Store.GetAssistantTags() if err != nil { c.JSON(500, gin.H{"message": err.Error(), "code": 500}) c.Done() return } c.JSON(200, gin.H{"data": tags}) c.Done() }