merge: 合并 feat/tokentime 到 develop,解决 limiter/scenarioRepo 参数冲突

This commit is contained in:
hhs
2026-06-21 17:42:48 +08:00
32 changed files with 2927 additions and 386 deletions

View File

@@ -214,7 +214,7 @@ func TestNewHistoryLambda_ReturnsNonNil(t *testing.T) {
fetcher := func(ctx context.Context, sessionID string, limit int) ([]models.Message, error) {
return nil, nil
}
lambda := NewHistoryLambda(fetcher, 10)
lambda := NewHistoryLambda(fetcher, nil, 10)
require.NotNil(t, lambda)
}