feat: follow llm.txt

This commit is contained in:
2025-12-18 10:27:40 +08:00
parent 819fa7f218
commit 674c562831
25 changed files with 2775 additions and 106 deletions

View File

@@ -1,8 +1,11 @@
package requests
// KV is a generic key-value response item, commonly used for label/value enums.
type KV struct {
Key string `json:"key,omitempty"`
Value any `json:"value,omitempty"`
// Key is a machine-readable value, usually an enum string.
Key string `json:"key,omitempty"`
// Value is the label payload, often a human-readable string.
Value any `json:"value,omitempty"`
}
func NewKV(k string, v any) KV {