jim800121chen c54f16fca0 Initial commit: visionA monorepo with local-tool subproject
local-tool/: visionA-local desktop app
- M1: Wails shell + Go server + Next.js UI + Mock mode (macOS dmg ready)
- M2: i18n (zh-TW/en) + Settings 4-tab refactor
- M3: Embedded Python 3.12 runtime (python-build-standalone) + KneronPLUS wheels
- M4: Windows Inno Setup script (build on Windows runner)
- M5: Linux AppImage script + udev rule (build on Linux runner)
- M6: ffmpeg (GPL, pending legal review) + yt-dlp bundled
- Lifecycle: watchServer health check, fatal native dialog,
            Wails IPC raise endpoint, stale process cleanup

.autoflow/: full PRD / Design Spec / Architecture / Testing docs
            (4 rounds tri-party discussion + cross review)
.github/workflows/: macOS / Windows / Linux build CI

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-11 22:10:38 +08:00

48 lines
890 B
Go

package handlers
import (
"visiona-local/server/internal/model"
"github.com/gin-gonic/gin"
)
type ModelHandler struct {
repo *model.Repository
}
func NewModelHandler(repo *model.Repository) *ModelHandler {
return &ModelHandler{repo: repo}
}
func (h *ModelHandler) ListModels(c *gin.Context) {
filter := model.ModelFilter{
TaskType: c.Query("type"),
Hardware: c.Query("hardware"),
Query: c.Query("q"),
}
models, total := h.repo.List(filter)
c.JSON(200, gin.H{
"success": true,
"data": gin.H{
"models": models,
"total": total,
},
})
}
func (h *ModelHandler) GetModel(c *gin.Context) {
id := c.Param("id")
m, err := h.repo.GetByID(id)
if err != nil {
c.JSON(404, gin.H{
"success": false,
"error": gin.H{
"code": "MODEL_NOT_FOUND",
"message": "Model not found",
},
})
return
}
c.JSON(200, gin.H{"success": true, "data": m})
}