aboutsummaryrefslogtreecommitdiffstats
path: root/container-search
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #30871 from vespa-engine/marius/add-significance-searcherMarius Arhaug2024-04-244-1/+246
|\ | | | | Add significance searcher
| * update injectableMariusArhaug2024-04-161-2/+0
| |
| * fix cr failuresMariusArhaug2024-04-163-10/+51
| |
| * add author tagsMariusArhaug2024-04-102-0/+13
| |
| * add testsMariusArhaug2024-04-103-8/+138
| |
| * add significance searcherMariusArhaug2024-04-091-0/+63
| |
* | Merge pull request #30976 from ↵Henning Baldersheim2024-04-2210-56/+144
|\ \ | | | | | | | | | | | | vespa-engine/vekterli/wire-fuzzy-prefix-match-through-query-stack Wire fuzzy prefix matching support through the query stack
| * | Wire fuzzy prefix matching support through the query stackTor Brede Vekterli2024-04-1910-56/+144
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Adds `prefix:[true|false]` annotation support to the `fuzzy` query operator in the YQL and JSON query languages. Fuzzy prefix matching semantics are wired through to the matcher implementations for both indexed and streaming search. Example usage: {maxEditDistance:1,prefix:true}fuzzy("foo") Will match `foo`, `foobar`, `foxtrot`, `zookeeper` and so on. It can be combined with the existing prefix locking feature: {maxEditDistance:1,prefixLength:2,prefix:true}fuzzy("foo") Which will match `foo`, `foobar`, `foxtrot` etc, but _not_ `zookeeper` since the locked prefix (`fo`) does not match. Due to the complexities involved with extending the legacy binary query stack representation, signalling prefix matching for the fuzzy term is done by pragmatically adding a new, generic "prefix matching" term-level flag. This is currently ignored for everything except fuzzy query items. Modernizing the query stack format to make it more extensible (i.e. move encoding to Protobuf) is on the backlog...!
* | | Aviod using exception for normal control flow.Henning Baldersheim2024-04-1913-198/+133
| | |
* | | Revert <?>. Can not be used with components and injection.Henning Baldersheim2024-04-192-6/+6
| | |
* | | Use <?>Henning Baldersheim2024-04-181-2/+2
| | |
* | | Move Results to the only place it is used.Henning Baldersheim2024-04-183-16/+55
|/ /
* | Update expected uca version for chinese.Henning Baldersheim2024-04-172-2/+2
| |
* | Reapply "Lesters/add local llms 2"Lester Solbakken2024-04-1612-587/+243
| | | | | | | | This reverts commit ed62b750494822cc67a328390178754512baf032.
* | Revert "Lesters/add local llms 2"Harald Musum2024-04-1512-243/+587
| |
* | Reapply "Lesters/add local llms"Lester Solbakken2024-04-1512-587/+243
| | | | | | | | This reverts commit 7518d93961ac7c5c5da1cd41717d42f600dae647.
* | Revert "Lesters/add local llms"Lester Solbakken2024-04-1512-243/+587
| |
* | Merge branch 'master' into lesters/add-local-llmsLester Solbakken2024-04-12126-501/+349
|\ \
| * | Replace all usages of Arrays.asList with List.of where possible.Henning Baldersheim2024-04-1286-288/+246
| | |
| * | Unify on List.ofHenning Baldersheim2024-04-1125-76/+53
| | |
| * | Use Set that allows null elementsHenning Baldersheim2024-04-111-4/+6
| | |
| * | Calling clear on List.of() collections seems to be a bad plan.Henning Baldersheim2024-04-111-1/+2
| | |
| * | Correct typoHenning Baldersheim2024-04-111-2/+2
| | |
| * | Unify on Set.ofHenning Baldersheim2024-04-119-27/+24
| | |
| * | Neither keys, nor values can be null.Henning Baldersheim2024-04-111-4/+4
| | |
| * | Use Set.of() gives a set where contains check if argument is nullHenning Baldersheim2024-04-111-2/+4
| | |
| * | Unify on Map.ofHenning Baldersheim2024-04-1112-116/+26
| |/
* | Clean up test code after move from container-search to model-integrationLester Solbakken2024-04-122-136/+87
| |
* | Move LLM client stuff from container-search to model-integrationLester Solbakken2024-04-1214-881/+60
| |
* | Don't use GPU in unit testLester Solbakken2024-04-111-4/+0
| |
* | Add tiny LLM for unit testingLester Solbakken2024-04-112-94/+37
| |
* | Use 'model' config type for LLM modelsLester Solbakken2024-04-113-71/+68
| |
* | Be able to render async error messages from event stream in json as wellLester Solbakken2024-04-112-15/+46
| |
* | Throw exception on too many LLM requestsLester Solbakken2024-04-112-4/+7
| |
* | Non-functional changesLester Solbakken2024-04-101-15/+20
| |
* | Remove unneccessary codeLester Solbakken2024-04-101-4/+0
| |
* | Add local LLM client and wire in container-llamaLester Solbakken2024-04-106-10/+564
|/
* Merge branch 'master' into lesters/update-platform-bundles-for-rag-2Lester Solbakken2024-04-041-1/+1
|\
| * Re-enable async LLM testLester Solbakken2024-04-021-2/+0
| |
| * Temporary disable testLester Solbakken2024-04-021-1/+3
| |
* | Moved ai.vespa.llm.search to ai.vespa.search.llmLester Solbakken2024-04-047-21/+21
| |
* | Move LLM searcher and client configdefinitions outside of ai.vespa.llmLester Solbakken2024-04-0212-16/+131
| |
* | Rename ai.vespa.languagemodels to ai.vespa.llm in vespajlibLester Solbakken2024-04-0210-36/+36
| |
* | Move LLM classes in vespajlib from ai.vespa.llm to ai.vespa.languagemodelsLester Solbakken2024-04-0210-63/+68
|/
* Improve embedder error messagesJon Bratseth2024-03-294-15/+22
|
* Add beta annotation and update copyright headersLester Solbakken2024-03-276-1/+9
|
* Rename apikey config to better reflect it is a name in secret storeLester Solbakken2024-03-274-10/+9
|
* Add RAG searcherLester Solbakken2024-03-2614-0/+1119
|
* Add synthetic targets so that you can always use cluster.schema as source ↵Henning Baldersheim2024-03-225-46/+84
| | | | | | | for both streaming and indexed. - Make a SearchChainInvocationSpec proxy for all possible searchcluster.schema combinations. - It will modify the query with the actual source to use, and restrict to the given schema.
* Handle the federation config in the federation searcher.Henning Baldersheim2024-03-222-6/+8
|