-
Notifications
You must be signed in to change notification settings - Fork 33
/
autodoc.config.json
30 lines (30 loc) · 1.4 KB
/
autodoc.config.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{
"name": "ergoweb",
"repositoryUrl": "https://github.com/ergoplatform/ergoweb",
"root": ".",
"output": "./.autodoc",
"llms": [
"gpt-3.5-turbo",
"gpt-4"
],
"ignore": [
".*",
"*package-lock.json",
"*package.json",
"node_modules",
"*dist*",
"*build*",
"*test*",
"*.svg",
"*.md",
"*.mdx",
"*.toml",
"*autodoc*"
],
"filePrompt": "Write a detailed technical explanation of what this code does. \n Focus on the high-level purpose of the code and how it may be used in the larger project.\n Include code examples where appropriate. Keep you response between 100 and 300 words. \n DO NOT RETURN MORE THAN 300 WORDS.\n Output should be in markdown format.\n Do not just list the methods and classes in this file.",
"folderPrompt": "Write a technical explanation of what the code in this file does\n and how it might fit into the larger project or work with other parts of the project.\n Give examples of how this code might be used. Include code examples where appropriate.\n Be concise. Include any information that may be relevant to a developer who is curious about this code.\n Keep you response under 400 words. Output should be in markdown format.\n Do not just list the files and folders in this folder.",
"chatPrompt": "",
"contentType": "code",
"targetAudience": "smart developer",
"linkHosted": true
}