Initialize a JSON value
()
| 12744 | |
| 12745 | // Initialize a JSON value |
| 12746 | func (r *Query) JSON() *JSONValue { |
| 12747 | q := r.query.Select("json") |
| 12748 | |
| 12749 | return &JSONValue{ |
| 12750 | query: q, |
| 12751 | } |
| 12752 | } |
| 12753 | |
| 12754 | // LLMOpts contains options for Query.LLM |
| 12755 | type LLMOpts struct { |