()
| 44 | } |
| 45 | |
| 46 | func (p *fileContentProvider) ListModels() ([]string, error) { |
| 47 | return p.provider.ListModels() |
| 48 | } |
| 49 | |
| 50 | func (p *fileContentProvider) QueryText(question string, writer io.Writer, history []*RawMessage, prompt string, knowledgeMessages []*RawMessage, toolSession *ToolSession, lang string) (*ModelResult, error) { |
| 51 | question, err := replaceFileURLs(question, p.providerType, lang) |
nothing calls this directly
no test coverage detected