@ideascol/agents-generator-sdk 0.7.3 → 0.8.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.
@@ -1,3 +1,3 @@
1
1
  import { Command } from '@ideascol/cli-maker';
2
- declare let commandAgents: Command;
2
+ declare const commandAgents: Command;
3
3
  export default commandAgents;
@@ -0,0 +1,6 @@
1
+ import type { CLI, Command } from '@ideascol/cli-maker';
2
+ /**
3
+ * Factory that creates the chat command. Receives the CLI instance
4
+ * to read config values and start the interactive session.
5
+ */
6
+ export declare function createChatCommand(cliInstance: CLI): Command;
@@ -1,3 +1,3 @@
1
1
  import { Command } from '@ideascol/cli-maker';
2
- declare let commandConversations: Command;
2
+ declare const commandConversations: Command;
3
3
  export default commandConversations;
@@ -1,3 +1,3 @@
1
1
  import { Command } from '@ideascol/cli-maker';
2
- declare let rootCommand: Command;
2
+ declare const rootCommand: Command;
3
3
  export default rootCommand;