@framers/agentos 0.2.0 → 0.2.1

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/api/hitl.js CHANGED
@@ -233,7 +233,7 @@ export const hitl = {
233
233
  *
234
234
  * @example
235
235
  * ```ts
236
- * import { agency, hitl } from '@framers/agentos';
236
+ * import { agency, hitl } from '../index.js';
237
237
  *
238
238
  * const guarded = agency({
239
239
  * agents: { worker: { instructions: 'Execute tasks.' } },
@@ -14,7 +14,7 @@
14
14
  import { uuidv4 } from '../core/utils/uuid.js';
15
15
  import { GMIOutputChunkType, GMIPrimeState, GMIMood, ReasoningEntryType, GMIInteractionType,
16
16
  // AudioOutputConfig, ImageOutputConfig are part of GMIOutput
17
- } from './IGMI';
17
+ } from './IGMI.js';
18
18
  import { RagMemoryCategory } from '../rag/IRetrievalAugmentor.js';
19
19
  import { GMIError, GMIErrorCode, createGMIErrorFromError } from '../core/utils/errors.js';
20
20
  import { ConversationHistoryManager } from './ConversationHistoryManager.js';
@@ -770,7 +770,7 @@ export class AgentMemory {
770
770
  }
771
771
  throwUnsupportedForCognitive(methodName) {
772
772
  throw new Error(`AgentMemory.${methodName}() requires the standalone SQLite-backed Memory facade. ` +
773
- `Use AgentMemory.sqlite(...) or import { Memory } from '@framers/agentos'.`);
773
+ `Use AgentMemory.sqlite(...) or import { Memory } from '../index.js'.`);
774
774
  }
775
775
  }
776
776
  //# sourceMappingURL=AgentMemory.js.map
@@ -140,7 +140,7 @@ export class RetrievalAugmentor {
140
140
  *
141
141
  * @example
142
142
  * ```typescript
143
- * import { CohereReranker, LocalCrossEncoderReranker } from '../rag/reranking';
143
+ * import { CohereReranker, LocalCrossEncoderReranker } from '../rag/reranking/index.js';
144
144
  *
145
145
  * // After initialization
146
146
  * augmentor.registerRerankerProvider(new CohereReranker({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@framers/agentos",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "Modular AgentOS orchestration library",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -337,7 +337,7 @@
337
337
  "devDependencies": {
338
338
  "@eslint/js": "^9.11.0",
339
339
  "@framers/agentos-extensions-registry": "^0.15.0",
340
- "@framers/sql-storage-adapter": "^0.6.1",
340
+ "@framers/sql-storage-adapter": "^0.6.3",
341
341
  "@opentelemetry/context-async-hooks": "^2.0.1",
342
342
  "@opentelemetry/sdk-metrics": "^2.0.1",
343
343
  "@opentelemetry/sdk-trace-base": "^2.0.1",
@@ -390,7 +390,7 @@
390
390
  "zod-to-json-schema": "^3.25.2"
391
391
  },
392
392
  "peerDependencies": {
393
- "@framers/sql-storage-adapter": "^0.6.1",
393
+ "@framers/sql-storage-adapter": "^0.6.3",
394
394
  "graphology": ">=0.25.0",
395
395
  "graphology-communities-louvain": ">=2.0.0",
396
396
  "graphology-types": ">=0.24.0",