@civitai/client 0.2.0-beta.34 → 0.2.0-beta.36

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.
@@ -58,7 +58,8 @@ export type AiToolkitTrainingInput = TrainingInput & {
58
58
  | 'adafactor'
59
59
  | 'adagrad'
60
60
  | 'prodigy'
61
- | 'prodigy8bit';
61
+ | 'prodigy8bit'
62
+ | 'automagic';
62
63
  /**
63
64
  * The larger the Dim setting, the more learning information can be stored, but the possibility of learning unnecessary information other than the learning target increases. A larger Dim also increases LoRA file size.
64
65
  */
@@ -246,6 +247,9 @@ export type AgeClassifierLabel = {
246
247
  age: string;
247
248
  isMinor: boolean;
248
249
  boundingBox: Array<number>;
250
+ topK?: {
251
+ [key: string]: number;
252
+ } | null;
249
253
  };
250
254
  /**
251
255
  * Represents a single age detection in an image.
@@ -2646,7 +2650,9 @@ export type Qwen20bVariantImageGenInput = Qwen20bImageGenInput & {
2646
2650
  /**
2647
2651
  * AI Toolkit training for Qwen Image models
2648
2652
  */
2649
- export type QwenAiToolkitTrainingInput = AiToolkitTrainingInput & {} & {
2653
+ export type QwenAiToolkitTrainingInput = AiToolkitTrainingInput & {
2654
+ version?: 'latest' | '2509' | '2512';
2655
+ } & {
2650
2656
  ecosystem: 'qwen';
2651
2657
  };
2652
2658
  export type QwenImageGenInput = SdCppImageGenInput & {
@@ -2905,6 +2911,7 @@ export declare const SeedreamVersion: {
2905
2911
  readonly V3: 'v3';
2906
2912
  readonly V4: 'v4';
2907
2913
  readonly V4_5: 'v4.5';
2914
+ readonly V5_0_LITE: 'v5.0-lite';
2908
2915
  };
2909
2916
  export type SeedreamVersion = (typeof SeedreamVersion)[keyof typeof SeedreamVersion];
2910
2917
  /**
@@ -264,6 +264,7 @@ export const SeedreamVersion = {
264
264
  V3: 'v3',
265
265
  V4: 'v4',
266
266
  V4_5: 'v4.5',
267
+ V5_0_LITE: 'v5.0-lite',
267
268
  };
268
269
  /**
269
270
  * The moderation status of the training data
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@civitai/client",
3
- "version": "0.2.0-beta.34",
3
+ "version": "0.2.0-beta.36",
4
4
  "description": "Civitai's javascript client for generating ai content",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",