后端: 1. LLM 独立服务与统一计费出口落地:新增 `cmd/llm`、`client/llm` 与 `services/llm/rpc`,补齐 BillingContext、CreditBalanceGuard、价格规则解析、stream usage 归集与 `credit.charge.requested` outbox 发布,active-scheduler / agent / course / memory / gateway fallback 全部改走 llm zrpc,不再各自本地初始化模型。 2. TokenStore 收口为 Credit 权威账本:新增 credit account / ledger / product / order / price-rule / reward-rule 能力与 Redis 快照缓存,扩展 tokenstore rpc/client 支撑余额快照、消耗看板、商品、订单、流水、价格规则和奖励规则,并接入 LLM charge 事件消费完成 Credit 扣费落账。 3. 计费旧链路下线与网关切口切换:`/token-store` 语义整体切到 `/credit-store`,agent chat 移除旧 TokenQuotaGuard,userauth 的 CheckTokenQuota / AdjustTokenUsage 改为废弃,聊天历史落库不再同步旧 token 额度账本,course 图片解析请求补 user_id 进入新计费口径。 前端: 4. 计划广场从 mock 数据切到真实接口:新增 forum api/types,首页支持真实列表、标签、搜索、防抖、点赞、导入和发布计划,详情页补齐帖子详情、评论树、回复和删除评论链路,同时补上“至少一个标签”的前后端约束与默认标签兜底。 5. 商店页切到 Credit 体系并重做展示:顶部改为余额 + Credit/Token 消耗看板,支持 24h/7d/30d/all 周期切换;套餐区展示原价与当前价;历史区改为当前用户 Credit 流水并支持查看更多,整体视觉和交互同步收口。 仓库: 6. 配置与本地启动体系补齐 llm / outbox 编排:`config.example.yaml` 增加 llm rpc 和统一 outbox service 配置,`dev-common.ps1` 把 llm 纳入多服务依赖并自动建 Kafka topic,`docker-compose.yml` 同步初始化 agent/task/memory/active-scheduler/notification/taskclass-forum/llm/token-store 全量 outbox topic。
153 lines
4.6 KiB
Go
153 lines
4.6 KiB
Go
package llm
|
||
|
||
import (
|
||
"context"
|
||
"errors"
|
||
"log"
|
||
"time"
|
||
|
||
llmdao "github.com/LoveLosita/smartflow/backend/services/llm/dao"
|
||
creditcontracts "github.com/LoveLosita/smartflow/backend/shared/contracts/creditstore"
|
||
)
|
||
|
||
var (
|
||
ErrRuntimeServiceNotReady = errors.New("llm runtime service dependency not initialized")
|
||
ErrUnsupportedModelAlias = errors.New("llm model alias is unsupported")
|
||
ErrCreditBalanceBlocked = errors.New("credit balance is insufficient")
|
||
)
|
||
|
||
const (
|
||
defaultCreditBlockedTTL = 5 * time.Minute
|
||
defaultCreditSnapshotTimeout = time.Second
|
||
)
|
||
|
||
type CreditBalanceSnapshotProvider interface {
|
||
GetCreditBalanceSnapshot(ctx context.Context, userID uint64) (*creditcontracts.CreditBalanceSnapshot, error)
|
||
}
|
||
|
||
// CreditBalanceGuard 负责在真正发起 LLM 调用前做一次轻量余额准入。
|
||
type CreditBalanceGuard struct {
|
||
cacheDAO *llmdao.CacheDAO
|
||
snapshotProvider CreditBalanceSnapshotProvider
|
||
blockTTL time.Duration
|
||
snapshotTimeout time.Duration
|
||
}
|
||
|
||
type CreditBalanceGuardOptions struct {
|
||
CacheDAO *llmdao.CacheDAO
|
||
SnapshotProvider CreditBalanceSnapshotProvider
|
||
BlockTTL time.Duration
|
||
SnapshotTimeout time.Duration
|
||
}
|
||
|
||
func NewCreditBalanceGuard(opts CreditBalanceGuardOptions) *CreditBalanceGuard {
|
||
blockTTL := opts.BlockTTL
|
||
if blockTTL <= 0 {
|
||
blockTTL = defaultCreditBlockedTTL
|
||
}
|
||
snapshotTimeout := opts.SnapshotTimeout
|
||
if snapshotTimeout <= 0 {
|
||
snapshotTimeout = defaultCreditSnapshotTimeout
|
||
}
|
||
return &CreditBalanceGuard{
|
||
cacheDAO: opts.CacheDAO,
|
||
snapshotProvider: opts.SnapshotProvider,
|
||
blockTTL: blockTTL,
|
||
snapshotTimeout: snapshotTimeout,
|
||
}
|
||
}
|
||
|
||
// Guard 只做 Redis 快照级别的 fail-open 准入检查。
|
||
//
|
||
// 设计说明:
|
||
// 1. 先查 blocked key,命中则直接拒绝,避免每次都回源余额快照;
|
||
// 2. 再查余额快照;若快照明确余额 <= 0,则写 blocked key 并拒绝;
|
||
// 3. Redis 读失败或快照缺失时保持放行,避免基础设施抖动直接阻断全部 LLM 调用。
|
||
func (g *CreditBalanceGuard) Guard(ctx context.Context, billing BillingContext) error {
|
||
if g == nil || g.cacheDAO == nil {
|
||
return nil
|
||
}
|
||
|
||
billing = billing.Normalize()
|
||
if billing.UserID == 0 || billing.SkipCharge {
|
||
return nil
|
||
}
|
||
|
||
blocked, err := g.cacheDAO.IsUserCreditBlocked(ctx, billing.UserID)
|
||
if err != nil {
|
||
log.Printf("llm credit guard read blocked key failed: user_id=%d err=%v", billing.UserID, err)
|
||
return nil
|
||
}
|
||
if blocked {
|
||
return ErrCreditBalanceBlocked
|
||
}
|
||
|
||
snapshot, found, err := g.cacheDAO.GetUserCreditBalanceSnapshot(ctx, billing.UserID)
|
||
if err != nil {
|
||
log.Printf("llm credit guard read balance snapshot failed: user_id=%d err=%v", billing.UserID, err)
|
||
return nil
|
||
}
|
||
if !found || snapshot == nil {
|
||
snapshot, err = g.fetchSnapshot(ctx, billing.UserID)
|
||
if err != nil {
|
||
log.Printf("llm credit guard fetch balance snapshot failed: user_id=%d err=%v", billing.UserID, err)
|
||
return nil
|
||
}
|
||
}
|
||
if snapshot == nil {
|
||
return nil
|
||
}
|
||
if snapshot.AvailableCredit > 0 {
|
||
return nil
|
||
}
|
||
|
||
if err = g.cacheDAO.SetUserCreditBlocked(ctx, billing.UserID, g.blockTTL); err != nil {
|
||
log.Printf("llm credit guard set blocked key failed: user_id=%d err=%v", billing.UserID, err)
|
||
}
|
||
return ErrCreditBalanceBlocked
|
||
}
|
||
|
||
func (g *CreditBalanceGuard) fetchSnapshot(ctx context.Context, userID uint64) (*llmdao.CreditBalanceSnapshot, error) {
|
||
if g == nil || g.snapshotProvider == nil || userID == 0 {
|
||
return nil, nil
|
||
}
|
||
|
||
fetchCtx := ctx
|
||
if fetchCtx == nil {
|
||
fetchCtx = context.Background()
|
||
}
|
||
if g.snapshotTimeout > 0 {
|
||
var cancel context.CancelFunc
|
||
fetchCtx, cancel = context.WithTimeout(context.WithoutCancel(fetchCtx), g.snapshotTimeout)
|
||
defer cancel()
|
||
}
|
||
|
||
snapshotView, err := g.snapshotProvider.GetCreditBalanceSnapshot(fetchCtx, userID)
|
||
if err != nil {
|
||
return nil, err
|
||
}
|
||
if snapshotView == nil {
|
||
return nil, nil
|
||
}
|
||
|
||
snapshot := &llmdao.CreditBalanceSnapshot{
|
||
AvailableCredit: snapshotView.Balance,
|
||
UpdatedAt: time.Now(),
|
||
}
|
||
if err = g.cacheDAO.SetUserCreditBalanceSnapshot(fetchCtx, userID, *snapshot, 0); err != nil {
|
||
log.Printf("llm credit guard backfill balance snapshot failed: user_id=%d err=%v", userID, err)
|
||
}
|
||
|
||
if snapshotView.IsBlocked || snapshotView.Balance <= 0 {
|
||
if err = g.cacheDAO.SetUserCreditBlocked(fetchCtx, userID, g.blockTTL); err != nil {
|
||
log.Printf("llm credit guard backfill blocked key failed: user_id=%d err=%v", userID, err)
|
||
}
|
||
return snapshot, nil
|
||
}
|
||
|
||
if err = g.cacheDAO.DeleteUserCreditBlocked(fetchCtx, userID); err != nil {
|
||
log.Printf("llm credit guard clear blocked key failed: user_id=%d err=%v", userID, err)
|
||
}
|
||
return snapshot, nil
|
||
}
|