ugcinc 2.69.0 → 2.71.0
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/types.d.ts +10 -0
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -731,6 +731,15 @@ export interface LLMOutputField {
|
|
|
731
731
|
/** For array types - the item type */
|
|
732
732
|
items?: 'string' | 'number' | 'boolean';
|
|
733
733
|
}
|
|
734
|
+
/**
|
|
735
|
+
* API Keys configuration for LLM providers (user can bring their own)
|
|
736
|
+
*/
|
|
737
|
+
export interface LLMApiKeys {
|
|
738
|
+
openai?: string;
|
|
739
|
+
claude?: string;
|
|
740
|
+
gemini?: string;
|
|
741
|
+
groq?: string;
|
|
742
|
+
}
|
|
734
743
|
/**
|
|
735
744
|
* LLM Node Configuration
|
|
736
745
|
*/
|
|
@@ -744,6 +753,7 @@ export interface LLMNodeConfig {
|
|
|
744
753
|
useStructuredOutput?: boolean;
|
|
745
754
|
imageInputRefs?: string[];
|
|
746
755
|
videoInputRefs?: string[];
|
|
756
|
+
apiKeys?: LLMApiKeys;
|
|
747
757
|
}
|
|
748
758
|
export interface WorkflowNodeDefinition {
|
|
749
759
|
id: string;
|