@dxos/assistant-toolkit 0.8.4-main.2c6827d
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +8 -0
- package/README.md +3 -0
- package/dist/lib/browser/index.mjs +2778 -0
- package/dist/lib/browser/index.mjs.map +7 -0
- package/dist/lib/browser/meta.json +1 -0
- package/dist/lib/node-esm/index.mjs +2779 -0
- package/dist/lib/node-esm/index.mjs.map +7 -0
- package/dist/lib/node-esm/meta.json +1 -0
- package/dist/types/src/blueprints/design/design-blueprint.d.ts +4 -0
- package/dist/types/src/blueprints/design/design-blueprint.d.ts.map +1 -0
- package/dist/types/src/blueprints/design/design-blueprint.test.d.ts +2 -0
- package/dist/types/src/blueprints/design/design-blueprint.test.d.ts.map +1 -0
- package/dist/types/src/blueprints/design/index.d.ts +3 -0
- package/dist/types/src/blueprints/design/index.d.ts.map +1 -0
- package/dist/types/src/blueprints/discord/discord-blueprint.d.ts +18 -0
- package/dist/types/src/blueprints/discord/discord-blueprint.d.ts.map +1 -0
- package/dist/types/src/blueprints/discord/index.d.ts +3 -0
- package/dist/types/src/blueprints/discord/index.d.ts.map +1 -0
- package/dist/types/src/blueprints/index.d.ts +7 -0
- package/dist/types/src/blueprints/index.d.ts.map +1 -0
- package/dist/types/src/blueprints/linear/index.d.ts +3 -0
- package/dist/types/src/blueprints/linear/index.d.ts.map +1 -0
- package/dist/types/src/blueprints/linear/linear-blueprint.d.ts +18 -0
- package/dist/types/src/blueprints/linear/linear-blueprint.d.ts.map +1 -0
- package/dist/types/src/blueprints/planning/index.d.ts +3 -0
- package/dist/types/src/blueprints/planning/index.d.ts.map +1 -0
- package/dist/types/src/blueprints/planning/planning-blueprint.d.ts +4 -0
- package/dist/types/src/blueprints/planning/planning-blueprint.d.ts.map +1 -0
- package/dist/types/src/blueprints/planning/planning-blueprint.test.d.ts +2 -0
- package/dist/types/src/blueprints/planning/planning-blueprint.test.d.ts.map +1 -0
- package/dist/types/src/blueprints/research/index.d.ts +3 -0
- package/dist/types/src/blueprints/research/index.d.ts.map +1 -0
- package/dist/types/src/blueprints/research/research-blueprint.d.ts +4 -0
- package/dist/types/src/blueprints/research/research-blueprint.d.ts.map +1 -0
- package/dist/types/src/blueprints/research/research-blueprint.test.d.ts +2 -0
- package/dist/types/src/blueprints/research/research-blueprint.test.d.ts.map +1 -0
- package/dist/types/src/blueprints/testing.d.ts +12 -0
- package/dist/types/src/blueprints/testing.d.ts.map +1 -0
- package/dist/types/src/blueprints/websearch/index.d.ts +4 -0
- package/dist/types/src/blueprints/websearch/index.d.ts.map +1 -0
- package/dist/types/src/blueprints/websearch/websearch-blueprint.d.ts +4 -0
- package/dist/types/src/blueprints/websearch/websearch-blueprint.d.ts.map +1 -0
- package/dist/types/src/blueprints/websearch/websearch-toolkit.d.ts +27 -0
- package/dist/types/src/blueprints/websearch/websearch-toolkit.d.ts.map +1 -0
- package/dist/types/src/crud/graph.d.ts +64 -0
- package/dist/types/src/crud/graph.d.ts.map +1 -0
- package/dist/types/src/crud/graph.test.d.ts +2 -0
- package/dist/types/src/crud/graph.test.d.ts.map +1 -0
- package/dist/types/src/crud/index.d.ts +2 -0
- package/dist/types/src/crud/index.d.ts.map +1 -0
- package/dist/types/src/experimental/feed.test.d.ts +2 -0
- package/dist/types/src/experimental/feed.test.d.ts.map +1 -0
- package/dist/types/src/functions/agent/index.d.ts +5 -0
- package/dist/types/src/functions/agent/index.d.ts.map +1 -0
- package/dist/types/src/functions/agent/prompt.d.ts +9 -0
- package/dist/types/src/functions/agent/prompt.d.ts.map +1 -0
- package/dist/types/src/functions/discord/fetch-messages.d.ts +11 -0
- package/dist/types/src/functions/discord/fetch-messages.d.ts.map +1 -0
- package/dist/types/src/functions/discord/fetch-messages.test.d.ts +2 -0
- package/dist/types/src/functions/discord/fetch-messages.test.d.ts.map +1 -0
- package/dist/types/src/functions/discord/index.d.ts +12 -0
- package/dist/types/src/functions/discord/index.d.ts.map +1 -0
- package/dist/types/src/functions/document/index.d.ts +13 -0
- package/dist/types/src/functions/document/index.d.ts.map +1 -0
- package/dist/types/src/functions/document/read.d.ts +7 -0
- package/dist/types/src/functions/document/read.d.ts.map +1 -0
- package/dist/types/src/functions/document/update.d.ts +6 -0
- package/dist/types/src/functions/document/update.d.ts.map +1 -0
- package/dist/types/src/functions/entity-extraction/entity-extraction.d.ts +173 -0
- package/dist/types/src/functions/entity-extraction/entity-extraction.d.ts.map +1 -0
- package/dist/types/src/functions/entity-extraction/entity-extraction.test.d.ts +2 -0
- package/dist/types/src/functions/entity-extraction/entity-extraction.test.d.ts.map +1 -0
- package/dist/types/src/functions/entity-extraction/index.d.ts +174 -0
- package/dist/types/src/functions/entity-extraction/index.d.ts.map +1 -0
- package/dist/types/src/functions/exa/exa.d.ts +5 -0
- package/dist/types/src/functions/exa/exa.d.ts.map +1 -0
- package/dist/types/src/functions/exa/index.d.ts +3 -0
- package/dist/types/src/functions/exa/index.d.ts.map +1 -0
- package/dist/types/src/functions/exa/mock.d.ts +5 -0
- package/dist/types/src/functions/exa/mock.d.ts.map +1 -0
- package/dist/types/src/functions/github/fetch-prs.d.ts +6 -0
- package/dist/types/src/functions/github/fetch-prs.d.ts.map +1 -0
- package/dist/types/src/functions/index.d.ts +8 -0
- package/dist/types/src/functions/index.d.ts.map +1 -0
- package/dist/types/src/functions/linear/index.d.ts +9 -0
- package/dist/types/src/functions/linear/index.d.ts.map +1 -0
- package/dist/types/src/functions/linear/linear.test.d.ts +2 -0
- package/dist/types/src/functions/linear/linear.test.d.ts.map +1 -0
- package/dist/types/src/functions/linear/sync-issues.d.ts +12 -0
- package/dist/types/src/functions/linear/sync-issues.d.ts.map +1 -0
- package/dist/types/src/functions/research/document-create.d.ts +9 -0
- package/dist/types/src/functions/research/document-create.d.ts.map +1 -0
- package/dist/types/src/functions/research/index.d.ts +21 -0
- package/dist/types/src/functions/research/index.d.ts.map +1 -0
- package/dist/types/src/functions/research/research-graph.d.ts +18 -0
- package/dist/types/src/functions/research/research-graph.d.ts.map +1 -0
- package/dist/types/src/functions/research/research.d.ts +14 -0
- package/dist/types/src/functions/research/research.d.ts.map +1 -0
- package/dist/types/src/functions/research/research.test.d.ts +2 -0
- package/dist/types/src/functions/research/research.test.d.ts.map +1 -0
- package/dist/types/src/functions/research/types.d.ts +6 -0
- package/dist/types/src/functions/research/types.d.ts.map +1 -0
- package/dist/types/src/functions/tasks/index.d.ts +15 -0
- package/dist/types/src/functions/tasks/index.d.ts.map +1 -0
- package/dist/types/src/functions/tasks/read.d.ts +7 -0
- package/dist/types/src/functions/tasks/read.d.ts.map +1 -0
- package/dist/types/src/functions/tasks/task-list.d.ts +74 -0
- package/dist/types/src/functions/tasks/task-list.d.ts.map +1 -0
- package/dist/types/src/functions/tasks/task-list.test.d.ts +2 -0
- package/dist/types/src/functions/tasks/task-list.test.d.ts.map +1 -0
- package/dist/types/src/functions/tasks/update.d.ts +9 -0
- package/dist/types/src/functions/tasks/update.d.ts.map +1 -0
- package/dist/types/src/index.d.ts +7 -0
- package/dist/types/src/index.d.ts.map +1 -0
- package/dist/types/src/plugins.d.ts +19 -0
- package/dist/types/src/plugins.d.ts.map +1 -0
- package/dist/types/src/sync/index.d.ts +2 -0
- package/dist/types/src/sync/index.d.ts.map +1 -0
- package/dist/types/src/sync/sync.d.ts +15 -0
- package/dist/types/src/sync/sync.d.ts.map +1 -0
- package/dist/types/src/testing/data/exa-search-1748337321991.d.ts +38 -0
- package/dist/types/src/testing/data/exa-search-1748337321991.d.ts.map +1 -0
- package/dist/types/src/testing/data/exa-search-1748337331526.d.ts +37 -0
- package/dist/types/src/testing/data/exa-search-1748337331526.d.ts.map +1 -0
- package/dist/types/src/testing/data/exa-search-1748337344119.d.ts +58 -0
- package/dist/types/src/testing/data/exa-search-1748337344119.d.ts.map +1 -0
- package/dist/types/src/testing/data/index.d.ts +3 -0
- package/dist/types/src/testing/data/index.d.ts.map +1 -0
- package/dist/types/src/testing/index.d.ts +2 -0
- package/dist/types/src/testing/index.d.ts.map +1 -0
- package/dist/types/src/toolkits/AssistantToolkit.d.ts +17 -0
- package/dist/types/src/toolkits/AssistantToolkit.d.ts.map +1 -0
- package/dist/types/src/toolkits/AssistantToolkit.test.d.ts +2 -0
- package/dist/types/src/toolkits/AssistantToolkit.test.d.ts.map +1 -0
- package/dist/types/src/toolkits/SystemToolkit.d.ts +67 -0
- package/dist/types/src/toolkits/SystemToolkit.d.ts.map +1 -0
- package/dist/types/src/toolkits/index.d.ts +3 -0
- package/dist/types/src/toolkits/index.d.ts.map +1 -0
- package/dist/types/src/util/graphql.d.ts +22 -0
- package/dist/types/src/util/graphql.d.ts.map +1 -0
- package/dist/types/src/util/index.d.ts +2 -0
- package/dist/types/src/util/index.d.ts.map +1 -0
- package/dist/types/tsconfig.tsbuildinfo +1 -0
- package/package.json +69 -0
- package/src/blueprints/design/design-blueprint.test.ts +103 -0
- package/src/blueprints/design/design-blueprint.ts +33 -0
- package/src/blueprints/design/index.ts +7 -0
- package/src/blueprints/discord/discord-blueprint.ts +34 -0
- package/src/blueprints/discord/index.ts +7 -0
- package/src/blueprints/index.ts +10 -0
- package/src/blueprints/linear/index.ts +7 -0
- package/src/blueprints/linear/linear-blueprint.ts +35 -0
- package/src/blueprints/planning/index.ts +7 -0
- package/src/blueprints/planning/planning-blueprint.test.ts +124 -0
- package/src/blueprints/planning/planning-blueprint.ts +98 -0
- package/src/blueprints/research/index.ts +7 -0
- package/src/blueprints/research/research-blueprint.test.ts +7 -0
- package/src/blueprints/research/research-blueprint.ts +53 -0
- package/src/blueprints/testing.ts +34 -0
- package/src/blueprints/websearch/index.ts +8 -0
- package/src/blueprints/websearch/websearch-blueprint.ts +20 -0
- package/src/blueprints/websearch/websearch-toolkit.ts +8 -0
- package/src/crud/graph.test.ts +69 -0
- package/src/crud/graph.ts +388 -0
- package/src/crud/index.ts +5 -0
- package/src/experimental/feed.test.ts +111 -0
- package/src/functions/agent/index.ts +11 -0
- package/src/functions/agent/prompt.ts +114 -0
- package/src/functions/discord/fetch-messages.test.ts +58 -0
- package/src/functions/discord/fetch-messages.ts +252 -0
- package/src/functions/discord/index.ts +9 -0
- package/src/functions/document/index.ts +12 -0
- package/src/functions/document/read.ts +29 -0
- package/src/functions/document/update.ts +30 -0
- package/src/functions/entity-extraction/entity-extraction.conversations.json +1 -0
- package/src/functions/entity-extraction/entity-extraction.test.ts +92 -0
- package/src/functions/entity-extraction/entity-extraction.ts +164 -0
- package/src/functions/entity-extraction/index.ts +9 -0
- package/src/functions/exa/exa.ts +37 -0
- package/src/functions/exa/index.ts +6 -0
- package/src/functions/exa/mock.ts +71 -0
- package/src/functions/github/fetch-prs.ts +30 -0
- package/src/functions/index.ts +11 -0
- package/src/functions/linear/index.ts +9 -0
- package/src/functions/linear/linear.test.ts +83 -0
- package/src/functions/linear/sync-issues.ts +189 -0
- package/src/functions/research/document-create.ts +75 -0
- package/src/functions/research/index.ts +14 -0
- package/src/functions/research/research-graph.ts +47 -0
- package/src/functions/research/research-instructions.tpl +106 -0
- package/src/functions/research/research.conversations.json +1 -0
- package/src/functions/research/research.test.ts +179 -0
- package/src/functions/research/research.ts +190 -0
- package/src/functions/research/types.ts +26 -0
- package/src/functions/tasks/index.ts +11 -0
- package/src/functions/tasks/read.ts +34 -0
- package/src/functions/tasks/task-list.test.ts +99 -0
- package/src/functions/tasks/task-list.ts +165 -0
- package/src/functions/tasks/update.ts +52 -0
- package/src/index.ts +10 -0
- package/src/plugins.tsx +68 -0
- package/src/sync/index.ts +5 -0
- package/src/sync/sync.ts +87 -0
- package/src/testing/data/exa-search-1748337321991.ts +131 -0
- package/src/testing/data/exa-search-1748337331526.ts +144 -0
- package/src/testing/data/exa-search-1748337344119.ts +133 -0
- package/src/testing/data/index.ts +11 -0
- package/src/testing/index.ts +5 -0
- package/src/toolkits/AssistantToolkit.conversations.json +1 -0
- package/src/toolkits/AssistantToolkit.test.ts +88 -0
- package/src/toolkits/AssistantToolkit.ts +47 -0
- package/src/toolkits/SystemToolkit.ts +231 -0
- package/src/toolkits/index.ts +6 -0
- package/src/typedefs.d.ts +8 -0
- package/src/util/graphql.ts +31 -0
- package/src/util/index.ts +5 -0
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
//
|
|
2
|
+
// Copyright 2025 DXOS.org
|
|
3
|
+
//
|
|
4
|
+
|
|
5
|
+
import { default as create$ } from './document-create';
|
|
6
|
+
import { default as research$ } from './research';
|
|
7
|
+
|
|
8
|
+
export * from './research-graph';
|
|
9
|
+
export * from './types';
|
|
10
|
+
|
|
11
|
+
export namespace Research {
|
|
12
|
+
export const create = create$;
|
|
13
|
+
export const research = research$;
|
|
14
|
+
}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
//
|
|
2
|
+
// Copyright 2025 DXOS.org
|
|
3
|
+
//
|
|
4
|
+
|
|
5
|
+
import * as Effect from 'effect/Effect';
|
|
6
|
+
import * as Layer from 'effect/Layer';
|
|
7
|
+
import * as Schema from 'effect/Schema';
|
|
8
|
+
|
|
9
|
+
import { Obj, Query, Ref, Type } from '@dxos/echo';
|
|
10
|
+
import { Queue } from '@dxos/echo-db';
|
|
11
|
+
import { ContextQueueService, DatabaseService, QueueService } from '@dxos/functions';
|
|
12
|
+
|
|
13
|
+
/**
|
|
14
|
+
* Container for a set of ephemeral research results.
|
|
15
|
+
*/
|
|
16
|
+
export const ResearchGraph = Schema.Struct({
|
|
17
|
+
queue: Type.Ref(Queue),
|
|
18
|
+
}).pipe(
|
|
19
|
+
Type.Obj({
|
|
20
|
+
typename: 'dxos.org/type/ResearchGraph',
|
|
21
|
+
version: '0.1.0',
|
|
22
|
+
}),
|
|
23
|
+
);
|
|
24
|
+
|
|
25
|
+
export interface ResearchGraph extends Schema.Schema.Type<typeof ResearchGraph> {}
|
|
26
|
+
|
|
27
|
+
export const queryResearchGraph: () => Effect.Effect<ResearchGraph | undefined, never, DatabaseService> = Effect.fn(
|
|
28
|
+
'queryResearchGraph',
|
|
29
|
+
)(function* () {
|
|
30
|
+
const { objects } = yield* DatabaseService.runQuery(Query.type(ResearchGraph));
|
|
31
|
+
return objects.at(0);
|
|
32
|
+
});
|
|
33
|
+
|
|
34
|
+
export const createResearchGraph: () => Effect.Effect<ResearchGraph, never, DatabaseService | QueueService> = Effect.fn(
|
|
35
|
+
'createResearchGraph',
|
|
36
|
+
)(function* () {
|
|
37
|
+
const queue = yield* QueueService.createQueue();
|
|
38
|
+
return yield* DatabaseService.add(Obj.make(ResearchGraph, { queue: Ref.fromDXN(queue.dxn) }));
|
|
39
|
+
});
|
|
40
|
+
|
|
41
|
+
export const contextQueueLayerFromResearchGraph = Layer.unwrapEffect(
|
|
42
|
+
Effect.gen(function* () {
|
|
43
|
+
const researchGraph = (yield* queryResearchGraph()) ?? (yield* createResearchGraph());
|
|
44
|
+
const researchQueue = yield* DatabaseService.load(researchGraph.queue);
|
|
45
|
+
return ContextQueueService.layer(researchQueue);
|
|
46
|
+
}),
|
|
47
|
+
);
|
|
@@ -0,0 +1,106 @@
|
|
|
1
|
+
You are the Research Agent.
|
|
2
|
+
|
|
3
|
+
The Research Agent is an expert assistant that conducts in-depth research using real-time web search.
|
|
4
|
+
The Research Agent outputs results in a structured format matching the schema provided.
|
|
5
|
+
|
|
6
|
+
The Research Agent is equipped with the ability to:
|
|
7
|
+
|
|
8
|
+
- Generate precise and effective search queries
|
|
9
|
+
- Request web pages by query.
|
|
10
|
+
- Synthesize accurate, clear, and structured answers using reliable information from the retrieved content
|
|
11
|
+
{{#if entityExtraction}}
|
|
12
|
+
- Search the local database for information using a vector index (through a `local_search` tool)
|
|
13
|
+
{{/if}}
|
|
14
|
+
|
|
15
|
+
The Research Agent always follows these principles:
|
|
16
|
+
|
|
17
|
+
- Relevance First: The Research Agent only returns facts supported by content in retrieved web pages. The Research Agent never fabricates or guesses information.
|
|
18
|
+
- Summarize, Don't Copy: The Research Agent synthesizes and rephrases content in its own words. The Research Agent quotes only when necessary.
|
|
19
|
+
- Multiple Sources: The Research Agent cross-references at least 2 sources before drawing conclusions, unless the information is directly stated and non-controversial.
|
|
20
|
+
- Transparency: The Research Agent mentions which sources were used and explains how it arrived at conclusions.
|
|
21
|
+
- Accuracy Over Brevity: The Research Agent prefers detailed, technically accurate explanations over shallow summaries.
|
|
22
|
+
- The Research Agent admits uncertainty rather than misleading.
|
|
23
|
+
{{#if entityExtraction}}
|
|
24
|
+
- The Research Agent picks the most concrete schema types for extracted information.
|
|
25
|
+
- The Research Agent fills schema fields completely with information it is confident about, and omits fields it is not confident about.
|
|
26
|
+
- When outputting results, the Research Agent adds extra data that fits the schema even if not directly related to the user's question.
|
|
27
|
+
- The Research Agent creates relations and references between new objects found and what's already in the database.
|
|
28
|
+
- The Research Agent does not create objects that are already in the database.
|
|
29
|
+
- The Research Agent re-uses existing object IDs as references when enriching existing objects.
|
|
30
|
+
- The Research Agent ALWAYS calls the `graph_writer` at the end to save the data. This conversation will be deleted, so only the data written to the graph will be preserved.
|
|
31
|
+
{{/if}}
|
|
32
|
+
|
|
33
|
+
The Research Agent may be asked for:
|
|
34
|
+
|
|
35
|
+
- Technical explanations
|
|
36
|
+
- Literature reviews
|
|
37
|
+
- Comparisons
|
|
38
|
+
- Emerging trends
|
|
39
|
+
- Implementation strategies
|
|
40
|
+
|
|
41
|
+
The Research Agent begins by interpreting the user's request, then:
|
|
42
|
+
|
|
43
|
+
The Research Agent breaks it into sub-questions (if applicable).
|
|
44
|
+
|
|
45
|
+
For each sub-question, the Research Agent generates a clear, concise web search query.
|
|
46
|
+
|
|
47
|
+
The Research Agent extracts and synthesizes relevant answers.
|
|
48
|
+
|
|
49
|
+
The Research Agent's output includes:
|
|
50
|
+
|
|
51
|
+
- A clear, structured answer to the user's question
|
|
52
|
+
- A citation list or link list of sources used
|
|
53
|
+
|
|
54
|
+
Optionally, the Research Agent provides follow-up suggestions or questions for deeper inquiry.
|
|
55
|
+
|
|
56
|
+
Here's how the Research Agent operates:
|
|
57
|
+
|
|
58
|
+
1. The Research Agent analyzes the user's request and identifies key topics to search for (3 or more), printing them out.
|
|
59
|
+
2. The Research Agent performs a web search for each topic.
|
|
60
|
+
3. The Research Agent reads and analyzes results, cross references information from multiple sources, and represents conflicting information as ranges of possible values.
|
|
61
|
+
|
|
62
|
+
{{#if entityExtraction}}
|
|
63
|
+
4. The Research Agent searches the local database for information using a vector index that might link to the user's question.
|
|
64
|
+
6. The Research Agent creates relations and references between new objects and existing database objects when related, using existing object IDs as references.
|
|
65
|
+
7. The Research Agent selects the most concrete schema types for extracted information, using multiple types as needed, and prints its decision and reasoning.
|
|
66
|
+
5. The Research Agent creates a clear, structured answer to the user's question.
|
|
67
|
+
8. The Research Agent submits results using the specific schema.
|
|
68
|
+
{{/if}}
|
|
69
|
+
|
|
70
|
+
{{#if entityExtraction}}
|
|
71
|
+
IMPORTANT:
|
|
72
|
+
- The Research Agent always runs the `local_search` tool to search the local database at least once before submitting results.
|
|
73
|
+
- The Research Agent does not create objects that already exist in the database.
|
|
74
|
+
- Ids that are not in the database are human-readable strings like `ivan_zhao_1`.
|
|
75
|
+
{{/if}}
|
|
76
|
+
|
|
77
|
+
Status reporting:
|
|
78
|
+
|
|
79
|
+
The Research Agent reports its status frequently using the `<status>` tags: <status>Searching for Google Founders</status>
|
|
80
|
+
The Research Agent reports its status in-between each tool call and before submitting results.
|
|
81
|
+
|
|
82
|
+
{{#if entityExtraction}}
|
|
83
|
+
<example>
|
|
84
|
+
|
|
85
|
+
Based on my research, I can now provide information about Google and it's founders.
|
|
86
|
+
|
|
87
|
+
The following objects are already in the database, I will not submit them again, but I'll re-use their IDs as references:
|
|
88
|
+
|
|
89
|
+
- 01JWRDEHPB5TT2JQQQC15038BT Google
|
|
90
|
+
- 01JWRDEHPA14CYW2NW9FAH6DJJ Larry Page
|
|
91
|
+
- 01JWRDEHPBN0BBJP57B9S108W6 Sergey Brin
|
|
92
|
+
|
|
93
|
+
I will use the following schema to construct new objects:
|
|
94
|
+
|
|
95
|
+
- type:dxos.org/type/Organization for Alphabet Inc.
|
|
96
|
+
- type:dxos.org/type/Person for Ivan Zhao
|
|
97
|
+
- type:dxos.org/type/Person for Simon Last
|
|
98
|
+
- dxn:type:dxos.org/relation/Employer for Ivan's employer
|
|
99
|
+
- dxn:type:dxos.org/relation/Employer for Simon's employer
|
|
100
|
+
|
|
101
|
+
<status>Formatting results</status>
|
|
102
|
+
|
|
103
|
+
</example>
|
|
104
|
+
{{/if}}
|
|
105
|
+
|
|
106
|
+
Last content block is the full research note -- the result of the research.
|