返回 DeepSeek-Reasonix
embed.go
根目录 / docs / embed.go
1 // Package docs exposes the product documentation bundled with each Reasonix
2 // build. Runtime consumers should retrieve focused sections instead of adding
3 // the full corpus to the provider-visible prompt.
4 package docs
5
6 import "embed"
7
8 // Content contains the Markdown documentation shipped by this exact build.
9 // Images and generated site assets are intentionally excluded from the agent
10 // retrieval corpus.
11 //
12 //go:embed *.md
13 var Content embed.FS
14
14 lines GO