0794474c04
- 新增 BaseModel 结构体,包含统一主键和时间字段 - 定义 JanusProvider、JanusModel、Channel、APIKey 四个业务模型结构 - 引入 Status 枚举表示启用/禁用状态 - 完成对应数据库建表 SQL 迁移脚本 - 新增 router 包及 API 健康检查路由注册实现 - 优化 main.go,使用 router 包统一路由注册管理 - 补充模型中字段的 GORM 和 JSON 标签规范
30 lines
643 B
Go
30 lines
643 B
Go
package model
|
|
|
|
import (
|
|
"synoth.com/janus/internal/core"
|
|
"synoth.com/janus/internal/enum"
|
|
)
|
|
|
|
// Type 模型类型
|
|
type Type string
|
|
|
|
// JanusModel 供应商下可用的AI模型
|
|
type JanusModel struct {
|
|
core.BaseModel
|
|
// ProviderID 供应商ID
|
|
ProviderID int64 `gorm:"not null" json:"provider_id"`
|
|
// Name 模型名称
|
|
Name string `gorm:"not null" json:"name"`
|
|
// 模型类型
|
|
ModelType Type `gorm:"not null" json:"model_type"`
|
|
// 模型状态
|
|
Status enum.Status `gorm:"default:1;not null" json:"status"`
|
|
}
|
|
|
|
const (
|
|
Chat Type = "chat"
|
|
Completion Type = "completion"
|
|
Embedding Type = "embedding"
|
|
Image Type = "image"
|
|
)
|