family-ai-agent 1.0.4 → 1.0.5
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/cli/index.js +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
- package/src/cli/index.ts +1 -1
- package/src/index.ts +1 -1
package/dist/cli/index.js
CHANGED
|
@@ -260,7 +260,7 @@ async function runQuery(query) {
|
|
|
260
260
|
program
|
|
261
261
|
.name('family-ai-agent')
|
|
262
262
|
.description('Family AI Agent - Your AI Family for All Tasks')
|
|
263
|
-
.version('1.0.
|
|
263
|
+
.version('1.0.5');
|
|
264
264
|
// Add config command group
|
|
265
265
|
program.addCommand(createConfigCommand());
|
|
266
266
|
program
|
package/dist/index.d.ts
CHANGED
|
@@ -30,7 +30,7 @@ export { config, getDatabaseUrl, getRedisUrl, isProduction, isDevelopment } from
|
|
|
30
30
|
export { AVAILABLE_MODELS, getModelConfig, getRecommendedModel } from './config/models.js';
|
|
31
31
|
export { logger, createLogger } from './utils/logger.js';
|
|
32
32
|
export * from './utils/errors.js';
|
|
33
|
-
export declare const VERSION = "1.0.
|
|
33
|
+
export declare const VERSION = "1.0.5";
|
|
34
34
|
export declare function quickStart(): Promise<{
|
|
35
35
|
ask: (input: string) => Promise<string>;
|
|
36
36
|
remember: (content: string) => Promise<string>;
|
package/dist/index.js
CHANGED
|
@@ -38,7 +38,7 @@ export { AVAILABLE_MODELS, getModelConfig, getRecommendedModel } from './config/
|
|
|
38
38
|
export { logger, createLogger } from './utils/logger.js';
|
|
39
39
|
export * from './utils/errors.js';
|
|
40
40
|
// Version
|
|
41
|
-
export const VERSION = '1.0.
|
|
41
|
+
export const VERSION = '1.0.5';
|
|
42
42
|
// Quick start function
|
|
43
43
|
import { initDatabase } from './database/client.js';
|
|
44
44
|
import { runOrchestrator } from './core/orchestrator/graph.js';
|
package/package.json
CHANGED
package/src/cli/index.ts
CHANGED
|
@@ -320,7 +320,7 @@ async function runQuery(query: string): Promise<void> {
|
|
|
320
320
|
program
|
|
321
321
|
.name('family-ai-agent')
|
|
322
322
|
.description('Family AI Agent - Your AI Family for All Tasks')
|
|
323
|
-
.version('1.0.
|
|
323
|
+
.version('1.0.5');
|
|
324
324
|
|
|
325
325
|
// Add config command group
|
|
326
326
|
program.addCommand(createConfigCommand());
|
package/src/index.ts
CHANGED
|
@@ -62,7 +62,7 @@ export { logger, createLogger } from './utils/logger.js';
|
|
|
62
62
|
export * from './utils/errors.js';
|
|
63
63
|
|
|
64
64
|
// Version
|
|
65
|
-
export const VERSION = '1.0.
|
|
65
|
+
export const VERSION = '1.0.5';
|
|
66
66
|
|
|
67
67
|
// Quick start function
|
|
68
68
|
import { initDatabase } from './database/client.js';
|