(metadata map[string]any)
| 299 | } |
| 300 | |
| 301 | func WithMetadata(metadata map[string]any) RAGOption { |
| 302 | return func(opts *RAGOptions) { |
| 303 | opts.Metadata = metadata |
| 304 | } |
| 305 | } |
| 306 | |
| 307 | func WithTimeRange(start, end time.Time) RAGOption { |
| 308 | return func(opts *RAGOptions) { |
no outgoing calls
no test coverage detected