Skip to content
This repository was archived by the owner on May 20, 2025. It is now read-only.

Commit 9aed649

Browse files
tjholmHomelessDinosaur
authored andcommitted
add additional notes
1 parent 823f3ff commit 9aed649

File tree

1 file changed

+17
-13
lines changed

1 file changed

+17
-13
lines changed

docs/guides/deno/byo-deep-research.mdx

Lines changed: 17 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -71,19 +71,23 @@ cd deep-research
7171

7272
4. **Project structure**:
7373

74-
```
75-
deep-research/
76-
├── deno.json # Deno configuration and dependencies
77-
├── .env # Environment variables
78-
├── utils/
79-
│ └── search.ts # Search functionality
80-
├── prompts/
81-
│ ├── query.ts # Query generation prompt
82-
│ ├── summarizer.ts # Content summarization prompt
83-
│ └── reflect.ts # Research reflection prompt
84-
└── services/
85-
└── api.ts # Main API implementation
86-
```
74+
The following is the project structure for this example (feel free to create these files in advance):
75+
76+
```
77+
deep-research/
78+
├── deno.json # Deno configuration and dependencies
79+
├── .env # Environment variables
80+
├── utils/
81+
│ └── search.ts # Search functionality
82+
├── prompts/
83+
│ ├── query.ts # Query generation prompt
84+
│ ├── summarizer.ts # Content summarization prompt
85+
│ └── reflect.ts # Research reflection prompt
86+
└── services/
87+
└── api.ts # Main API implementation
88+
```
89+
90+
> Code snippets presented will have the name of the file they are in included in the title.
8791
8892
## The Architecture
8993

0 commit comments

Comments
 (0)