joye-backend-utility 8.2.0 → 8.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import { Schema } from 'mongoose';
|
|
2
2
|
/**
|
|
3
|
-
* Provider-neutral LLM batch job store (Gemini Batch
|
|
3
|
+
* Provider-neutral LLM batch job store (Gemini Batch + Claude Message Batches).
|
|
4
4
|
* Collection / model name: `Llm_Batch_Job`
|
|
5
|
+
* Item rows store metadata only — provider request bodies are rebuilt at submit time.
|
|
5
6
|
*/
|
|
6
7
|
/** Item-level statuses for one request inside an LLM batch job. */
|
|
7
8
|
export declare type LlmBatchItemStatus = 'queued' | 'submitted' | 'succeeded' | 'failed' | 'timed_out' | 'fallback_sync' | 'fallback_local';
|
|
@@ -12,8 +12,7 @@ const LlmBatchJobItemSchema = new mongoose_1.Schema({
|
|
|
12
12
|
bucket: { type: Number, required: false },
|
|
13
13
|
status: { type: String, required: true, default: 'queued' },
|
|
14
14
|
error: { type: String, required: false },
|
|
15
|
-
|
|
16
|
-
request: { type: mongoose_1.Schema.Types.Mixed, required: true },
|
|
15
|
+
// Intentionally no `request` payload — rebuild at submit from analyticsId to keep docs small.
|
|
17
16
|
}, { _id: false });
|
|
18
17
|
exports.LlmBatchJobSchema = new mongoose_1.Schema({
|
|
19
18
|
/** `gemini` | `claude` — required so providers never share an open job. */
|
|
@@ -181,6 +181,11 @@ const UserAnalytic = new mongoose_1.Schema({
|
|
|
181
181
|
type: Number,
|
|
182
182
|
required: false,
|
|
183
183
|
},
|
|
184
|
+
/** Gemini thinking / reasoning tokens (thoughtsTokenCount). */
|
|
185
|
+
thoughtsToken: {
|
|
186
|
+
type: Number,
|
|
187
|
+
required: false,
|
|
188
|
+
},
|
|
184
189
|
serviceTier: {
|
|
185
190
|
type: String,
|
|
186
191
|
required: false,
|