@dxos/assistant-toolkit 0.8.4-main.ae835ea → 0.8.4-main.e8ec1fe
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/lib/browser/index.mjs +891 -595
- package/dist/lib/browser/index.mjs.map +4 -4
- package/dist/lib/browser/meta.json +1 -1
- package/dist/lib/node-esm/index.mjs +890 -595
- package/dist/lib/node-esm/index.mjs.map +4 -4
- package/dist/lib/node-esm/meta.json +1 -1
- package/dist/types/src/blueprints/research/research-blueprint.d.ts.map +1 -1
- package/dist/types/src/blueprints/websearch/websearch-toolkit.d.ts +1 -0
- package/dist/types/src/blueprints/websearch/websearch-toolkit.d.ts.map +1 -1
- package/dist/types/src/crud/graph.d.ts.map +1 -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/functions/agent/prompt.d.ts +3 -5
- package/dist/types/src/functions/agent/prompt.d.ts.map +1 -1
- package/dist/types/src/functions/discord/fetch-messages.d.ts +1 -1
- package/dist/types/src/functions/discord/index.d.ts +1 -1
- package/dist/types/src/functions/discord/index.d.ts.map +1 -1
- package/dist/types/src/functions/document/index.d.ts +3 -2
- package/dist/types/src/functions/document/index.d.ts.map +1 -1
- package/dist/types/src/functions/document/read.d.ts +1 -1
- package/dist/types/src/functions/document/update.d.ts +1 -1
- package/dist/types/src/functions/entity-extraction/entity-extraction.d.ts +2 -2
- package/dist/types/src/functions/entity-extraction/entity-extraction.d.ts.map +1 -1
- package/dist/types/src/functions/entity-extraction/index.d.ts +2 -2
- package/dist/types/src/functions/entity-extraction/index.d.ts.map +1 -1
- package/dist/types/src/functions/exa/exa.d.ts +1 -1
- package/dist/types/src/functions/exa/mock.d.ts +1 -1
- package/dist/types/src/functions/github/fetch-prs.d.ts +1 -1
- package/dist/types/src/functions/linear/index.d.ts +1 -1
- package/dist/types/src/functions/linear/index.d.ts.map +1 -1
- package/dist/types/src/functions/linear/sync-issues.d.ts +1 -1
- 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 +8 -6
- package/dist/types/src/functions/research/index.d.ts.map +1 -1
- package/dist/types/src/functions/research/research.d.ts +4 -3
- package/dist/types/src/functions/research/research.d.ts.map +1 -1
- package/dist/types/src/functions/research/types.d.ts +2 -380
- package/dist/types/src/functions/research/types.d.ts.map +1 -1
- package/dist/types/src/functions/tasks/index.d.ts +2 -2
- package/dist/types/src/functions/tasks/index.d.ts.map +1 -1
- package/dist/types/src/functions/tasks/read.d.ts +1 -1
- package/dist/types/src/functions/tasks/update.d.ts +1 -1
- package/dist/types/src/index.d.ts +2 -0
- package/dist/types/src/index.d.ts.map +1 -1
- 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/tsconfig.tsbuildinfo +1 -1
- package/package.json +24 -22
- package/src/blueprints/design/design-blueprint.test.ts +9 -14
- package/src/blueprints/design/design-blueprint.ts +2 -2
- package/src/blueprints/discord/discord-blueprint.ts +2 -2
- package/src/blueprints/linear/linear-blueprint.ts +2 -2
- package/src/blueprints/planning/planning-blueprint.test.ts +11 -16
- package/src/blueprints/planning/planning-blueprint.ts +2 -2
- package/src/blueprints/research/research-blueprint.ts +23 -15
- package/src/blueprints/websearch/websearch-blueprint.ts +2 -2
- package/src/{functions/research → crud}/graph.test.ts +2 -2
- package/src/crud/index.ts +5 -0
- package/src/experimental/feed.test.ts +11 -8
- package/src/functions/agent/prompt.ts +25 -12
- package/src/functions/discord/fetch-messages.test.ts +5 -6
- package/src/functions/discord/fetch-messages.ts +10 -9
- package/src/functions/document/index.ts +1 -0
- package/src/functions/entity-extraction/entity-extraction.conversations.json +1 -1
- package/src/functions/entity-extraction/entity-extraction.test.ts +11 -19
- package/src/functions/entity-extraction/entity-extraction.ts +15 -13
- package/src/functions/linear/linear.test.ts +13 -16
- package/src/functions/linear/sync-issues.ts +7 -7
- package/src/functions/research/{create-document.ts → document-create.ts} +32 -26
- package/src/functions/research/index.ts +1 -2
- package/src/functions/research/{instructions-research.tpl → research-instructions.tpl} +14 -6
- package/src/functions/research/research.conversations.json +1 -10714
- package/src/functions/research/research.test.ts +87 -148
- package/src/functions/research/research.ts +84 -49
- package/src/functions/research/types.ts +14 -12
- package/src/index.ts +2 -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/dist/types/src/functions/research/create-document.d.ts +0 -7
- package/dist/types/src/functions/research/create-document.d.ts.map +0 -1
- package/dist/types/src/functions/research/graph.d.ts.map +0 -1
- package/dist/types/src/functions/research/graph.test.d.ts.map +0 -1
- /package/dist/types/src/{functions/research → crud}/graph.d.ts +0 -0
- /package/dist/types/src/{functions/research → crud}/graph.test.d.ts +0 -0
- /package/src/{functions/research → crud}/graph.ts +0 -0
|
@@ -1 +1 @@
|
|
|
1
|
-
{"inputs":{"src/functions/agent/prompt.ts":{"bytes":14410,"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/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":29668,"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/schema","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":1093,"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/functions/research/create-document.ts":{"bytes":8970,"imports":[{"path":"effect/Effect","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/invariant","kind":"import-statement","external":true},{"path":"@dxos/keys","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/schema","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/graph.ts":{"bytes":40806,"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"},"raw-loader:/__w/dxos/dxos/packages/core/assistant-toolkit/src/functions/research/instructions-research.tpl?raw":{"bytes":5239,"imports":[]},"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"},"src/functions/research/types.ts":{"bytes":2052,"imports":[{"path":"@dxos/schema","kind":"import-statement","external":true}],"format":"esm"},"src/functions/research/research.ts":{"bytes":19103,"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/Layer","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/schema","kind":"import-statement","external":true},{"path":"@dxos/util","kind":"import-statement","external":true},{"path":"src/functions/exa/index.ts","kind":"import-statement","original":"../exa"},{"path":"src/functions/research/graph.ts","kind":"import-statement","original":"./graph"},{"path":"raw-loader:/__w/dxos/dxos/packages/core/assistant-toolkit/src/functions/research/instructions-research.tpl?raw","kind":"import-statement","original":"./instructions-research.tpl?raw"},{"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/research/index.ts":{"bytes":1434,"imports":[{"path":"src/functions/research/create-document.ts","kind":"import-statement","original":"./create-document"},{"path":"src/functions/research/research.ts","kind":"import-statement","original":"./research"},{"path":"src/functions/research/graph.ts","kind":"import-statement","original":"./graph"},{"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":22384,"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/log","kind":"import-statement","external":true},{"path":"@dxos/schema","kind":"import-statement","external":true},{"path":"@dxos/util","kind":"import-statement","external":true},{"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":18117,"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/schema","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":4150,"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":3098,"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":3405,"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":9459,"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":5993,"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":2212,"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/index.ts":{"bytes":720,"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"}],"format":"esm"}},"outputs":{"dist/lib/node-esm/index.mjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":240593},"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/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/schema","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/log","kind":"import-statement","external":true},{"path":"@dxos/schema","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/echo","kind":"import-statement","external":true},{"path":"@dxos/functions","kind":"import-statement","external":true},{"path":"@dxos/invariant","kind":"import-statement","external":true},{"path":"@dxos/keys","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/schema","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/Layer","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/schema","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/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/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":"@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/schema","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}],"exports":["Agent","DesignBlueprint","Discord","DiscordBlueprint","Document","EntityExtraction","Linear","LinearBlueprint","LocalSearchHandler","LocalSearchToolkit","MapSchema","PlanningBlueprint","Research","ResearchBlueprint","ResearchDataTypes","ResearchGraph","Subgraph","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":1191},"src/functions/agent/prompt.ts":{"bytesInOutput":3800},"src/functions/agent/index.ts":{"bytesInOutput":92},"src/functions/index.ts":{"bytesInOutput":0},"src/functions/discord/fetch-messages.ts":{"bytesInOutput":7401},"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":6406},"src/functions/research/create-document.ts":{"bytesInOutput":2843},"src/functions/research/research.ts":{"bytesInOutput":4909},"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/graph.ts":{"bytesInOutput":9620},"raw-loader:/__w/dxos/dxos/packages/core/assistant-toolkit/src/functions/research/instructions-research.tpl?raw":{"bytesInOutput":5376},"src/functions/research/research-graph.ts":{"bytesInOutput":1260},"src/functions/research/types.ts":{"bytesInOutput":439},"src/functions/research/index.ts":{"bytesInOutput":157},"src/functions/entity-extraction/index.ts":{"bytesInOutput":159},"src/functions/linear/sync-issues.ts":{"bytesInOutput":4562},"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":726},"src/blueprints/discord/index.ts":{"bytesInOutput":49},"src/blueprints/linear/linear-blueprint.ts":{"bytesInOutput":837},"src/blueprints/linear/index.ts":{"bytesInOutput":47},"src/blueprints/planning/planning-blueprint.ts":{"bytesInOutput":3298},"src/blueprints/planning/index.ts":{"bytesInOutput":51},"src/blueprints/research/research-blueprint.ts":{"bytesInOutput":1907},"src/blueprints/research/index.ts":{"bytesInOutput":52},"src/blueprints/websearch/websearch-blueprint.ts":{"bytesInOutput":541},"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}},"bytes":178382}}}
|
|
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":22709,"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":257571},"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":6498},"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":187973}}}
|
|
@@ -1 +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;
|
|
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"}
|
|
@@ -21,6 +21,7 @@ export declare const WebSearchToolkit: Toolkit.Toolkit<{
|
|
|
21
21
|
readonly parameters: import("effect/Schema").Struct<{}>;
|
|
22
22
|
readonly success: import("effect/Schema").Array$<typeof import("@effect/ai-anthropic/Generated").RequestWebSearchResultBlock>;
|
|
23
23
|
readonly failure: typeof import("@effect/ai-anthropic/Generated").ResponseWebSearchToolResultError;
|
|
24
|
+
readonly failureMode: "error";
|
|
24
25
|
}, false>;
|
|
25
26
|
}>;
|
|
26
27
|
//# sourceMappingURL=websearch-toolkit.d.ts.map
|
|
@@ -1 +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
|
|
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 @@
|
|
|
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"}
|
|
@@ -1,11 +1,9 @@
|
|
|
1
1
|
import { Prompt } from '@dxos/blueprints';
|
|
2
2
|
declare const _default: import("@dxos/functions").FunctionDefinition<{
|
|
3
3
|
readonly prompt: import("@dxos/echo/internal").Ref<Prompt.Prompt>;
|
|
4
|
-
readonly input:
|
|
5
|
-
readonly [x: string]: any;
|
|
6
|
-
};
|
|
4
|
+
readonly input: any;
|
|
7
5
|
readonly systemPrompt?: import("@dxos/echo/internal").Ref<Prompt.Prompt> | undefined;
|
|
8
|
-
readonly model?: "@anthropic/claude-3-5-haiku-latest" | "@anthropic/claude-3-5-haiku-20241022" | "@anthropic/claude-3-5-sonnet-20241022" | "@anthropic/claude-
|
|
9
|
-
}, any>;
|
|
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>;
|
|
10
8
|
export default _default;
|
|
11
9
|
//# sourceMappingURL=prompt.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"prompt.d.ts","sourceRoot":"","sources":["../../../../../src/functions/agent/prompt.ts"],"names":[],"mappings":"
|
|
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"}
|
|
@@ -6,6 +6,6 @@ declare const _default: import("@dxos/functions").FunctionDefinition<{
|
|
|
6
6
|
readonly limit?: number | undefined;
|
|
7
7
|
readonly pageSize?: number | undefined;
|
|
8
8
|
readonly ignoreUsernames?: readonly string[] | undefined;
|
|
9
|
-
}, string>;
|
|
9
|
+
}, string, import("@dxos/functions").FunctionServices>;
|
|
10
10
|
export default _default;
|
|
11
11
|
//# sourceMappingURL=fetch-messages.d.ts.map
|
|
@@ -7,6 +7,6 @@ export declare namespace Discord {
|
|
|
7
7
|
readonly limit?: number | undefined;
|
|
8
8
|
readonly pageSize?: number | undefined;
|
|
9
9
|
readonly ignoreUsernames?: readonly string[] | undefined;
|
|
10
|
-
}, string>;
|
|
10
|
+
}, string, import("@dxos/functions").FunctionServices>;
|
|
11
11
|
}
|
|
12
12
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/functions/discord/index.ts"],"names":[],"mappings":"AAMA,yBAAiB,OAAO,CAAC;IAChB,MAAM,KAAK;;;;;;;;
|
|
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"}
|
|
@@ -1,12 +1,13 @@
|
|
|
1
|
+
/** @deprecated */
|
|
1
2
|
export declare namespace Document {
|
|
2
3
|
const read: import("@dxos/functions").FunctionDefinition<{
|
|
3
4
|
readonly id: string;
|
|
4
5
|
}, {
|
|
5
6
|
readonly content: string;
|
|
6
|
-
}>;
|
|
7
|
+
}, import("@dxos/functions").FunctionServices>;
|
|
7
8
|
const update: import("@dxos/functions").FunctionDefinition<{
|
|
8
9
|
readonly id: string;
|
|
9
10
|
readonly content: string;
|
|
10
|
-
}, void>;
|
|
11
|
+
}, void, import("@dxos/functions").FunctionServices>;
|
|
11
12
|
}
|
|
12
13
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/functions/document/index.ts"],"names":[],"mappings":"AAOA,yBAAiB,QAAQ,CAAC;IACjB,MAAM,IAAI;;;;
|
|
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"}
|
|
@@ -20,8 +20,8 @@ declare const _default: import("@dxos/functions").FunctionDefinition<{
|
|
|
20
20
|
nickname?: string | undefined;
|
|
21
21
|
image?: string | undefined;
|
|
22
22
|
organization?: import("@dxos/echo/internal").Ref<import("@dxos/echo/Type").OfKind<import("@dxos/echo/internal").EntityKind.Object> & {
|
|
23
|
-
id: string;
|
|
24
23
|
description?: string | undefined;
|
|
24
|
+
id: string;
|
|
25
25
|
name?: string | undefined;
|
|
26
26
|
status?: "prospect" | "qualified" | "active" | "commit" | "reject" | undefined;
|
|
27
27
|
image?: string | undefined;
|
|
@@ -168,6 +168,6 @@ declare const _default: import("@dxos/functions").FunctionDefinition<{
|
|
|
168
168
|
};
|
|
169
169
|
}, {
|
|
170
170
|
readonly entities?: readonly (import("@dxos/echo/Type").OfKind<import("@dxos/echo/internal").EntityKind.Object> & {})[] | undefined;
|
|
171
|
-
}>;
|
|
171
|
+
}, import("@dxos/functions").FunctionServices>;
|
|
172
172
|
export default _default;
|
|
173
173
|
//# sourceMappingURL=entity-extraction.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"entity-extraction.d.ts","sourceRoot":"","sources":["../../../../../src/functions/entity-extraction/entity-extraction.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
1
|
+
{"version":3,"file":"entity-extraction.d.ts","sourceRoot":"","sources":["../../../../../src/functions/entity-extraction/entity-extraction.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAuBA,wBAqEG"}
|
|
@@ -21,8 +21,8 @@ export declare namespace EntityExtraction {
|
|
|
21
21
|
nickname?: string | undefined;
|
|
22
22
|
image?: string | undefined;
|
|
23
23
|
organization?: import("@dxos/echo/internal").Ref<import("@dxos/echo/Type").OfKind<import("@dxos/echo/internal").EntityKind.Object> & {
|
|
24
|
-
id: string;
|
|
25
24
|
description?: string | undefined;
|
|
25
|
+
id: string;
|
|
26
26
|
name?: string | undefined;
|
|
27
27
|
status?: "prospect" | "qualified" | "active" | "commit" | "reject" | undefined;
|
|
28
28
|
image?: string | undefined;
|
|
@@ -169,6 +169,6 @@ export declare namespace EntityExtraction {
|
|
|
169
169
|
};
|
|
170
170
|
}, {
|
|
171
171
|
readonly entities?: readonly (import("@dxos/echo/Type").OfKind<import("@dxos/echo/internal").EntityKind.Object> & {})[] | undefined;
|
|
172
|
-
}>;
|
|
172
|
+
}, import("@dxos/functions").FunctionServices>;
|
|
173
173
|
}
|
|
174
174
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/functions/entity-extraction/index.ts"],"names":[],"mappings":"AAMA,yBAAiB,gBAAgB,CAAC;IACzB,MAAM,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/functions/entity-extraction/index.ts"],"names":[],"mappings":"AAMA,yBAAiB,gBAAgB,CAAC;IACzB,MAAM,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kDAAW,CAAC;CACjC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/functions/linear/index.ts"],"names":[],"mappings":"AAMA,yBAAiB,MAAM,CAAC;IACf,MAAM,IAAI;;;;;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/functions/linear/index.ts"],"names":[],"mappings":"AAMA,yBAAiB,MAAM,CAAC;IACf,MAAM,IAAI;;;;;kDAAQ,CAAC;CAC3B"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
declare const _default: import("@dxos/functions").FunctionDefinition<{
|
|
2
|
+
readonly name: string;
|
|
3
|
+
readonly content: string;
|
|
4
|
+
readonly subject: string;
|
|
5
|
+
}, {
|
|
6
|
+
readonly document: string;
|
|
7
|
+
}, import("@dxos/functions").FunctionServices>;
|
|
8
|
+
export default _default;
|
|
9
|
+
//# sourceMappingURL=document-create.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"document-create.d.ts","sourceRoot":"","sources":["../../../../../src/functions/research/document-create.ts"],"names":[],"mappings":";;;;;;;AAeA,wBA2DG"}
|
|
@@ -1,19 +1,21 @@
|
|
|
1
|
-
export * from './graph';
|
|
2
1
|
export * from './research-graph';
|
|
3
2
|
export * from './types';
|
|
4
3
|
export declare namespace Research {
|
|
5
4
|
const create: import("@dxos/functions").FunctionDefinition<{
|
|
6
5
|
readonly name: string;
|
|
7
6
|
readonly content: string;
|
|
8
|
-
readonly
|
|
9
|
-
}, {
|
|
7
|
+
readonly subject: string;
|
|
8
|
+
}, {
|
|
9
|
+
readonly document: string;
|
|
10
|
+
}, import("@dxos/functions").FunctionServices>;
|
|
10
11
|
const research: import("@dxos/functions").FunctionDefinition<{
|
|
12
|
+
readonly instructions?: string | undefined;
|
|
11
13
|
readonly query: string;
|
|
12
|
-
readonly researchInstructions?: string | undefined;
|
|
13
14
|
readonly mockSearch?: boolean | undefined;
|
|
15
|
+
readonly entityExtraction?: boolean | undefined;
|
|
14
16
|
}, {
|
|
15
17
|
readonly objects: readonly unknown[];
|
|
16
|
-
readonly
|
|
17
|
-
}>;
|
|
18
|
+
readonly document?: string | undefined;
|
|
19
|
+
}, import("@dxos/functions").FunctionServices>;
|
|
18
20
|
}
|
|
19
21
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/functions/research/index.ts"],"names":[],"mappings":"AAOA,cAAc,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/functions/research/index.ts"],"names":[],"mappings":"AAOA,cAAc,kBAAkB,CAAC;AACjC,cAAc,SAAS,CAAC;AAExB,yBAAiB,QAAQ,CAAC;IACjB,MAAM,MAAM;;;;;;kDAAU,CAAC;IACvB,MAAM,QAAQ;;;;;;;;kDAAY,CAAC;CACnC"}
|