@superatomai/sdk-node 0.0.2 → 0.0.3

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 CHANGED
@@ -436,6 +436,7 @@ interface SuperatomSDKConfig {
436
436
  userId?: string;
437
437
  type?: string;
438
438
  bundleDir?: string;
439
+ promptsDir?: string;
439
440
  ANTHROPIC_API_KEY?: string;
440
441
  GROQ_API_KEY?: string;
441
442
  LLM_PROVIDERS?: LLMProvider[];
@@ -1172,6 +1173,10 @@ declare class SuperatomSDK {
1172
1173
  private dashboardManager;
1173
1174
  private reportManager;
1174
1175
  constructor(config: SuperatomSDKConfig);
1176
+ /**
1177
+ * Initialize PromptLoader and load prompts into memory
1178
+ */
1179
+ private initializePromptLoader;
1175
1180
  /**
1176
1181
  * Initialize UserManager for the project
1177
1182
  */
package/dist/index.d.ts CHANGED
@@ -436,6 +436,7 @@ interface SuperatomSDKConfig {
436
436
  userId?: string;
437
437
  type?: string;
438
438
  bundleDir?: string;
439
+ promptsDir?: string;
439
440
  ANTHROPIC_API_KEY?: string;
440
441
  GROQ_API_KEY?: string;
441
442
  LLM_PROVIDERS?: LLMProvider[];
@@ -1172,6 +1173,10 @@ declare class SuperatomSDK {
1172
1173
  private dashboardManager;
1173
1174
  private reportManager;
1174
1175
  constructor(config: SuperatomSDKConfig);
1176
+ /**
1177
+ * Initialize PromptLoader and load prompts into memory
1178
+ */
1179
+ private initializePromptLoader;
1175
1180
  /**
1176
1181
  * Initialize UserManager for the project
1177
1182
  */