ajd 在 llm-structed: 一款针对 结构化输出 场景优化的 Golang LLM Client 中发帖
package main
import (
"context"
"github.com/glidea/llm-structed"
)
type Response struct {
Title string `desc:"The title of the summary"`
Content string `desc:"A concise summary of the article content"`
Keywords []string `desc:"Key topics mentioned in the article"`
Score int `desc:"The quality score of the article (1-10)"`
Category string `desc:"The c...