@dxos/assistant-toolkit 0.8.4-main.2c6827d
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/LICENSE +8 -0
- package/README.md +3 -0
- package/dist/lib/browser/index.mjs +2778 -0
- package/dist/lib/browser/index.mjs.map +7 -0
- package/dist/lib/browser/meta.json +1 -0
- package/dist/lib/node-esm/index.mjs +2779 -0
- package/dist/lib/node-esm/index.mjs.map +7 -0
- package/dist/lib/node-esm/meta.json +1 -0
- package/dist/types/src/blueprints/design/design-blueprint.d.ts +4 -0
- package/dist/types/src/blueprints/design/design-blueprint.d.ts.map +1 -0
- package/dist/types/src/blueprints/design/design-blueprint.test.d.ts +2 -0
- package/dist/types/src/blueprints/design/design-blueprint.test.d.ts.map +1 -0
- package/dist/types/src/blueprints/design/index.d.ts +3 -0
- package/dist/types/src/blueprints/design/index.d.ts.map +1 -0
- package/dist/types/src/blueprints/discord/discord-blueprint.d.ts +18 -0
- package/dist/types/src/blueprints/discord/discord-blueprint.d.ts.map +1 -0
- package/dist/types/src/blueprints/discord/index.d.ts +3 -0
- package/dist/types/src/blueprints/discord/index.d.ts.map +1 -0
- package/dist/types/src/blueprints/index.d.ts +7 -0
- package/dist/types/src/blueprints/index.d.ts.map +1 -0
- package/dist/types/src/blueprints/linear/index.d.ts +3 -0
- package/dist/types/src/blueprints/linear/index.d.ts.map +1 -0
- package/dist/types/src/blueprints/linear/linear-blueprint.d.ts +18 -0
- package/dist/types/src/blueprints/linear/linear-blueprint.d.ts.map +1 -0
- package/dist/types/src/blueprints/planning/index.d.ts +3 -0
- package/dist/types/src/blueprints/planning/index.d.ts.map +1 -0
- package/dist/types/src/blueprints/planning/planning-blueprint.d.ts +4 -0
- package/dist/types/src/blueprints/planning/planning-blueprint.d.ts.map +1 -0
- package/dist/types/src/blueprints/planning/planning-blueprint.test.d.ts +2 -0
- package/dist/types/src/blueprints/planning/planning-blueprint.test.d.ts.map +1 -0
- package/dist/types/src/blueprints/research/index.d.ts +3 -0
- package/dist/types/src/blueprints/research/index.d.ts.map +1 -0
- package/dist/types/src/blueprints/research/research-blueprint.d.ts +4 -0
- package/dist/types/src/blueprints/research/research-blueprint.d.ts.map +1 -0
- package/dist/types/src/blueprints/research/research-blueprint.test.d.ts +2 -0
- package/dist/types/src/blueprints/research/research-blueprint.test.d.ts.map +1 -0
- package/dist/types/src/blueprints/testing.d.ts +12 -0
- package/dist/types/src/blueprints/testing.d.ts.map +1 -0
- package/dist/types/src/blueprints/websearch/index.d.ts +4 -0
- package/dist/types/src/blueprints/websearch/index.d.ts.map +1 -0
- package/dist/types/src/blueprints/websearch/websearch-blueprint.d.ts +4 -0
- package/dist/types/src/blueprints/websearch/websearch-blueprint.d.ts.map +1 -0
- package/dist/types/src/blueprints/websearch/websearch-toolkit.d.ts +27 -0
- package/dist/types/src/blueprints/websearch/websearch-toolkit.d.ts.map +1 -0
- package/dist/types/src/crud/graph.d.ts +64 -0
- package/dist/types/src/crud/graph.d.ts.map +1 -0
- package/dist/types/src/crud/graph.test.d.ts +2 -0
- package/dist/types/src/crud/graph.test.d.ts.map +1 -0
- package/dist/types/src/crud/index.d.ts +2 -0
- package/dist/types/src/crud/index.d.ts.map +1 -0
- package/dist/types/src/experimental/feed.test.d.ts +2 -0
- package/dist/types/src/experimental/feed.test.d.ts.map +1 -0
- package/dist/types/src/functions/agent/index.d.ts +5 -0
- package/dist/types/src/functions/agent/index.d.ts.map +1 -0
- package/dist/types/src/functions/agent/prompt.d.ts +9 -0
- package/dist/types/src/functions/agent/prompt.d.ts.map +1 -0
- package/dist/types/src/functions/discord/fetch-messages.d.ts +11 -0
- package/dist/types/src/functions/discord/fetch-messages.d.ts.map +1 -0
- package/dist/types/src/functions/discord/fetch-messages.test.d.ts +2 -0
- package/dist/types/src/functions/discord/fetch-messages.test.d.ts.map +1 -0
- package/dist/types/src/functions/discord/index.d.ts +12 -0
- package/dist/types/src/functions/discord/index.d.ts.map +1 -0
- package/dist/types/src/functions/document/index.d.ts +13 -0
- package/dist/types/src/functions/document/index.d.ts.map +1 -0
- package/dist/types/src/functions/document/read.d.ts +7 -0
- package/dist/types/src/functions/document/read.d.ts.map +1 -0
- package/dist/types/src/functions/document/update.d.ts +6 -0
- package/dist/types/src/functions/document/update.d.ts.map +1 -0
- package/dist/types/src/functions/entity-extraction/entity-extraction.d.ts +173 -0
- package/dist/types/src/functions/entity-extraction/entity-extraction.d.ts.map +1 -0
- package/dist/types/src/functions/entity-extraction/entity-extraction.test.d.ts +2 -0
- package/dist/types/src/functions/entity-extraction/entity-extraction.test.d.ts.map +1 -0
- package/dist/types/src/functions/entity-extraction/index.d.ts +174 -0
- package/dist/types/src/functions/entity-extraction/index.d.ts.map +1 -0
- package/dist/types/src/functions/exa/exa.d.ts +5 -0
- package/dist/types/src/functions/exa/exa.d.ts.map +1 -0
- package/dist/types/src/functions/exa/index.d.ts +3 -0
- package/dist/types/src/functions/exa/index.d.ts.map +1 -0
- package/dist/types/src/functions/exa/mock.d.ts +5 -0
- package/dist/types/src/functions/exa/mock.d.ts.map +1 -0
- package/dist/types/src/functions/github/fetch-prs.d.ts +6 -0
- package/dist/types/src/functions/github/fetch-prs.d.ts.map +1 -0
- package/dist/types/src/functions/index.d.ts +8 -0
- package/dist/types/src/functions/index.d.ts.map +1 -0
- package/dist/types/src/functions/linear/index.d.ts +9 -0
- package/dist/types/src/functions/linear/index.d.ts.map +1 -0
- package/dist/types/src/functions/linear/linear.test.d.ts +2 -0
- package/dist/types/src/functions/linear/linear.test.d.ts.map +1 -0
- package/dist/types/src/functions/linear/sync-issues.d.ts +12 -0
- package/dist/types/src/functions/linear/sync-issues.d.ts.map +1 -0
- package/dist/types/src/functions/research/document-create.d.ts +9 -0
- package/dist/types/src/functions/research/document-create.d.ts.map +1 -0
- package/dist/types/src/functions/research/index.d.ts +21 -0
- package/dist/types/src/functions/research/index.d.ts.map +1 -0
- package/dist/types/src/functions/research/research-graph.d.ts +18 -0
- package/dist/types/src/functions/research/research-graph.d.ts.map +1 -0
- package/dist/types/src/functions/research/research.d.ts +14 -0
- package/dist/types/src/functions/research/research.d.ts.map +1 -0
- package/dist/types/src/functions/research/research.test.d.ts +2 -0
- package/dist/types/src/functions/research/research.test.d.ts.map +1 -0
- package/dist/types/src/functions/research/types.d.ts +6 -0
- package/dist/types/src/functions/research/types.d.ts.map +1 -0
- package/dist/types/src/functions/tasks/index.d.ts +15 -0
- package/dist/types/src/functions/tasks/index.d.ts.map +1 -0
- package/dist/types/src/functions/tasks/read.d.ts +7 -0
- package/dist/types/src/functions/tasks/read.d.ts.map +1 -0
- package/dist/types/src/functions/tasks/task-list.d.ts +74 -0
- package/dist/types/src/functions/tasks/task-list.d.ts.map +1 -0
- package/dist/types/src/functions/tasks/task-list.test.d.ts +2 -0
- package/dist/types/src/functions/tasks/task-list.test.d.ts.map +1 -0
- package/dist/types/src/functions/tasks/update.d.ts +9 -0
- package/dist/types/src/functions/tasks/update.d.ts.map +1 -0
- package/dist/types/src/index.d.ts +7 -0
- package/dist/types/src/index.d.ts.map +1 -0
- package/dist/types/src/plugins.d.ts +19 -0
- package/dist/types/src/plugins.d.ts.map +1 -0
- package/dist/types/src/sync/index.d.ts +2 -0
- package/dist/types/src/sync/index.d.ts.map +1 -0
- package/dist/types/src/sync/sync.d.ts +15 -0
- package/dist/types/src/sync/sync.d.ts.map +1 -0
- package/dist/types/src/testing/data/exa-search-1748337321991.d.ts +38 -0
- package/dist/types/src/testing/data/exa-search-1748337321991.d.ts.map +1 -0
- package/dist/types/src/testing/data/exa-search-1748337331526.d.ts +37 -0
- package/dist/types/src/testing/data/exa-search-1748337331526.d.ts.map +1 -0
- package/dist/types/src/testing/data/exa-search-1748337344119.d.ts +58 -0
- package/dist/types/src/testing/data/exa-search-1748337344119.d.ts.map +1 -0
- package/dist/types/src/testing/data/index.d.ts +3 -0
- package/dist/types/src/testing/data/index.d.ts.map +1 -0
- package/dist/types/src/testing/index.d.ts +2 -0
- package/dist/types/src/testing/index.d.ts.map +1 -0
- package/dist/types/src/toolkits/AssistantToolkit.d.ts +17 -0
- package/dist/types/src/toolkits/AssistantToolkit.d.ts.map +1 -0
- package/dist/types/src/toolkits/AssistantToolkit.test.d.ts +2 -0
- package/dist/types/src/toolkits/AssistantToolkit.test.d.ts.map +1 -0
- package/dist/types/src/toolkits/SystemToolkit.d.ts +67 -0
- package/dist/types/src/toolkits/SystemToolkit.d.ts.map +1 -0
- package/dist/types/src/toolkits/index.d.ts +3 -0
- package/dist/types/src/toolkits/index.d.ts.map +1 -0
- package/dist/types/src/util/graphql.d.ts +22 -0
- package/dist/types/src/util/graphql.d.ts.map +1 -0
- package/dist/types/src/util/index.d.ts +2 -0
- package/dist/types/src/util/index.d.ts.map +1 -0
- package/dist/types/tsconfig.tsbuildinfo +1 -0
- package/package.json +69 -0
- package/src/blueprints/design/design-blueprint.test.ts +103 -0
- package/src/blueprints/design/design-blueprint.ts +33 -0
- package/src/blueprints/design/index.ts +7 -0
- package/src/blueprints/discord/discord-blueprint.ts +34 -0
- package/src/blueprints/discord/index.ts +7 -0
- package/src/blueprints/index.ts +10 -0
- package/src/blueprints/linear/index.ts +7 -0
- package/src/blueprints/linear/linear-blueprint.ts +35 -0
- package/src/blueprints/planning/index.ts +7 -0
- package/src/blueprints/planning/planning-blueprint.test.ts +124 -0
- package/src/blueprints/planning/planning-blueprint.ts +98 -0
- package/src/blueprints/research/index.ts +7 -0
- package/src/blueprints/research/research-blueprint.test.ts +7 -0
- package/src/blueprints/research/research-blueprint.ts +53 -0
- package/src/blueprints/testing.ts +34 -0
- package/src/blueprints/websearch/index.ts +8 -0
- package/src/blueprints/websearch/websearch-blueprint.ts +20 -0
- package/src/blueprints/websearch/websearch-toolkit.ts +8 -0
- package/src/crud/graph.test.ts +69 -0
- package/src/crud/graph.ts +388 -0
- package/src/crud/index.ts +5 -0
- package/src/experimental/feed.test.ts +111 -0
- package/src/functions/agent/index.ts +11 -0
- package/src/functions/agent/prompt.ts +114 -0
- package/src/functions/discord/fetch-messages.test.ts +58 -0
- package/src/functions/discord/fetch-messages.ts +252 -0
- package/src/functions/discord/index.ts +9 -0
- package/src/functions/document/index.ts +12 -0
- package/src/functions/document/read.ts +29 -0
- package/src/functions/document/update.ts +30 -0
- package/src/functions/entity-extraction/entity-extraction.conversations.json +1 -0
- package/src/functions/entity-extraction/entity-extraction.test.ts +92 -0
- package/src/functions/entity-extraction/entity-extraction.ts +164 -0
- package/src/functions/entity-extraction/index.ts +9 -0
- package/src/functions/exa/exa.ts +37 -0
- package/src/functions/exa/index.ts +6 -0
- package/src/functions/exa/mock.ts +71 -0
- package/src/functions/github/fetch-prs.ts +30 -0
- package/src/functions/index.ts +11 -0
- package/src/functions/linear/index.ts +9 -0
- package/src/functions/linear/linear.test.ts +83 -0
- package/src/functions/linear/sync-issues.ts +189 -0
- package/src/functions/research/document-create.ts +75 -0
- package/src/functions/research/index.ts +14 -0
- package/src/functions/research/research-graph.ts +47 -0
- package/src/functions/research/research-instructions.tpl +106 -0
- package/src/functions/research/research.conversations.json +1 -0
- package/src/functions/research/research.test.ts +179 -0
- package/src/functions/research/research.ts +190 -0
- package/src/functions/research/types.ts +26 -0
- package/src/functions/tasks/index.ts +11 -0
- package/src/functions/tasks/read.ts +34 -0
- package/src/functions/tasks/task-list.test.ts +99 -0
- package/src/functions/tasks/task-list.ts +165 -0
- package/src/functions/tasks/update.ts +52 -0
- package/src/index.ts +10 -0
- package/src/plugins.tsx +68 -0
- package/src/sync/index.ts +5 -0
- package/src/sync/sync.ts +87 -0
- package/src/testing/data/exa-search-1748337321991.ts +131 -0
- package/src/testing/data/exa-search-1748337331526.ts +144 -0
- package/src/testing/data/exa-search-1748337344119.ts +133 -0
- package/src/testing/data/index.ts +11 -0
- package/src/testing/index.ts +5 -0
- package/src/toolkits/AssistantToolkit.conversations.json +1 -0
- package/src/toolkits/AssistantToolkit.test.ts +88 -0
- package/src/toolkits/AssistantToolkit.ts +47 -0
- package/src/toolkits/SystemToolkit.ts +231 -0
- package/src/toolkits/index.ts +6 -0
- package/src/typedefs.d.ts +8 -0
- package/src/util/graphql.ts +31 -0
- package/src/util/index.ts +5 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"inputs":{"src/functions/agent/prompt.ts":{"bytes":15761,"imports":[{"path":"effect/Array","kind":"import-statement","external":true},{"path":"effect/Effect","kind":"import-statement","external":true},{"path":"effect/Function","kind":"import-statement","external":true},{"path":"effect/Match","kind":"import-statement","external":true},{"path":"effect/Option","kind":"import-statement","external":true},{"path":"effect/Schema","kind":"import-statement","external":true},{"path":"@dxos/ai","kind":"import-statement","external":true},{"path":"@dxos/assistant","kind":"import-statement","external":true},{"path":"@dxos/blueprints","kind":"import-statement","external":true},{"path":"@dxos/echo","kind":"import-statement","external":true},{"path":"@dxos/functions","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true}],"format":"esm"},"src/functions/agent/index.ts":{"bytes":1045,"imports":[{"path":"src/functions/agent/prompt.ts","kind":"import-statement","original":"./prompt"}],"format":"esm"},"src/functions/discord/fetch-messages.ts":{"bytes":29767,"imports":[{"path":"@effect/platform/FetchHttpClient","kind":"import-statement","external":true},{"path":"dfx","kind":"import-statement","external":true},{"path":"effect/Array","kind":"import-statement","external":true},{"path":"effect/Effect","kind":"import-statement","external":true},{"path":"effect/Function","kind":"import-statement","external":true},{"path":"effect/Layer","kind":"import-statement","external":true},{"path":"effect/Option","kind":"import-statement","external":true},{"path":"effect/Schema","kind":"import-statement","external":true},{"path":"@dxos/echo","kind":"import-statement","external":true},{"path":"@dxos/functions","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/types","kind":"import-statement","external":true}],"format":"esm"},"src/functions/discord/index.ts":{"bytes":850,"imports":[{"path":"src/functions/discord/fetch-messages.ts","kind":"import-statement","original":"./fetch-messages"}],"format":"esm"},"src/functions/document/read.ts":{"bytes":3555,"imports":[{"path":"effect/Effect","kind":"import-statement","external":true},{"path":"effect/Schema","kind":"import-statement","external":true},{"path":"@dxos/assistant","kind":"import-statement","external":true},{"path":"@dxos/functions","kind":"import-statement","external":true},{"path":"@dxos/plugin-markdown/types","kind":"import-statement","external":true}],"format":"esm"},"src/functions/document/update.ts":{"bytes":3841,"imports":[{"path":"effect/Effect","kind":"import-statement","external":true},{"path":"effect/Schema","kind":"import-statement","external":true},{"path":"@dxos/assistant","kind":"import-statement","external":true},{"path":"@dxos/functions","kind":"import-statement","external":true},{"path":"@dxos/plugin-markdown/types","kind":"import-statement","external":true}],"format":"esm"},"src/functions/document/index.ts":{"bytes":1121,"imports":[{"path":"src/functions/document/read.ts","kind":"import-statement","original":"./read"},{"path":"src/functions/document/update.ts","kind":"import-statement","original":"./update"}],"format":"esm"},"src/crud/graph.ts":{"bytes":40792,"imports":[{"path":"@effect/ai/Tool","kind":"import-statement","external":true},{"path":"@effect/ai/Toolkit","kind":"import-statement","external":true},{"path":"effect/Context","kind":"import-statement","external":true},{"path":"effect/Effect","kind":"import-statement","external":true},{"path":"effect/Function","kind":"import-statement","external":true},{"path":"effect/Option","kind":"import-statement","external":true},{"path":"effect/Schema","kind":"import-statement","external":true},{"path":"effect/SchemaAST","kind":"import-statement","external":true},{"path":"@dxos/echo","kind":"import-statement","external":true},{"path":"@dxos/echo","kind":"import-statement","external":true},{"path":"@dxos/echo/internal","kind":"import-statement","external":true},{"path":"@dxos/echo-protocol","kind":"import-statement","external":true},{"path":"@dxos/effect","kind":"import-statement","external":true},{"path":"@dxos/functions","kind":"import-statement","external":true},{"path":"@dxos/keys","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/util","kind":"import-statement","external":true}],"format":"esm"},"src/crud/index.ts":{"bytes":456,"imports":[{"path":"src/crud/graph.ts","kind":"import-statement","original":"./graph"}],"format":"esm"},"src/functions/research/document-create.ts":{"bytes":8992,"imports":[{"path":"effect/Effect","kind":"import-statement","external":true},{"path":"effect/Schema","kind":"import-statement","external":true},{"path":"@dxos/assistant","kind":"import-statement","external":true},{"path":"@dxos/echo","kind":"import-statement","external":true},{"path":"@dxos/functions","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/plugin-markdown/types","kind":"import-statement","external":true},{"path":"@dxos/types","kind":"import-statement","external":true},{"path":"@dxos/util","kind":"import-statement","external":true}],"format":"esm"},"src/functions/exa/exa.ts":{"bytes":3899,"imports":[{"path":"effect/Effect","kind":"import-statement","external":true},{"path":"effect/Schema","kind":"import-statement","external":true},{"path":"exa-js","kind":"import-statement","external":true},{"path":"@dxos/functions","kind":"import-statement","external":true}],"format":"esm"},"src/testing/data/exa-search-1748337321991.ts":{"bytes":75521,"imports":[],"format":"esm"},"src/testing/data/exa-search-1748337331526.ts":{"bytes":90591,"imports":[],"format":"esm"},"src/testing/data/exa-search-1748337344119.ts":{"bytes":69963,"imports":[],"format":"esm"},"src/testing/data/index.ts":{"bytes":1218,"imports":[{"path":"src/testing/data/exa-search-1748337321991.ts","kind":"import-statement","original":"./exa-search-1748337321991"},{"path":"src/testing/data/exa-search-1748337331526.ts","kind":"import-statement","original":"./exa-search-1748337331526"},{"path":"src/testing/data/exa-search-1748337344119.ts","kind":"import-statement","original":"./exa-search-1748337344119"}],"format":"esm"},"src/testing/index.ts":{"bytes":458,"imports":[{"path":"src/testing/data/index.ts","kind":"import-statement","original":"./data"}],"format":"esm"},"src/functions/exa/mock.ts":{"bytes":7592,"imports":[{"path":"effect/Effect","kind":"import-statement","external":true},{"path":"effect/Schema","kind":"import-statement","external":true},{"path":"@dxos/functions","kind":"import-statement","external":true},{"path":"src/testing/index.ts","kind":"import-statement","original":"../../testing"}],"format":"esm"},"src/functions/exa/index.ts":{"bytes":765,"imports":[{"path":"src/functions/exa/exa.ts","kind":"import-statement","original":"./exa"},{"path":"src/functions/exa/mock.ts","kind":"import-statement","original":"./mock"}],"format":"esm"},"src/functions/research/research-graph.ts":{"bytes":5603,"imports":[{"path":"effect/Effect","kind":"import-statement","external":true},{"path":"effect/Layer","kind":"import-statement","external":true},{"path":"effect/Schema","kind":"import-statement","external":true},{"path":"@dxos/echo","kind":"import-statement","external":true},{"path":"@dxos/echo-db","kind":"import-statement","external":true},{"path":"@dxos/functions","kind":"import-statement","external":true}],"format":"esm"},"raw-loader:/__w/dxos/dxos/packages/core/assistant-toolkit/src/functions/research/research-instructions.tpl?raw":{"bytes":5339,"imports":[]},"src/functions/research/types.ts":{"bytes":2461,"imports":[{"path":"@dxos/schema","kind":"import-statement","external":true},{"path":"@dxos/types","kind":"import-statement","external":true}],"format":"esm"},"src/functions/research/research.ts":{"bytes":22904,"imports":[{"path":"@effect/ai/Toolkit","kind":"import-statement","external":true},{"path":"@effect/ai-anthropic/AnthropicTool","kind":"import-statement","external":true},{"path":"effect/Array","kind":"import-statement","external":true},{"path":"effect/Effect","kind":"import-statement","external":true},{"path":"effect/Function","kind":"import-statement","external":true},{"path":"effect/Layer","kind":"import-statement","external":true},{"path":"effect/Option","kind":"import-statement","external":true},{"path":"effect/Schema","kind":"import-statement","external":true},{"path":"effect/String","kind":"import-statement","external":true},{"path":"@dxos/ai","kind":"import-statement","external":true},{"path":"@dxos/assistant","kind":"import-statement","external":true},{"path":"@dxos/blueprints","kind":"import-statement","external":true},{"path":"@dxos/echo","kind":"import-statement","external":true},{"path":"@dxos/functions","kind":"import-statement","external":true},{"path":"@dxos/functions-runtime/testing","kind":"import-statement","external":true},{"path":"@dxos/types","kind":"import-statement","external":true},{"path":"@dxos/util","kind":"import-statement","external":true},{"path":"src/crud/index.ts","kind":"import-statement","original":"../../crud"},{"path":"src/functions/exa/index.ts","kind":"import-statement","original":"../exa"},{"path":"src/functions/research/research-graph.ts","kind":"import-statement","original":"./research-graph"},{"path":"raw-loader:/__w/dxos/dxos/packages/core/assistant-toolkit/src/functions/research/research-instructions.tpl?raw","kind":"import-statement","original":"./research-instructions.tpl?raw"},{"path":"src/functions/research/types.ts","kind":"import-statement","original":"./types"}],"format":"esm"},"src/functions/research/index.ts":{"bytes":1353,"imports":[{"path":"src/functions/research/document-create.ts","kind":"import-statement","original":"./document-create"},{"path":"src/functions/research/research.ts","kind":"import-statement","original":"./research"},{"path":"src/functions/research/research-graph.ts","kind":"import-statement","original":"./research-graph"},{"path":"src/functions/research/types.ts","kind":"import-statement","original":"./types"}],"format":"esm"},"src/functions/entity-extraction/entity-extraction.ts":{"bytes":22707,"imports":[{"path":"@effect/ai/Toolkit","kind":"import-statement","external":true},{"path":"effect/Effect","kind":"import-statement","external":true},{"path":"effect/Layer","kind":"import-statement","external":true},{"path":"effect/Predicate","kind":"import-statement","external":true},{"path":"effect/Schema","kind":"import-statement","external":true},{"path":"@dxos/ai","kind":"import-statement","external":true},{"path":"@dxos/assistant","kind":"import-statement","external":true},{"path":"@dxos/echo","kind":"import-statement","external":true},{"path":"@dxos/functions","kind":"import-statement","external":true},{"path":"@dxos/functions-runtime/testing","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/types","kind":"import-statement","external":true},{"path":"@dxos/util","kind":"import-statement","external":true},{"path":"src/crud/index.ts","kind":"import-statement","original":"../../crud"},{"path":"src/functions/research/index.ts","kind":"import-statement","original":"../research"}],"format":"esm"},"src/functions/entity-extraction/index.ts":{"bytes":958,"imports":[{"path":"src/functions/entity-extraction/entity-extraction.ts","kind":"import-statement","original":"./entity-extraction"}],"format":"esm"},"src/sync/sync.ts":{"bytes":10742,"imports":[{"path":"effect/Effect","kind":"import-statement","external":true},{"path":"@dxos/echo","kind":"import-statement","external":true},{"path":"@dxos/functions","kind":"import-statement","external":true},{"path":"@dxos/invariant","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true}],"format":"esm"},"src/sync/index.ts":{"bytes":455,"imports":[{"path":"src/sync/sync.ts","kind":"import-statement","original":"./sync"}],"format":"esm"},"src/util/graphql.ts":{"bytes":1976,"imports":[{"path":"@effect/platform/HttpBody","kind":"import-statement","external":true}],"format":"esm"},"src/util/index.ts":{"bytes":462,"imports":[{"path":"src/util/graphql.ts","kind":"import-statement","original":"./graphql"}],"format":"esm"},"src/functions/linear/sync-issues.ts":{"bytes":18087,"imports":[{"path":"@effect/platform/FetchHttpClient","kind":"import-statement","external":true},{"path":"@effect/platform/HttpClient","kind":"import-statement","external":true},{"path":"effect/Array","kind":"import-statement","external":true},{"path":"effect/Effect","kind":"import-statement","external":true},{"path":"effect/Function","kind":"import-statement","external":true},{"path":"effect/Schema","kind":"import-statement","external":true},{"path":"@dxos/echo","kind":"import-statement","external":true},{"path":"@dxos/functions","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/types","kind":"import-statement","external":true},{"path":"src/sync/index.ts","kind":"import-statement","original":"../../sync"},{"path":"src/util/index.ts","kind":"import-statement","original":"../../util"}],"format":"esm"},"src/functions/linear/index.ts":{"bytes":822,"imports":[{"path":"src/functions/linear/sync-issues.ts","kind":"import-statement","original":"./sync-issues"}],"format":"esm"},"src/functions/tasks/read.ts":{"bytes":4531,"imports":[{"path":"effect/Effect","kind":"import-statement","external":true},{"path":"effect/Schema","kind":"import-statement","external":true},{"path":"@dxos/assistant","kind":"import-statement","external":true},{"path":"@dxos/functions","kind":"import-statement","external":true},{"path":"@dxos/plugin-markdown/types","kind":"import-statement","external":true}],"format":"esm"},"src/functions/tasks/task-list.ts":{"bytes":17032,"imports":[],"format":"esm"},"src/functions/tasks/update.ts":{"bytes":6106,"imports":[{"path":"effect/Effect","kind":"import-statement","external":true},{"path":"effect/Schema","kind":"import-statement","external":true},{"path":"@dxos/assistant","kind":"import-statement","external":true},{"path":"@dxos/functions","kind":"import-statement","external":true},{"path":"@dxos/plugin-markdown/types","kind":"import-statement","external":true},{"path":"src/functions/tasks/task-list.ts","kind":"import-statement","original":"./task-list"}],"format":"esm"},"src/functions/tasks/index.ts":{"bytes":1064,"imports":[{"path":"src/functions/tasks/read.ts","kind":"import-statement","original":"./read"},{"path":"src/functions/tasks/update.ts","kind":"import-statement","original":"./update"}],"format":"esm"},"src/functions/index.ts":{"bytes":1000,"imports":[{"path":"src/functions/agent/index.ts","kind":"import-statement","original":"./agent"},{"path":"src/functions/discord/index.ts","kind":"import-statement","original":"./discord"},{"path":"src/functions/document/index.ts","kind":"import-statement","original":"./document"},{"path":"src/functions/entity-extraction/index.ts","kind":"import-statement","original":"./entity-extraction"},{"path":"src/functions/linear/index.ts","kind":"import-statement","original":"./linear"},{"path":"src/functions/research/index.ts","kind":"import-statement","original":"./research"},{"path":"src/functions/tasks/index.ts","kind":"import-statement","original":"./tasks"}],"format":"esm"},"src/blueprints/design/design-blueprint.ts":{"bytes":4102,"imports":[{"path":"@dxos/ai","kind":"import-statement","external":true},{"path":"@dxos/blueprints","kind":"import-statement","external":true},{"path":"@dxos/echo","kind":"import-statement","external":true},{"path":"@dxos/schema","kind":"import-statement","external":true},{"path":"@dxos/util","kind":"import-statement","external":true},{"path":"src/functions/index.ts","kind":"import-statement","original":"../../functions"}],"format":"esm"},"src/blueprints/design/index.ts":{"bytes":626,"imports":[{"path":"src/blueprints/design/design-blueprint.ts","kind":"import-statement","original":"./design-blueprint"}],"format":"esm"},"src/blueprints/discord/discord-blueprint.ts":{"bytes":3050,"imports":[{"path":"@dxos/ai","kind":"import-statement","external":true},{"path":"@dxos/blueprints","kind":"import-statement","external":true},{"path":"@dxos/echo","kind":"import-statement","external":true},{"path":"@dxos/schema","kind":"import-statement","external":true},{"path":"@dxos/util","kind":"import-statement","external":true},{"path":"src/functions/index.ts","kind":"import-statement","original":"../../functions"}],"format":"esm"},"src/blueprints/discord/index.ts":{"bytes":632,"imports":[{"path":"src/blueprints/discord/discord-blueprint.ts","kind":"import-statement","original":"./discord-blueprint"}],"format":"esm"},"src/blueprints/linear/linear-blueprint.ts":{"bytes":3357,"imports":[{"path":"@dxos/ai","kind":"import-statement","external":true},{"path":"@dxos/blueprints","kind":"import-statement","external":true},{"path":"@dxos/echo","kind":"import-statement","external":true},{"path":"@dxos/schema","kind":"import-statement","external":true},{"path":"@dxos/util","kind":"import-statement","external":true},{"path":"src/functions/index.ts","kind":"import-statement","original":"../../functions"}],"format":"esm"},"src/blueprints/linear/index.ts":{"bytes":626,"imports":[{"path":"src/blueprints/linear/linear-blueprint.ts","kind":"import-statement","original":"./linear-blueprint"}],"format":"esm"},"src/blueprints/planning/planning-blueprint.ts":{"bytes":9411,"imports":[{"path":"@dxos/ai","kind":"import-statement","external":true},{"path":"@dxos/blueprints","kind":"import-statement","external":true},{"path":"@dxos/echo","kind":"import-statement","external":true},{"path":"@dxos/schema","kind":"import-statement","external":true},{"path":"@dxos/util","kind":"import-statement","external":true},{"path":"src/functions/index.ts","kind":"import-statement","original":"../../functions"}],"format":"esm"},"src/blueprints/planning/index.ts":{"bytes":634,"imports":[{"path":"src/blueprints/planning/planning-blueprint.ts","kind":"import-statement","original":"./planning-blueprint"}],"format":"esm"},"src/blueprints/research/research-blueprint.ts":{"bytes":6596,"imports":[{"path":"@dxos/ai","kind":"import-statement","external":true},{"path":"@dxos/blueprints","kind":"import-statement","external":true},{"path":"@dxos/echo","kind":"import-statement","external":true},{"path":"@dxos/schema","kind":"import-statement","external":true},{"path":"@dxos/util","kind":"import-statement","external":true},{"path":"src/functions/index.ts","kind":"import-statement","original":"../../functions"}],"format":"esm"},"src/blueprints/research/index.ts":{"bytes":634,"imports":[{"path":"src/blueprints/research/research-blueprint.ts","kind":"import-statement","original":"./research-blueprint"}],"format":"esm"},"src/blueprints/websearch/websearch-blueprint.ts":{"bytes":2114,"imports":[{"path":"@dxos/ai","kind":"import-statement","external":true},{"path":"@dxos/blueprints","kind":"import-statement","external":true},{"path":"@dxos/echo","kind":"import-statement","external":true},{"path":"@dxos/schema","kind":"import-statement","external":true}],"format":"esm"},"src/blueprints/websearch/websearch-toolkit.ts":{"bytes":1151,"imports":[{"path":"@effect/ai/Toolkit","kind":"import-statement","external":true},{"path":"@effect/ai-anthropic/AnthropicTool","kind":"import-statement","external":true}],"format":"esm"},"src/blueprints/websearch/index.ts":{"bytes":836,"imports":[{"path":"src/blueprints/websearch/websearch-blueprint.ts","kind":"import-statement","original":"./websearch-blueprint"},{"path":"src/blueprints/websearch/websearch-toolkit.ts","kind":"import-statement","original":"./websearch-toolkit"}],"format":"esm"},"src/blueprints/index.ts":{"bytes":1725,"imports":[{"path":"src/blueprints/design/index.ts","kind":"import-statement","original":"./design"},{"path":"src/blueprints/discord/index.ts","kind":"import-statement","original":"./discord"},{"path":"src/blueprints/linear/index.ts","kind":"import-statement","original":"./linear"},{"path":"src/blueprints/planning/index.ts","kind":"import-statement","original":"./planning"},{"path":"src/blueprints/research/index.ts","kind":"import-statement","original":"./research"},{"path":"src/blueprints/websearch/index.ts","kind":"import-statement","original":"./websearch"}],"format":"esm"},"src/plugins.tsx":{"bytes":5591,"imports":[{"path":"effect/Schema","kind":"import-statement","external":true},{"path":"react","kind":"import-statement","external":true},{"path":"@dxos/app-framework","kind":"import-statement","external":true},{"path":"@dxos/echo","kind":"import-statement","external":true},{"path":"@dxos/react-ui-syntax-highlighter","kind":"import-statement","external":true}],"format":"esm"},"src/toolkits/AssistantToolkit.ts":{"bytes":5244,"imports":[{"path":"@effect/ai/Tool","kind":"import-statement","external":true},{"path":"@effect/ai/Toolkit","kind":"import-statement","external":true},{"path":"effect/Effect","kind":"import-statement","external":true},{"path":"effect/Record","kind":"import-statement","external":true},{"path":"effect/Schema","kind":"import-statement","external":true},{"path":"@dxos/assistant","kind":"import-statement","external":true},{"path":"@dxos/echo","kind":"import-statement","external":true},{"path":"@dxos/functions","kind":"import-statement","external":true},{"path":"@dxos/util","kind":"import-statement","external":true}],"format":"esm"},"src/toolkits/SystemToolkit.ts":{"bytes":23331,"imports":[{"path":"@effect/ai/Tool","kind":"import-statement","external":true},{"path":"@effect/ai/Toolkit","kind":"import-statement","external":true},{"path":"effect/Effect","kind":"import-statement","external":true},{"path":"effect/Record","kind":"import-statement","external":true},{"path":"effect/Schema","kind":"import-statement","external":true},{"path":"@dxos/assistant","kind":"import-statement","external":true},{"path":"@dxos/echo","kind":"import-statement","external":true},{"path":"@dxos/functions","kind":"import-statement","external":true},{"path":"@dxos/util","kind":"import-statement","external":true}],"format":"esm"},"src/toolkits/index.ts":{"bytes":769,"imports":[{"path":"src/toolkits/AssistantToolkit.ts","kind":"import-statement","original":"./AssistantToolkit"},{"path":"src/toolkits/SystemToolkit.ts","kind":"import-statement","original":"./SystemToolkit"}],"format":"esm"},"src/index.ts":{"bytes":884,"imports":[{"path":"src/blueprints/index.ts","kind":"import-statement","original":"./blueprints"},{"path":"src/functions/index.ts","kind":"import-statement","original":"./functions"},{"path":"src/plugins.tsx","kind":"import-statement","original":"./plugins"},{"path":"src/sync/index.ts","kind":"import-statement","original":"./sync"},{"path":"src/crud/index.ts","kind":"import-statement","original":"./crud"},{"path":"src/toolkits/index.ts","kind":"import-statement","original":"./toolkits"}],"format":"esm"}},"outputs":{"dist/lib/node-esm/index.mjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":257568},"dist/lib/node-esm/index.mjs":{"imports":[{"path":"@dxos/ai","kind":"import-statement","external":true},{"path":"@dxos/blueprints","kind":"import-statement","external":true},{"path":"@dxos/echo","kind":"import-statement","external":true},{"path":"@dxos/schema","kind":"import-statement","external":true},{"path":"@dxos/util","kind":"import-statement","external":true},{"path":"effect/Array","kind":"import-statement","external":true},{"path":"effect/Effect","kind":"import-statement","external":true},{"path":"effect/Function","kind":"import-statement","external":true},{"path":"effect/Match","kind":"import-statement","external":true},{"path":"effect/Option","kind":"import-statement","external":true},{"path":"effect/Schema","kind":"import-statement","external":true},{"path":"@dxos/ai","kind":"import-statement","external":true},{"path":"@dxos/assistant","kind":"import-statement","external":true},{"path":"@dxos/blueprints","kind":"import-statement","external":true},{"path":"@dxos/echo","kind":"import-statement","external":true},{"path":"@dxos/functions","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@effect/platform/FetchHttpClient","kind":"import-statement","external":true},{"path":"dfx","kind":"import-statement","external":true},{"path":"effect/Array","kind":"import-statement","external":true},{"path":"effect/Effect","kind":"import-statement","external":true},{"path":"effect/Function","kind":"import-statement","external":true},{"path":"effect/Layer","kind":"import-statement","external":true},{"path":"effect/Option","kind":"import-statement","external":true},{"path":"effect/Schema","kind":"import-statement","external":true},{"path":"@dxos/echo","kind":"import-statement","external":true},{"path":"@dxos/functions","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/types","kind":"import-statement","external":true},{"path":"effect/Effect","kind":"import-statement","external":true},{"path":"effect/Schema","kind":"import-statement","external":true},{"path":"@dxos/assistant","kind":"import-statement","external":true},{"path":"@dxos/functions","kind":"import-statement","external":true},{"path":"@dxos/plugin-markdown/types","kind":"import-statement","external":true},{"path":"effect/Effect","kind":"import-statement","external":true},{"path":"effect/Schema","kind":"import-statement","external":true},{"path":"@dxos/assistant","kind":"import-statement","external":true},{"path":"@dxos/functions","kind":"import-statement","external":true},{"path":"@dxos/plugin-markdown/types","kind":"import-statement","external":true},{"path":"@effect/ai/Toolkit","kind":"import-statement","external":true},{"path":"effect/Effect","kind":"import-statement","external":true},{"path":"effect/Layer","kind":"import-statement","external":true},{"path":"effect/Predicate","kind":"import-statement","external":true},{"path":"effect/Schema","kind":"import-statement","external":true},{"path":"@dxos/ai","kind":"import-statement","external":true},{"path":"@dxos/assistant","kind":"import-statement","external":true},{"path":"@dxos/echo","kind":"import-statement","external":true},{"path":"@dxos/functions","kind":"import-statement","external":true},{"path":"@dxos/functions-runtime/testing","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/types","kind":"import-statement","external":true},{"path":"@dxos/util","kind":"import-statement","external":true},{"path":"@effect/ai/Tool","kind":"import-statement","external":true},{"path":"@effect/ai/Toolkit","kind":"import-statement","external":true},{"path":"effect/Context","kind":"import-statement","external":true},{"path":"effect/Effect","kind":"import-statement","external":true},{"path":"effect/Function","kind":"import-statement","external":true},{"path":"effect/Option","kind":"import-statement","external":true},{"path":"effect/Schema","kind":"import-statement","external":true},{"path":"effect/SchemaAST","kind":"import-statement","external":true},{"path":"@dxos/echo","kind":"import-statement","external":true},{"path":"@dxos/echo","kind":"import-statement","external":true},{"path":"@dxos/echo/internal","kind":"import-statement","external":true},{"path":"@dxos/echo-protocol","kind":"import-statement","external":true},{"path":"@dxos/effect","kind":"import-statement","external":true},{"path":"@dxos/functions","kind":"import-statement","external":true},{"path":"@dxos/keys","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/util","kind":"import-statement","external":true},{"path":"effect/Effect","kind":"import-statement","external":true},{"path":"effect/Schema","kind":"import-statement","external":true},{"path":"@dxos/assistant","kind":"import-statement","external":true},{"path":"@dxos/echo","kind":"import-statement","external":true},{"path":"@dxos/functions","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/plugin-markdown/types","kind":"import-statement","external":true},{"path":"@dxos/types","kind":"import-statement","external":true},{"path":"@dxos/util","kind":"import-statement","external":true},{"path":"@effect/ai/Toolkit","kind":"import-statement","external":true},{"path":"@effect/ai-anthropic/AnthropicTool","kind":"import-statement","external":true},{"path":"effect/Array","kind":"import-statement","external":true},{"path":"effect/Effect","kind":"import-statement","external":true},{"path":"effect/Function","kind":"import-statement","external":true},{"path":"effect/Layer","kind":"import-statement","external":true},{"path":"effect/Option","kind":"import-statement","external":true},{"path":"effect/Schema","kind":"import-statement","external":true},{"path":"effect/String","kind":"import-statement","external":true},{"path":"@dxos/ai","kind":"import-statement","external":true},{"path":"@dxos/assistant","kind":"import-statement","external":true},{"path":"@dxos/blueprints","kind":"import-statement","external":true},{"path":"@dxos/echo","kind":"import-statement","external":true},{"path":"@dxos/functions","kind":"import-statement","external":true},{"path":"@dxos/functions-runtime/testing","kind":"import-statement","external":true},{"path":"@dxos/types","kind":"import-statement","external":true},{"path":"@dxos/util","kind":"import-statement","external":true},{"path":"effect/Effect","kind":"import-statement","external":true},{"path":"effect/Schema","kind":"import-statement","external":true},{"path":"exa-js","kind":"import-statement","external":true},{"path":"@dxos/functions","kind":"import-statement","external":true},{"path":"effect/Effect","kind":"import-statement","external":true},{"path":"effect/Schema","kind":"import-statement","external":true},{"path":"@dxos/functions","kind":"import-statement","external":true},{"path":"effect/Effect","kind":"import-statement","external":true},{"path":"effect/Layer","kind":"import-statement","external":true},{"path":"effect/Schema","kind":"import-statement","external":true},{"path":"@dxos/echo","kind":"import-statement","external":true},{"path":"@dxos/echo-db","kind":"import-statement","external":true},{"path":"@dxos/functions","kind":"import-statement","external":true},{"path":"@dxos/schema","kind":"import-statement","external":true},{"path":"@dxos/types","kind":"import-statement","external":true},{"path":"@effect/platform/FetchHttpClient","kind":"import-statement","external":true},{"path":"@effect/platform/HttpClient","kind":"import-statement","external":true},{"path":"effect/Array","kind":"import-statement","external":true},{"path":"effect/Effect","kind":"import-statement","external":true},{"path":"effect/Function","kind":"import-statement","external":true},{"path":"effect/Schema","kind":"import-statement","external":true},{"path":"@dxos/echo","kind":"import-statement","external":true},{"path":"@dxos/functions","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/types","kind":"import-statement","external":true},{"path":"effect/Effect","kind":"import-statement","external":true},{"path":"@dxos/echo","kind":"import-statement","external":true},{"path":"@dxos/functions","kind":"import-statement","external":true},{"path":"@dxos/invariant","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@effect/platform/HttpBody","kind":"import-statement","external":true},{"path":"effect/Effect","kind":"import-statement","external":true},{"path":"effect/Schema","kind":"import-statement","external":true},{"path":"@dxos/assistant","kind":"import-statement","external":true},{"path":"@dxos/functions","kind":"import-statement","external":true},{"path":"@dxos/plugin-markdown/types","kind":"import-statement","external":true},{"path":"effect/Effect","kind":"import-statement","external":true},{"path":"effect/Schema","kind":"import-statement","external":true},{"path":"@dxos/assistant","kind":"import-statement","external":true},{"path":"@dxos/functions","kind":"import-statement","external":true},{"path":"@dxos/plugin-markdown/types","kind":"import-statement","external":true},{"path":"@dxos/ai","kind":"import-statement","external":true},{"path":"@dxos/blueprints","kind":"import-statement","external":true},{"path":"@dxos/echo","kind":"import-statement","external":true},{"path":"@dxos/schema","kind":"import-statement","external":true},{"path":"@dxos/util","kind":"import-statement","external":true},{"path":"@dxos/ai","kind":"import-statement","external":true},{"path":"@dxos/blueprints","kind":"import-statement","external":true},{"path":"@dxos/echo","kind":"import-statement","external":true},{"path":"@dxos/schema","kind":"import-statement","external":true},{"path":"@dxos/util","kind":"import-statement","external":true},{"path":"@dxos/ai","kind":"import-statement","external":true},{"path":"@dxos/blueprints","kind":"import-statement","external":true},{"path":"@dxos/echo","kind":"import-statement","external":true},{"path":"@dxos/schema","kind":"import-statement","external":true},{"path":"@dxos/util","kind":"import-statement","external":true},{"path":"@dxos/ai","kind":"import-statement","external":true},{"path":"@dxos/blueprints","kind":"import-statement","external":true},{"path":"@dxos/echo","kind":"import-statement","external":true},{"path":"@dxos/schema","kind":"import-statement","external":true},{"path":"@dxos/util","kind":"import-statement","external":true},{"path":"@dxos/ai","kind":"import-statement","external":true},{"path":"@dxos/blueprints","kind":"import-statement","external":true},{"path":"@dxos/echo","kind":"import-statement","external":true},{"path":"@dxos/schema","kind":"import-statement","external":true},{"path":"@effect/ai/Toolkit","kind":"import-statement","external":true},{"path":"@effect/ai-anthropic/AnthropicTool","kind":"import-statement","external":true},{"path":"effect/Schema","kind":"import-statement","external":true},{"path":"react","kind":"import-statement","external":true},{"path":"@dxos/app-framework","kind":"import-statement","external":true},{"path":"@dxos/echo","kind":"import-statement","external":true},{"path":"@dxos/react-ui-syntax-highlighter","kind":"import-statement","external":true},{"path":"@effect/ai/Tool","kind":"import-statement","external":true},{"path":"@effect/ai/Toolkit","kind":"import-statement","external":true},{"path":"effect/Effect","kind":"import-statement","external":true},{"path":"effect/Record","kind":"import-statement","external":true},{"path":"effect/Schema","kind":"import-statement","external":true},{"path":"@dxos/assistant","kind":"import-statement","external":true},{"path":"@dxos/echo","kind":"import-statement","external":true},{"path":"@dxos/functions","kind":"import-statement","external":true},{"path":"@dxos/util","kind":"import-statement","external":true},{"path":"@effect/ai/Tool","kind":"import-statement","external":true},{"path":"@effect/ai/Toolkit","kind":"import-statement","external":true},{"path":"effect/Effect","kind":"import-statement","external":true},{"path":"effect/Record","kind":"import-statement","external":true},{"path":"effect/Schema","kind":"import-statement","external":true},{"path":"@dxos/assistant","kind":"import-statement","external":true},{"path":"@dxos/echo","kind":"import-statement","external":true},{"path":"@dxos/functions","kind":"import-statement","external":true},{"path":"@dxos/util","kind":"import-statement","external":true}],"exports":["Agent","AssistantToolkit","DesignBlueprint","Discord","DiscordBlueprint","Document","EntityExtraction","Linear","LinearBlueprint","LocalSearchHandler","LocalSearchToolkit","MapSchema","PlanningBlueprint","Research","ResearchBlueprint","ResearchDataTypes","ResearchGraph","Subgraph","SystemToolkit","Tasks","WebSearchBlueprint","WebSearchToolkit","capabilities","contextQueueLayerFromResearchGraph","createExtractionSchema","createResearchGraph","findRelatedSchema","getSanitizedSchemaName","makeGraphWriterHandler","makeGraphWriterToolkit","queryResearchGraph","sanitizeObjects","syncObjects"],"entryPoint":"src/index.ts","inputs":{"src/blueprints/design/design-blueprint.ts":{"bytesInOutput":1177},"src/functions/agent/prompt.ts":{"bytesInOutput":3762},"src/functions/agent/index.ts":{"bytesInOutput":92},"src/functions/index.ts":{"bytesInOutput":0},"src/functions/discord/fetch-messages.ts":{"bytesInOutput":7408},"src/functions/discord/index.ts":{"bytesInOutput":109},"src/functions/document/read.ts":{"bytesInOutput":898},"src/functions/document/update.ts":{"bytesInOutput":1025},"src/functions/document/index.ts":{"bytesInOutput":140},"src/functions/entity-extraction/entity-extraction.ts":{"bytesInOutput":6495},"src/crud/graph.ts":{"bytesInOutput":9572},"src/crud/index.ts":{"bytesInOutput":0},"src/functions/research/document-create.ts":{"bytesInOutput":2657},"src/functions/research/research.ts":{"bytesInOutput":5894},"src/functions/exa/exa.ts":{"bytesInOutput":944},"src/functions/exa/index.ts":{"bytesInOutput":0},"src/functions/exa/mock.ts":{"bytesInOutput":1642},"src/testing/data/exa-search-1748337321991.ts":{"bytesInOutput":31265},"src/testing/data/exa-search-1748337331526.ts":{"bytesInOutput":43952},"src/testing/data/exa-search-1748337344119.ts":{"bytesInOutput":28760},"src/testing/data/index.ts":{"bytesInOutput":133},"src/testing/index.ts":{"bytesInOutput":0},"src/functions/research/research-graph.ts":{"bytesInOutput":1260},"raw-loader:/__w/dxos/dxos/packages/core/assistant-toolkit/src/functions/research/research-instructions.tpl?raw":{"bytesInOutput":5485},"src/functions/research/types.ts":{"bytesInOutput":515},"src/functions/research/index.ts":{"bytesInOutput":157},"src/functions/entity-extraction/index.ts":{"bytesInOutput":159},"src/functions/linear/sync-issues.ts":{"bytesInOutput":4575},"src/sync/sync.ts":{"bytesInOutput":2447},"src/sync/index.ts":{"bytesInOutput":0},"src/util/graphql.ts":{"bytesInOutput":148},"src/util/index.ts":{"bytesInOutput":0},"src/functions/linear/index.ts":{"bytesInOutput":100},"src/functions/tasks/read.ts":{"bytesInOutput":1124},"src/functions/tasks/update.ts":{"bytesInOutput":1472},"src/functions/tasks/task-list.ts":{"bytesInOutput":4062},"src/functions/tasks/index.ts":{"bytesInOutput":124},"src/blueprints/design/index.ts":{"bytesInOutput":47},"src/blueprints/index.ts":{"bytesInOutput":0},"src/blueprints/discord/discord-blueprint.ts":{"bytesInOutput":710},"src/blueprints/discord/index.ts":{"bytesInOutput":49},"src/blueprints/linear/linear-blueprint.ts":{"bytesInOutput":821},"src/blueprints/linear/index.ts":{"bytesInOutput":47},"src/blueprints/planning/planning-blueprint.ts":{"bytesInOutput":3280},"src/blueprints/planning/index.ts":{"bytesInOutput":51},"src/blueprints/research/research-blueprint.ts":{"bytesInOutput":2160},"src/blueprints/research/index.ts":{"bytesInOutput":52},"src/blueprints/websearch/websearch-blueprint.ts":{"bytesInOutput":521},"src/blueprints/websearch/websearch-toolkit.ts":{"bytesInOutput":195},"src/blueprints/websearch/index.ts":{"bytesInOutput":53},"src/index.ts":{"bytesInOutput":0},"src/plugins.tsx":{"bytesInOutput":1148},"src/toolkits/AssistantToolkit.ts":{"bytesInOutput":1440},"src/toolkits/index.ts":{"bytesInOutput":0},"src/toolkits/SystemToolkit.ts":{"bytesInOutput":6658}},"bytes":187970}}}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"design-blueprint.d.ts","sourceRoot":"","sources":["../../../../../src/blueprints/design/design-blueprint.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,SAAS,EAAE,MAAM,kBAAkB,CAAC;AAiB7C,QAAA,MAAM,SAAS,EAAE,SAAS,CAAC,SAQzB,CAAC;AAEH,eAAe,SAAS,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"design-blueprint.test.d.ts","sourceRoot":"","sources":["../../../../../src/blueprints/design/design-blueprint.test.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/blueprints/design/index.ts"],"names":[],"mappings":"AAIA,OAAO,SAAS,MAAM,oBAAoB,CAAC;AAE3C,eAAe,SAAS,CAAC"}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
export declare const blueprint: import("@dxos/live-object").Live<import("@dxos/echo/Type").OfKind<import("@dxos/echo/internal").EntityKind.Object> & {
|
|
2
|
+
key: string;
|
|
3
|
+
name: string;
|
|
4
|
+
description?: string | undefined;
|
|
5
|
+
instructions: {
|
|
6
|
+
source: import("@dxos/echo/internal").Ref<import("@dxos/echo/Type").OfKind<import("@dxos/echo/internal").EntityKind.Object> & {
|
|
7
|
+
content: string;
|
|
8
|
+
}>;
|
|
9
|
+
inputs?: {
|
|
10
|
+
kind?: "function" | "value" | "context" | "pass-through" | "retriever" | "query" | "resolver" | "schema" | undefined;
|
|
11
|
+
name: string;
|
|
12
|
+
default?: any;
|
|
13
|
+
}[] | undefined;
|
|
14
|
+
};
|
|
15
|
+
tools: (string & import("effect/Brand").Brand<"ToolId">)[];
|
|
16
|
+
}>;
|
|
17
|
+
export default blueprint;
|
|
18
|
+
//# sourceMappingURL=discord-blueprint.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"discord-blueprint.d.ts","sourceRoot":"","sources":["../../../../../src/blueprints/discord/discord-blueprint.ts"],"names":[],"mappings":"AAuBA,eAAO,MAAM,SAAS;;;;;;;;;;;;;;;EAQpB,CAAC;AAEH,eAAe,SAAS,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/blueprints/discord/index.ts"],"names":[],"mappings":"AAIA,OAAO,SAAS,MAAM,qBAAqB,CAAC;AAE5C,eAAe,SAAS,CAAC"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export { default as DesignBlueprint } from './design';
|
|
2
|
+
export { default as DiscordBlueprint } from './discord';
|
|
3
|
+
export { default as LinearBlueprint } from './linear';
|
|
4
|
+
export { default as PlanningBlueprint } from './planning';
|
|
5
|
+
export { default as ResearchBlueprint } from './research';
|
|
6
|
+
export { default as WebSearchBlueprint, WebSearchToolkit } from './websearch';
|
|
7
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/blueprints/index.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,OAAO,IAAI,eAAe,EAAE,MAAM,UAAU,CAAC;AACtD,OAAO,EAAE,OAAO,IAAI,gBAAgB,EAAE,MAAM,WAAW,CAAC;AACxD,OAAO,EAAE,OAAO,IAAI,eAAe,EAAE,MAAM,UAAU,CAAC;AACtD,OAAO,EAAE,OAAO,IAAI,iBAAiB,EAAE,MAAM,YAAY,CAAC;AAC1D,OAAO,EAAE,OAAO,IAAI,iBAAiB,EAAE,MAAM,YAAY,CAAC;AAC1D,OAAO,EAAE,OAAO,IAAI,kBAAkB,EAAE,gBAAgB,EAAE,MAAM,aAAa,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/blueprints/linear/index.ts"],"names":[],"mappings":"AAIA,OAAO,SAAS,MAAM,oBAAoB,CAAC;AAE3C,eAAe,SAAS,CAAC"}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
export declare const blueprint: import("@dxos/live-object").Live<import("@dxos/echo/Type").OfKind<import("@dxos/echo/internal").EntityKind.Object> & {
|
|
2
|
+
key: string;
|
|
3
|
+
name: string;
|
|
4
|
+
description?: string | undefined;
|
|
5
|
+
instructions: {
|
|
6
|
+
source: import("@dxos/echo/internal").Ref<import("@dxos/echo/Type").OfKind<import("@dxos/echo/internal").EntityKind.Object> & {
|
|
7
|
+
content: string;
|
|
8
|
+
}>;
|
|
9
|
+
inputs?: {
|
|
10
|
+
kind?: "function" | "value" | "context" | "pass-through" | "retriever" | "query" | "resolver" | "schema" | undefined;
|
|
11
|
+
name: string;
|
|
12
|
+
default?: any;
|
|
13
|
+
}[] | undefined;
|
|
14
|
+
};
|
|
15
|
+
tools: (string & import("effect/Brand").Brand<"ToolId">)[];
|
|
16
|
+
}>;
|
|
17
|
+
export default blueprint;
|
|
18
|
+
//# sourceMappingURL=linear-blueprint.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"linear-blueprint.d.ts","sourceRoot":"","sources":["../../../../../src/blueprints/linear/linear-blueprint.ts"],"names":[],"mappings":"AAwBA,eAAO,MAAM,SAAS;;;;;;;;;;;;;;;EAQpB,CAAC;AAEH,eAAe,SAAS,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/blueprints/planning/index.ts"],"names":[],"mappings":"AAIA,OAAO,SAAS,MAAM,sBAAsB,CAAC;AAE7C,eAAe,SAAS,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"planning-blueprint.d.ts","sourceRoot":"","sources":["../../../../../src/blueprints/planning/planning-blueprint.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,SAAS,EAAE,MAAM,kBAAkB,CAAC;AAkF7C,eAAO,MAAM,SAAS,EAAE,SAAS,CAAC,SAQhC,CAAC;AAEH,eAAe,SAAS,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"planning-blueprint.test.d.ts","sourceRoot":"","sources":["../../../../../src/blueprints/planning/planning-blueprint.test.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/blueprints/research/index.ts"],"names":[],"mappings":"AAIA,OAAO,SAAS,MAAM,sBAAsB,CAAC;AAE7C,eAAe,SAAS,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"research-blueprint.d.ts","sourceRoot":"","sources":["../../../../../src/blueprints/research/research-blueprint.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,SAAS,EAAE,MAAM,kBAAkB,CAAC;AAqC7C,eAAO,MAAM,SAAS,EAAE,SAAS,CAAC,SAQhC,CAAC;AAEH,eAAe,SAAS,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"research-blueprint.test.d.ts","sourceRoot":"","sources":["../../../../../src/blueprints/research/research-blueprint.test.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import * as Toolkit from '@effect/ai/Toolkit';
|
|
2
|
+
import * as Effect from 'effect/Effect';
|
|
3
|
+
import { type AiConversation, type AiConversationRunParams } from '@dxos/assistant';
|
|
4
|
+
export type TestStep = Pick<AiConversationRunParams, 'prompt' | 'system'> & {
|
|
5
|
+
test?: () => Promise<void>;
|
|
6
|
+
};
|
|
7
|
+
/**
|
|
8
|
+
* Runs the prompt steps, calling the test function after each step.
|
|
9
|
+
*/
|
|
10
|
+
export declare const runSteps: (conversation: AiConversation, steps: TestStep[]) => Effect.Effect<void, import("@dxos/assistant").AiSessionRunError, import("@dxos/assistant").AiSessionRunRequirements>;
|
|
11
|
+
export declare const testToolkit: Toolkit.Toolkit<any>;
|
|
12
|
+
//# sourceMappingURL=testing.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"testing.d.ts","sourceRoot":"","sources":["../../../../src/blueprints/testing.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,OAAO,MAAM,oBAAoB,CAAC;AAC9C,OAAO,KAAK,MAAM,MAAM,eAAe,CAAC;AAGxC,OAAO,EAAE,KAAK,cAAc,EAAE,KAAK,uBAAuB,EAAsB,MAAM,iBAAiB,CAAC;AAGxG,MAAM,MAAM,QAAQ,GAAG,IAAI,CAAC,uBAAuB,EAAE,QAAQ,GAAG,QAAQ,CAAC,GAAG;IAC1E,IAAI,CAAC,EAAE,MAAM,OAAO,CAAC,IAAI,CAAC,CAAC;CAC5B,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,QAAQ,2KAYnB,CAAC;AAGH,eAAO,MAAM,WAAW,EAAoB,OAAO,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/blueprints/websearch/index.ts"],"names":[],"mappings":"AAIA,OAAO,SAAS,MAAM,uBAAuB,CAAC;AAE9C,OAAO,EAAE,gBAAgB,EAAE,MAAM,qBAAqB,CAAC;AACvD,eAAe,SAAS,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"websearch-blueprint.d.ts","sourceRoot":"","sources":["../../../../../src/blueprints/websearch/websearch-blueprint.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,SAAS,EAAE,MAAM,kBAAkB,CAAC;AAI7C,QAAA,MAAM,SAAS,EAAE,SAAS,CAAC,SAQzB,CAAC;AAEH,eAAe,SAAS,CAAC"}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import * as Toolkit from '@effect/ai/Toolkit';
|
|
2
|
+
export declare const WebSearchToolkit: Toolkit.Toolkit<{
|
|
3
|
+
readonly AnthropicWebSearch: import("@effect/ai/Tool").ProviderDefined<"AnthropicWebSearch", {
|
|
4
|
+
readonly args: import("effect/Schema").Struct<{
|
|
5
|
+
readonly cache_control: import("effect/Schema").optionalWith<typeof import("@effect/ai-anthropic/Generated").CacheControlEphemeral, {
|
|
6
|
+
nullable: true;
|
|
7
|
+
}>;
|
|
8
|
+
readonly allowed_domains: import("effect/Schema").optionalWith<import("effect/Schema").Array$<typeof import("effect/Schema").String>, {
|
|
9
|
+
nullable: true;
|
|
10
|
+
}>;
|
|
11
|
+
readonly blocked_domains: import("effect/Schema").optionalWith<import("effect/Schema").Array$<typeof import("effect/Schema").String>, {
|
|
12
|
+
nullable: true;
|
|
13
|
+
}>;
|
|
14
|
+
readonly max_uses: import("effect/Schema").optionalWith<import("effect/Schema").filter<typeof import("effect/Schema").Int>, {
|
|
15
|
+
nullable: true;
|
|
16
|
+
}>;
|
|
17
|
+
readonly user_location: import("effect/Schema").optionalWith<typeof import("@effect/ai-anthropic/Generated").UserLocation, {
|
|
18
|
+
nullable: true;
|
|
19
|
+
}>;
|
|
20
|
+
}>;
|
|
21
|
+
readonly parameters: import("effect/Schema").Struct<{}>;
|
|
22
|
+
readonly success: import("effect/Schema").Array$<typeof import("@effect/ai-anthropic/Generated").RequestWebSearchResultBlock>;
|
|
23
|
+
readonly failure: typeof import("@effect/ai-anthropic/Generated").ResponseWebSearchToolResultError;
|
|
24
|
+
readonly failureMode: "error";
|
|
25
|
+
}, false>;
|
|
26
|
+
}>;
|
|
27
|
+
//# sourceMappingURL=websearch-toolkit.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"websearch-toolkit.d.ts","sourceRoot":"","sources":["../../../../../src/blueprints/websearch/websearch-toolkit.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,OAAO,MAAM,oBAAoB,CAAC;AAG9C,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;EAAqD,CAAC"}
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
import * as Tool from '@effect/ai/Tool';
|
|
2
|
+
import * as Toolkit from '@effect/ai/Toolkit';
|
|
3
|
+
import * as Schema from 'effect/Schema';
|
|
4
|
+
import { Obj } from '@dxos/echo';
|
|
5
|
+
import { type EchoDatabase, type Queue } from '@dxos/echo-db';
|
|
6
|
+
import { ContextQueueService, DatabaseService } from '@dxos/functions';
|
|
7
|
+
import { DXN } from '@dxos/keys';
|
|
8
|
+
export declare const Subgraph: Schema.Struct<{
|
|
9
|
+
/** Objects and relations. */
|
|
10
|
+
objects: Schema.Array$<typeof Schema.Any>;
|
|
11
|
+
}>;
|
|
12
|
+
export interface Subgraph extends Schema.Schema.Type<typeof Subgraph> {
|
|
13
|
+
}
|
|
14
|
+
export type RelatedSchema = {
|
|
15
|
+
schema: Schema.Schema.AnyNoContext;
|
|
16
|
+
kind: 'reference' | 'relation';
|
|
17
|
+
};
|
|
18
|
+
/**
|
|
19
|
+
* Find all schemas that are related to the given schema.
|
|
20
|
+
*
|
|
21
|
+
* @param db
|
|
22
|
+
* @param schema
|
|
23
|
+
* @returns
|
|
24
|
+
*/
|
|
25
|
+
export declare const findRelatedSchema: (db: EchoDatabase, anchor: Schema.Schema.AnyNoContext) => Promise<RelatedSchema[]>;
|
|
26
|
+
/**
|
|
27
|
+
* Perform vector search in the local database.
|
|
28
|
+
*/
|
|
29
|
+
export declare const LocalSearchToolkit: Toolkit.Toolkit<{
|
|
30
|
+
readonly search_local_search: Tool.Tool<"search_local_search", {
|
|
31
|
+
readonly parameters: Schema.Struct<{
|
|
32
|
+
query: Schema.SchemaClass<string, string, never>;
|
|
33
|
+
}>;
|
|
34
|
+
readonly success: typeof Schema.Unknown;
|
|
35
|
+
readonly failure: typeof Schema.Never;
|
|
36
|
+
}, DatabaseService>;
|
|
37
|
+
}>;
|
|
38
|
+
export declare const LocalSearchHandler: import("effect/Layer").Layer<Tool.Handler<"search_local_search">, never, never>;
|
|
39
|
+
/**
|
|
40
|
+
* Forms typed objects that can be written to the graph database.
|
|
41
|
+
*/
|
|
42
|
+
export declare const makeGraphWriterToolkit: ({ schema }: {
|
|
43
|
+
schema: Schema.Schema.AnyNoContext[];
|
|
44
|
+
}) => Toolkit.Toolkit<{
|
|
45
|
+
readonly graph_writer: Tool.Tool<"graph_writer", {
|
|
46
|
+
readonly parameters: Schema.Struct<Readonly<{
|
|
47
|
+
[k: string]: Schema.optional<Schema.Array$<Schema.Schema.AnyNoContext>>;
|
|
48
|
+
}>>;
|
|
49
|
+
readonly success: typeof Schema.Unknown;
|
|
50
|
+
readonly failure: typeof Schema.Never;
|
|
51
|
+
}, DatabaseService | ContextQueueService>;
|
|
52
|
+
}>;
|
|
53
|
+
export declare const makeGraphWriterHandler: (toolkit: ReturnType<typeof makeGraphWriterToolkit>, { onAppend, }?: {
|
|
54
|
+
onAppend?: (object: DXN[]) => void;
|
|
55
|
+
}) => import("effect/Layer").Layer<Tool.Handler<"graph_writer">, never, never>;
|
|
56
|
+
/**
|
|
57
|
+
* Create a schema for structured data extraction.
|
|
58
|
+
*/
|
|
59
|
+
export declare const createExtractionSchema: (types: Schema.Schema.AnyNoContext[]) => Schema.Struct<{
|
|
60
|
+
[k: string]: Schema.optional<Schema.Array$<Schema.Schema.AnyNoContext>>;
|
|
61
|
+
}>;
|
|
62
|
+
export declare const getSanitizedSchemaName: (schema: Schema.Schema.AnyNoContext) => string;
|
|
63
|
+
export declare const sanitizeObjects: (types: Schema.Schema.AnyNoContext[], data: Record<string, readonly unknown[]>, db: EchoDatabase, queue?: Queue) => Promise<Obj.Any[]>;
|
|
64
|
+
//# sourceMappingURL=graph.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"graph.d.ts","sourceRoot":"","sources":["../../../../src/crud/graph.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,IAAI,MAAM,iBAAiB,CAAC;AACxC,OAAO,KAAK,OAAO,MAAM,oBAAoB,CAAC;AAK9C,OAAO,KAAK,MAAM,MAAM,eAAe,CAAC;AAGxC,OAAO,EAAE,GAAG,EAAiB,MAAM,YAAY,CAAC;AAiBhD,OAAO,EAAE,KAAK,YAAY,EAAE,KAAK,KAAK,EAAE,MAAM,eAAe,CAAC;AAG9D,OAAO,EAAE,mBAAmB,EAAE,eAAe,EAAE,MAAM,iBAAiB,CAAC;AACvE,OAAO,EAAE,GAAG,EAAE,MAAM,YAAY,CAAC;AAKjC,eAAO,MAAM,QAAQ;IACnB,6BAA6B;;EAE7B,CAAC;AAEH,MAAM,WAAW,QAAS,SAAQ,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,OAAO,QAAQ,CAAC;CAAG;AAExE,MAAM,MAAM,aAAa,GAAG;IAC1B,MAAM,EAAE,MAAM,CAAC,MAAM,CAAC,YAAY,CAAC;IACnC,IAAI,EAAE,WAAW,GAAG,UAAU,CAAC;CAChC,CAAC;AAEF;;;;;;GAMG;AACH,eAAO,MAAM,iBAAiB,GAC5B,IAAI,YAAY,EAChB,QAAQ,MAAM,CAAC,MAAM,CAAC,YAAY,KACjC,OAAO,CAAC,aAAa,EAAE,CAsBzB,CAAC;AAmBF;;GAEG;AAEH,eAAO,MAAM,kBAAkB;;;;;;;;EAY9B,CAAC;AAEF,eAAO,MAAM,kBAAkB,iFAkB7B,CAAC;AAYH;;GAEG;AACH,eAAO,MAAM,sBAAsB,GAAI,YAAY;IAAE,MAAM,EAAE,MAAM,CAAC,MAAM,CAAC,YAAY,EAAE,CAAA;CAAE;;;;;;;;EAU1F,CAAC;AAEF,eAAO,MAAM,sBAAsB,GACjC,SAAS,UAAU,CAAC,OAAO,sBAAsB,CAAC,EAClD,gBAEG;IACD,QAAQ,CAAC,EAAE,CAAC,MAAM,EAAE,GAAG,EAAE,KAAK,IAAI,CAAC;CAC/B,6EAmBP,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,sBAAsB,GAAI,OAAO,MAAM,CAAC,MAAM,CAAC,YAAY,EAAE;;EAWzE,CAAC;AAEF,eAAO,MAAM,sBAAsB,GAAI,QAAQ,MAAM,CAAC,MAAM,CAAC,YAAY,WAIxE,CAAC;AAEF,eAAO,MAAM,eAAe,GAC1B,OAAO,MAAM,CAAC,MAAM,CAAC,YAAY,EAAE,EACnC,MAAM,MAAM,CAAC,MAAM,EAAE,SAAS,OAAO,EAAE,CAAC,EACxC,IAAI,YAAY,EAChB,QAAQ,KAAK,KACZ,OAAO,CAAC,GAAG,CAAC,GAAG,EAAE,CAyHnB,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"graph.test.d.ts","sourceRoot":"","sources":["../../../../src/crud/graph.test.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/crud/index.ts"],"names":[],"mappings":"AAIA,cAAc,SAAS,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"feed.test.d.ts","sourceRoot":"","sources":["../../../../src/experimental/feed.test.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/functions/agent/index.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,KAAK,kBAAkB,EAAE,MAAM,iBAAiB,CAAC;AAI1D,yBAAiB,KAAK,CAAC;IACd,MAAM,MAAM,EAAE,kBAAkB,CAAC,GAAa,CAAC;CACvD"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { Prompt } from '@dxos/blueprints';
|
|
2
|
+
declare const _default: import("@dxos/functions").FunctionDefinition<{
|
|
3
|
+
readonly prompt: import("@dxos/echo/internal").Ref<Prompt.Prompt>;
|
|
4
|
+
readonly input: any;
|
|
5
|
+
readonly systemPrompt?: import("@dxos/echo/internal").Ref<Prompt.Prompt> | undefined;
|
|
6
|
+
readonly model?: "@anthropic/claude-3-5-haiku-latest" | "@anthropic/claude-3-5-haiku-20241022" | "@anthropic/claude-3-5-sonnet-20241022" | "@anthropic/claude-opus-4-0" | "@anthropic/claude-haiku-4-5" | "@anthropic/claude-sonnet-4-0" | "@anthropic/claude-sonnet-4-5" | "@cf/deepseek-ai/deepseek-r1-distill-qwen-32b" | "@hf/nousresearch/hermes-2-pro-mistral-7b" | "@ollama/llama-3-1-nemotron-70b-instruct" | "@ollama/llama-3-1-nemotron-mini-4b-instruct" | "@ollama/llama-3-2-3b" | "@openai/gpt-4o" | "@openai/gpt-4o-mini" | "@openai/o1" | "@openai/o3" | "@openai/o3-mini" | "qwen2.5:14b" | "llama3.2:1b" | "llama3:70b" | "deepseek-r1:latest" | "@google/gemma-3-27b" | "@meta/llama-3.2-3b-instruct" | undefined;
|
|
7
|
+
}, any, import("@dxos/functions").FunctionServices>;
|
|
8
|
+
export default _default;
|
|
9
|
+
//# sourceMappingURL=prompt.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"prompt.d.ts","sourceRoot":"","sources":["../../../../../src/functions/agent/prompt.ts"],"names":[],"mappings":"AAaA,OAAO,EAAE,MAAM,EAAY,MAAM,kBAAkB,CAAC;;;;;;;AAOpD,wBA6FG"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
declare const _default: import("@dxos/functions").FunctionDefinition<{
|
|
2
|
+
readonly serverId: string;
|
|
3
|
+
readonly channelId?: string | undefined;
|
|
4
|
+
readonly after?: number | undefined;
|
|
5
|
+
readonly last: string;
|
|
6
|
+
readonly limit?: number | undefined;
|
|
7
|
+
readonly pageSize?: number | undefined;
|
|
8
|
+
readonly ignoreUsernames?: readonly string[] | undefined;
|
|
9
|
+
}, string, import("@dxos/functions").FunctionServices>;
|
|
10
|
+
export default _default;
|
|
11
|
+
//# sourceMappingURL=fetch-messages.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"fetch-messages.d.ts","sourceRoot":"","sources":["../../../../../src/functions/discord/fetch-messages.ts"],"names":[],"mappings":";;;;;;;;;AA4EA,wBAqIG"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"fetch-messages.test.d.ts","sourceRoot":"","sources":["../../../../../src/functions/discord/fetch-messages.test.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export declare namespace Discord {
|
|
2
|
+
const fetch: import("@dxos/functions").FunctionDefinition<{
|
|
3
|
+
readonly serverId: string;
|
|
4
|
+
readonly channelId?: string | undefined;
|
|
5
|
+
readonly after?: number | undefined;
|
|
6
|
+
readonly last: string;
|
|
7
|
+
readonly limit?: number | undefined;
|
|
8
|
+
readonly pageSize?: number | undefined;
|
|
9
|
+
readonly ignoreUsernames?: readonly string[] | undefined;
|
|
10
|
+
}, string, import("@dxos/functions").FunctionServices>;
|
|
11
|
+
}
|
|
12
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/functions/discord/index.ts"],"names":[],"mappings":"AAMA,yBAAiB,OAAO,CAAC;IAChB,MAAM,KAAK;;;;;;;;0DAAS,CAAC;CAC7B"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/** @deprecated */
|
|
2
|
+
export declare namespace Document {
|
|
3
|
+
const read: import("@dxos/functions").FunctionDefinition<{
|
|
4
|
+
readonly id: string;
|
|
5
|
+
}, {
|
|
6
|
+
readonly content: string;
|
|
7
|
+
}, import("@dxos/functions").FunctionServices>;
|
|
8
|
+
const update: import("@dxos/functions").FunctionDefinition<{
|
|
9
|
+
readonly id: string;
|
|
10
|
+
readonly content: string;
|
|
11
|
+
}, void, import("@dxos/functions").FunctionServices>;
|
|
12
|
+
}
|
|
13
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/functions/document/index.ts"],"names":[],"mappings":"AAOA,kBAAkB;AAClB,yBAAiB,QAAQ,CAAC;IACjB,MAAM,IAAI;;;;kDAAQ,CAAC;IACnB,MAAM,MAAM;;;wDAAU,CAAC;CAC/B"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"read.d.ts","sourceRoot":"","sources":["../../../../../src/functions/document/read.ts"],"names":[],"mappings":";;;;;AAWA,wBAiBG"}
|