Initialize a JSON value
()
| 12764 | |
| 12765 | // Initialize a JSON value |
| 12766 | func (r *Query) JSON() *JSONValue { |
| 12767 | q := r.query.Select("json") |
| 12768 | |
| 12769 | return &JSONValue{ |
| 12770 | query: q, |
| 12771 | } |
| 12772 | } |
| 12773 | |
| 12774 | // LLMOpts contains options for Query.LLM |
| 12775 | type LLMOpts struct { |
no test coverage detected