Type Alias: GatewayInferenceFineTuningIntegration
type GatewayInferenceFineTuningIntegration = {
[key: string]: unknown;
type: "wandb";
wandb: {
[key: string]: unknown;
project: string;
name?: string | null;
entity?: string | null;
tags?: string[];
};
};
Defined in: src/models/ai-gateway-inference.ts:6111
Portkey FineTuningIntegration; additive response fields are preserved.
Example
`GatewayInferenceFineTuningIntegrationSchema.parse(value);`
Indexable
[key: string]: unknown
Properties
type
type: "wandb";
Defined in: src/models/ai-gateway-inference.ts:6112
wandb
wandb: {
[key: string]: unknown;
project: string;
name?: string | null;
entity?: string | null;
tags?: string[];
};
Defined in: src/models/ai-gateway-inference.ts:6113
Index Signature
[key: string]: unknown
project
project: string;
name?
optional name?: string | null;
entity?
optional entity?: string | null;
tags?
optional tags?: string[];