mirror of
https://github.com/mostlygeek/llama-swap.git
synced 2026-09-07 16:37:22 +02:00
Validate JSON Schema / validate-schema (push) Successful in 37s
Build Containers / build-and-push (cpu) (push) Failing after 39s
Build Containers / build-and-push (cuda) (push) Failing after 30s
Build Containers / build-and-push (cuda13) (push) Failing after 29s
Build Containers / build-and-push (intel) (push) Failing after 30s
Build Containers / build-and-push (musa) (push) Failing after 29s
Build Containers / build-and-push (rocm) (push) Failing after 40s
Build Containers / build-and-push (vulkan) (push) Failing after 32s
Build Containers / delete-untagged-containers (push) Skipped
Linux CI / run-tests (push) Failing after 2m33s
UI Tests / run-tests (push) Successful in 43s
Windows CI / run-tests (push) Canceled after 0s
Add an Docs agent to the playground that can help the user with more advanced configuration. - add mcp 2026-07-28 (stateless mcp) framework - add MCP tools for doc search and config search - add initial set of guides for key topics - add Docs to the Playground - removed out of data documentation and plans
11 lines
317 B
Go
11 lines
317 B
Go
// Package docs embeds the documentation served by the Docs Agent.
|
|
package docs
|
|
|
|
import "embed"
|
|
|
|
// Files contains the knowledge base, configuration example, and introductory
|
|
// documentation. Large assets under docs/assets are deliberately excluded.
|
|
//
|
|
//go:embed kb config.example.yaml README.md
|
|
var Files embed.FS
|