Documentation
¶
Index ¶
Constants ¶
View Source
const ( USER_COLLECTION = "user" ACCOUNT_COLLECTION = "account" )
View Source
const (
APP_COLLECTION = "app"
)
View Source
const (
CHAT_COLLECTION = "chat"
)
View Source
const (
KEY_COLLECTION = "key"
)
View Source
const (
MODEL_AGENT_COLLECTION = "model_agent"
)
View Source
const (
MODEL_COLLECTION = "model"
)
View Source
const (
SYS_ADMIN_COLLECTION = "sys_admin"
)
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Account ¶
type Account struct {
gmeta.Meta `collection:"account" bson:"-"`
Id string `bson:"_id,omitempty"` // ID
Uid string `bson:"uid,omitempty"` // 用户主键ID
UserId int `bson:"user_id,omitempty"` // 用户ID
Account string `bson:"account,omitempty"` // 账号
Password string `bson:"password,omitempty"` // 密码
Salt string `bson:"salt,omitempty"` // 盐
LoginIP string `bson:"login_ip,omitempty"` // 登录IP
LoginTime int64 `bson:"login_time,omitempty"` // 登录时间
Remark string `bson:"remark,omitempty"` // 备注
Status int `bson:"status,omitempty"` // 状态[1:正常, 2:禁用, -1:删除]
Creator string `bson:"creator,omitempty"` // 创建人
Updater string `bson:"updater,omitempty"` // 更新人
CreatedAt int64 `bson:"created_at,omitempty"` // 创建时间
UpdatedAt int64 `bson:"updated_at,omitempty"` // 更新时间
}
type App ¶
type App struct {
gmeta.Meta `collection:"app" bson:"-"`
AppId int `bson:"app_id,omitempty"` // 应用ID
Name string `bson:"name,omitempty"` // 应用名称
Type int `bson:"type,omitempty"` // 应用类型
Models []string `bson:"models"` // 模型权限
IsLimitQuota bool `bson:"is_limit_quota"` // 是否限制额度
Quota int `bson:"quota"` // 剩余额度
UsedQuota int `bson:"used_quota,omitempty"` // 已用额度
RPM int `bson:"rpm,omitempty"` // 每分钟请求数
RPD int `bson:"rpd,omitempty"` // 每天的请求数
IpWhitelist []string `bson:"ip_whitelist"` // IP白名单
IpBlacklist []string `bson:"ip_blacklist"` // IP黑名单
Remark string `bson:"remark"` // 备注
Status int `bson:"status,omitempty"` // 状态[1:正常, 2:禁用, -1:删除]
UserId int `bson:"user_id,omitempty"` // 用户ID
Creator string `bson:"creator,omitempty"` // 创建人
Updater string `bson:"updater,omitempty"` // 更新人
CreatedAt int64 `bson:"created_at,omitempty"` // 创建时间
UpdatedAt int64 `bson:"updated_at,omitempty"` // 更新时间
}
type Chat ¶
type Chat struct {
gmeta.Meta `collection:"chat" bson:"-"`
TraceId string `bson:"trace_id,omitempty"` // 日志ID
UserId int `bson:"user_id,omitempty"` // 用户ID
AppId int `bson:"app_id,omitempty"` // 应用ID
Corp string `bson:"corp,omitempty"` // 公司[OpenAI;Baidu;Xfyun;Aliyun;ZhipuAI;Google;DeepSeek;Midjourney]
ModelId string `bson:"model_id,omitempty"` // 模型ID
Name string `bson:"name,omitempty"` // 模型名称
Model string `bson:"model,omitempty"` // 模型
Type int `bson:"type,omitempty"` // 模型类型[1:文生文, 2:文生图, 3:图生文, 4:图生图, 5:文生语音, 6:语音生文, 100:多模态]
Key string `bson:"key,omitempty"` // 密钥
IsEnableModelAgent bool `bson:"is_enable_model_agent,omitempty"` // 是否启用模型代理
ModelAgentId string `bson:"model_agent_id,omitempty"` // 模型代理ID
ModelAgent *ModelAgent `bson:"model_agent,omitempty"` // 模型代理信息
IsForward bool `bson:"is_forward,omitempty"` // 是否启用模型转发
ForwardConfig *ForwardConfig `bson:"forward_config,omitempty"` // 模型转发配置
IsSmartMatch bool `bson:"is_smart_match,omitempty"` // 是否智能匹配
RealModelId string `bson:"real_model_id,omitempty"` // 真实模型ID
RealModelName string `bson:"real_model_name,omitempty"` // 真实模型名称
RealModel string `bson:"real_model,omitempty"` // 真实模型
Stream bool `bson:"stream,omitempty"` // 流式
Messages []Message `bson:"messages,omitempty"` // 完整提示(提问)
Prompt string `bson:"prompt,omitempty"` // 提示(提问)
Completion string `bson:"completion,omitempty"` // 补全(回答)
BillingMethod int `bson:"billing_method,omitempty"` // 计费方式[1:倍率, 2:固定额度]
PromptRatio float64 `bson:"prompt_ratio,omitempty"` // 提示倍率(提问倍率)
CompletionRatio float64 `bson:"completion_ratio,omitempty"` // 补全倍率(回答倍率)
PromptTokens int `bson:"prompt_tokens,omitempty"` // 提示令牌数(提问令牌数)
CompletionTokens int `bson:"completion_tokens,omitempty"` // 补全令牌数(回答令牌数)
TotalTokens int `bson:"total_tokens,omitempty"` // 总令牌数
FixedQuota int `bson:"fixed_quota,omitempty"` // 固定额度
ConnTime int64 `bson:"conn_time,omitempty"` // 连接时间
Duration int64 `bson:"duration,omitempty"` // 持续时间
TotalTime int64 `bson:"total_time,omitempty"` // 总时间
InternalTime int64 `bson:"internal_time,omitempty"` // 内耗时间
ReqTime int64 `bson:"req_time,omitempty"` // 请求时间
ReqDate string `bson:"req_date,omitempty"` // 请求日期
ClientIp string `bson:"client_ip,omitempty"` // 客户端IP
RemoteIp string `bson:"remote_ip,omitempty"` // 远程IP
LocalIp string `bson:"local_ip,omitempty"` // 本地IP
ErrMsg string `bson:"err_msg,omitempty"` // 错误信息
IsRetry bool `bson:"is_retry,omitempty"` // 是否重试
Retry *Retry `bson:"retry,omitempty"` // 重试
Status int `bson:"status,omitempty"` // 状态[1:成功, -1:失败, 2:中止, 3:重试]
Creator string `bson:"creator,omitempty"` // 创建人
Updater string `bson:"updater,omitempty"` // 更新人
CreatedAt int64 `bson:"created_at,omitempty"` // 创建时间
UpdatedAt int64 `bson:"updated_at,omitempty"` // 更新时间
}
type ForwardConfig ¶ added in v0.2.0
type ForwardConfig struct {
ForwardRule int `bson:"forward_rule,omitempty"` // 转发规则[1:全部转发, 2:按关键字]
MatchRule []int `bson:"match_rule,omitempty"` // 匹配规则[1:智能匹配, 2:正则匹配]
TargetModel string `bson:"target_model,omitempty"` // 转发规则为1时的目标模型
DecisionModel string `bson:"decision_model,omitempty"` // 转发规则为2时并且匹配规则为1时的判定模型
Keywords []string `bson:"keywords,omitempty"` // 转发规则为2时的关键字
TargetModels []string `bson:"target_models,omitempty"` // 转发规则为2时的目标模型
}
type Key ¶
type Key struct {
gmeta.Meta `collection:"key" bson:"-"`
UserId int `bson:"user_id,omitempty"` // 用户ID
AppId int `bson:"app_id,omitempty"` // 应用ID
Corp string `bson:"corp,omitempty"` // 公司[OpenAI;Baidu;Xfyun;Aliyun;ZhipuAI;Google;DeepSeek;Midjourney]
Key string `bson:"key,omitempty"` // 密钥
Type int `bson:"type,omitempty"` // 密钥类型[1:应用, 2:模型]
Models []string `bson:"models"` // 模型
ModelAgents []string `bson:"model_agents"` // 模型代理
IsAgentsOnly bool `bson:"is_agents_only"` // 是否代理专用
IsLimitQuota bool `bson:"is_limit_quota"` // 是否限制额度
Quota int `bson:"quota"` // 剩余额度
UsedQuota int `bson:"used_quota,omitempty"` // 已用额度
RPM int `bson:"rpm,omitempty"` // 每分钟请求数
RPD int `bson:"rpd,omitempty"` // 每天的请求数
IpWhitelist []string `bson:"ip_whitelist"` // IP白名单
IpBlacklist []string `bson:"ip_blacklist"` // IP黑名单
Remark string `bson:"remark"` // 备注
Status int `bson:"status,omitempty"` // 状态[1:正常, 2:禁用, -1:删除]
Creator string `bson:"creator,omitempty"` // 创建人
Updater string `bson:"updater,omitempty"` // 更新人
CreatedAt int64 `bson:"created_at,omitempty"` // 创建时间
UpdatedAt int64 `bson:"updated_at,omitempty"` // 更新时间
}
type Model ¶
type Model struct {
gmeta.Meta `collection:"model" bson:"-"`
Corp string `bson:"corp,omitempty"` // 公司[OpenAI;Baidu;Xfyun;Aliyun;ZhipuAI;Google;DeepSeek;Midjourney]
Name string `bson:"name,omitempty"` // 模型名称
Model string `bson:"model,omitempty"` // 模型
Type int `bson:"type,omitempty"` // 模型类型[1:文生文, 2:文生图, 3:图生文, 4:图生图, 5:文生语音, 6:语音生文, 100:多模态]
BaseUrl string `bson:"base_url"` // 模型地址
Path string `bson:"path"` // 模型路径
Prompt string `bson:"prompt"` // 预设提示词
BillingMethod int `bson:"billing_method,omitempty"` // 计费方式[1:倍率, 2:固定额度]
PromptRatio float64 `bson:"prompt_ratio,omitempty"` // 提示倍率(提问倍率)
CompletionRatio float64 `bson:"completion_ratio,omitempty"` // 补全倍率(回答倍率)
FixedQuota int `bson:"fixed_quota"` // 固定额度
DataFormat int `bson:"data_format,omitempty"` // 数据格式[1:统一格式, 2:官方格式]
IsPublic bool `bson:"is_public"` // 是否公开
IsEnableModelAgent bool `bson:"is_enable_model_agent"` // 是否启用模型代理
ModelAgents []string `bson:"model_agents"` // 模型代理
IsForward bool `bson:"is_forward"` // 是否启用模型转发
ForwardConfig *ForwardConfig `bson:"forward_config,omitempty"` // 模型转发配置
Remark string `bson:"remark"` // 备注
Status int `bson:"status,omitempty"` // 状态[1:正常, 2:禁用, -1:删除]
Creator string `bson:"creator,omitempty"` // 创建人
Updater string `bson:"updater,omitempty"` // 更新人
CreatedAt int64 `bson:"created_at,omitempty"` // 创建时间
UpdatedAt int64 `bson:"updated_at,omitempty"` // 更新时间
}
type ModelAgent ¶
type ModelAgent struct {
gmeta.Meta `collection:"model_agent" bson:"-"`
Corp string `bson:"corp,omitempty"` // 公司[OpenAI;Baidu;Xfyun;Aliyun;ZhipuAI;Google;DeepSeek;Midjourney]
Name string `bson:"name,omitempty"` // 模型代理名称
BaseUrl string `bson:"base_url,omitempty"` // 模型代理地址
Path string `bson:"path"` // 模型代理地址路径
Weight int `bson:"weight"` // 权重
Remark string `bson:"remark"` // 备注
Status int `bson:"status,omitempty"` // 状态[1:正常, 2:禁用, -1:删除]
Creator string `bson:"creator,omitempty"` // 创建人
Updater string `bson:"updater,omitempty"` // 更新人
CreatedAt int64 `bson:"created_at,omitempty"` // 创建时间
UpdatedAt int64 `bson:"updated_at,omitempty"` // 更新时间
}
type SysAdmin ¶
type SysAdmin struct {
gmeta.Meta `collection:"sys_admin" bson:"-"`
Id string `bson:"_id,omitempty"` // ID
UserId int `bson:"user_id,omitempty"` // 用户ID
Name string `bson:"name,omitempty"` // 姓名
Avatar string `bson:"avatar,omitempty"` // 头像
Email string `bson:"email,omitempty"` // 邮箱
Phone string `bson:"phone,omitempty"` // 手机号
Account string `bson:"account,omitempty"` // 账号
Password string `bson:"password,omitempty"` // 密码
Salt string `bson:"salt,omitempty"` // 盐
LoginIP string `bson:"login_ip,omitempty"` // 登录IP
LoginTime int64 `bson:"login_time,omitempty"` // 登录时间
Remark string `bson:"remark,omitempty"` // 备注
Status int `bson:"status,omitempty"` // 状态[1:正常, 2:禁用, -1:删除]
Creator string `bson:"creator,omitempty"` // 创建人
Updater string `bson:"updater,omitempty"` // 更新人
CreatedAt int64 `bson:"created_at,omitempty"` // 创建时间
UpdatedAt int64 `bson:"updated_at,omitempty"` // 更新时间
}
type User ¶
type User struct {
gmeta.Meta `collection:"user" bson:"-"`
Id string `bson:"_id,omitempty"` // ID
UserId int `bson:"user_id,omitempty"` // 用户ID
Name string `bson:"name,omitempty"` // 姓名
Avatar string `bson:"avatar,omitempty"` // 头像
Email string `bson:"email,omitempty"` // 邮箱
Phone string `bson:"phone,omitempty"` // 手机号
VipLevel int `bson:"vip_level,omitempty"` // 会员等级
Quota int `bson:"quota"` // 剩余额度
UsedQuota int `bson:"used_quota,omitempty"` // 已用额度
Models []string `bson:"models"` // 模型权限
Remark string `bson:"remark,omitempty"` // 备注
Status int `bson:"status,omitempty"` // 状态[1:正常, 2:禁用, -1:删除]
Creator string `bson:"creator,omitempty"` // 创建人
Updater string `bson:"updater,omitempty"` // 更新人
CreatedAt int64 `bson:"created_at,omitempty"` // 创建时间
UpdatedAt int64 `bson:"updated_at,omitempty"` // 更新时间
}
Click to show internal directories.
Click to hide internal directories.