@gpt-core/client 0.6.91 → 0.6.92
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.
- package/dist/index.d.mts +3 -1
- package/dist/index.d.ts +3 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -185,6 +185,7 @@ type TrainingSession = {
|
|
|
185
185
|
* Field included by default.
|
|
186
186
|
*/
|
|
187
187
|
corrections_count: number;
|
|
188
|
+
document_filename?: string | null | unknown;
|
|
188
189
|
/**
|
|
189
190
|
* Async calculated score of how much this session improved the model. Field included by default.
|
|
190
191
|
*/
|
|
@@ -209,6 +210,8 @@ type TrainingSession = {
|
|
|
209
210
|
* Field included by default.
|
|
210
211
|
*/
|
|
211
212
|
updated_at: unknown;
|
|
213
|
+
user_email?: string | null | unknown;
|
|
214
|
+
user_name?: string | null | unknown;
|
|
212
215
|
};
|
|
213
216
|
id: string;
|
|
214
217
|
/**
|
|
@@ -9377,7 +9380,6 @@ type GetTrainingSessionsByIdData = {
|
|
|
9377
9380
|
fields?: {
|
|
9378
9381
|
[key: string]: unknown;
|
|
9379
9382
|
};
|
|
9380
|
-
agent_id?: string;
|
|
9381
9383
|
};
|
|
9382
9384
|
url: "/training_sessions/{id}";
|
|
9383
9385
|
};
|
package/dist/index.d.ts
CHANGED
|
@@ -185,6 +185,7 @@ type TrainingSession = {
|
|
|
185
185
|
* Field included by default.
|
|
186
186
|
*/
|
|
187
187
|
corrections_count: number;
|
|
188
|
+
document_filename?: string | null | unknown;
|
|
188
189
|
/**
|
|
189
190
|
* Async calculated score of how much this session improved the model. Field included by default.
|
|
190
191
|
*/
|
|
@@ -209,6 +210,8 @@ type TrainingSession = {
|
|
|
209
210
|
* Field included by default.
|
|
210
211
|
*/
|
|
211
212
|
updated_at: unknown;
|
|
213
|
+
user_email?: string | null | unknown;
|
|
214
|
+
user_name?: string | null | unknown;
|
|
212
215
|
};
|
|
213
216
|
id: string;
|
|
214
217
|
/**
|
|
@@ -9377,7 +9380,6 @@ type GetTrainingSessionsByIdData = {
|
|
|
9377
9380
|
fields?: {
|
|
9378
9381
|
[key: string]: unknown;
|
|
9379
9382
|
};
|
|
9380
|
-
agent_id?: string;
|
|
9381
9383
|
};
|
|
9382
9384
|
url: "/training_sessions/{id}";
|
|
9383
9385
|
};
|
package/package.json
CHANGED