-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathllms_config.json
More file actions
144 lines (140 loc) · 5.18 KB
/
llms_config.json
File metadata and controls
144 lines (140 loc) · 5.18 KB
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
{
"schema_version": "1.2",
"project": {
"id": "moonbeam",
"name": "Moonbeam",
"project_url": "https://moonbeam.network",
"docs_base_url": "https://docs.moonbeam.network/"
},
"repository": {
"host": "github",
"org": "moonbeam-foundation",
"repo": "moonbeam-docs",
"default_branch": "master",
"docs_path": ".",
"ai_artifacts_path": "ai/pages"
},
"content": {
"docs_dir": ".",
"base_context_categories": ["basics", "reference"],
"categories_info": {
"basics": {
"id": "basics",
"name": "Basics",
"description": "Moonbeam's framework, architecture, and core components."
},
"ethereum_toolkit": {
"id": "ethereum_toolkit",
"name": "Ethereum Toolkit",
"description": "Useful tools and smart contracts to work with Moonbeam's EVM."
},
"substrate_toolkit": {
"id": "substrate_toolkit",
"name": "Substrate Toolkit",
"description": "Useful tools and smart contracts to work with Substrate."
},
"gmp_providers": {
"id": "gmp_providers",
"name": "GMP Providers",
"description": "How to use General Message Passing (GMP) for cross-chain communication."
},
"xcm": {
"id": "xcm",
"name": "XCM",
"description": "Learn about and use Cross-Consensus Messaging (XCM)."
},
"xc_20": {
"id": "xc_20",
"name": "XC-20",
"description": "Guides for interacting with XC-20 tokens."
},
"xcm_remote_execution": {
"id": "xcm_remote_execution",
"name": "XCM Remote Execution",
"description": "How to make cross-chain calls with XCM."
},
"precompiles": {
"id": "precompiles",
"name": "Precompiles",
"description": "Guides to using Moonbeam's precompiles."
},
"libraries_and_sdks": {
"id": "libraries_and_sdks",
"name": "Libraries and SDKs",
"description": "Resources for commonly used libraries and SDKs."
},
"dev_environments": {
"id": "dev_environments",
"name": "Dev Environments",
"description": "How to set up developer environments such as Hardhat and Foundry."
},
"json_rpc_apis": {
"id": "json_rpc_apis",
"name": "JSON-RPC APIs",
"description": "RPC usage and tracing."
},
"node_operators_and_collators": {
"id": "node_operators_and_collators",
"name": "Node Operators and Collators",
"description": "How to run a full node or a block-producing collator."
},
"oracle_nodes": {
"id": "oracle_nodes",
"name": "Oracle Nodes",
"description": "How to integrate with oracle node providers."
},
"indexers_and_queries": {
"id": "indexers_and_queries",
"name": "Indexers and Queries",
"description": "How to integrate with indexer and query node providers."
},
"tokens_and_accounts": {
"id": "tokens_and_accounts",
"name": "Tokens and Accounts",
"description": "How to manage tokens and accounts on Moonbeam."
},
"staking": {
"id": "staking",
"name": "Staking",
"description": "Guides to delegate and collate."
},
"governance": {
"id": "governance",
"name": "Governance",
"description": "Guides to governance including voting and treasury."
},
"integrations": {
"id": "integrations",
"name": "Integrations",
"description": "Guides to integrating Moonbeam with various tools such as wallets and analytics."
},
"tutorials": {
"id": "tutorials",
"name": "Tutorials",
"description": "Comprehensive, step-by-step, guided project builds."
},
"reference": {
"id": "reference",
"name": "Reference",
"description": "Reference material including network endpoints, JSON-RPC methods, and contract or token addresses."
}
},
"exclusions": {
"skip_basenames": [
"index.md",
"README.md",
".CONTRIBUTING.md",
"LICENSE.md",
"ai-resources.md"
],
"skip_paths": ["cn", "venv"]
}
},
"outputs": {
"public_root": "/ai/",
"files": {
"llms_full": "llms-full.jsonl",
"pages_dir": "pages"
}
}
}