mdcontext 0.0.1
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/README.md +19 -0
- package/package.json +19 -0
package/README.md
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
# mdcontext
|
|
2
|
+
|
|
3
|
+
Intelligent markdown context extraction for LLMs.
|
|
4
|
+
|
|
5
|
+
**Coming soon.** This package is a placeholder for the upcoming release.
|
|
6
|
+
|
|
7
|
+
## What is mdcontext?
|
|
8
|
+
|
|
9
|
+
mdcontext extracts structured, token-optimized context from markdown documentation for use with LLMs. Features include:
|
|
10
|
+
|
|
11
|
+
- Semantic search with embeddings
|
|
12
|
+
- Smart section extraction
|
|
13
|
+
- Token counting and optimization
|
|
14
|
+
- Context-aware chunking
|
|
15
|
+
|
|
16
|
+
## Links
|
|
17
|
+
|
|
18
|
+
- Website: https://mdcontext.com
|
|
19
|
+
- GitHub: https://github.com/mdcontext/mdcontext
|
package/package.json
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "mdcontext",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "Intelligent markdown context extraction for LLMs. Coming soon.",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"markdown",
|
|
7
|
+
"context",
|
|
8
|
+
"llm",
|
|
9
|
+
"semantic-search",
|
|
10
|
+
"embeddings"
|
|
11
|
+
],
|
|
12
|
+
"author": "alphab",
|
|
13
|
+
"license": "MIT",
|
|
14
|
+
"repository": {
|
|
15
|
+
"type": "git",
|
|
16
|
+
"url": "https://github.com/mdcontext/mdcontext"
|
|
17
|
+
},
|
|
18
|
+
"homepage": "https://mdcontext.com"
|
|
19
|
+
}
|