aboutsummaryrefslogtreecommitdiffstats
path: root/container-search/src
Commit message (Collapse)AuthorAgeFilesLines
* Fix CR commentsMariusArhaug2024-04-301-0/+2
|
* Add significance rank profileMariusArhaug2024-04-304-2/+47
|
* Merge pull request #31011 from ↵Marius Arhaug2024-04-302-11/+17
|\ | | | | | | | | vespa-engine/marius/update-significance-model-fields Update significance model field and logic from architect meeting
| * Fix CR commentsMariusArhaug2024-04-302-11/+17
| |
* | Temporily disable LLMSearcherTestLester Solbakken2024-04-291-0/+2
|/
* 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-229-56/+139
|\ \ | | | | | | | | | | | | 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-199-56/+139
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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-1611-494/+228
| | | | | | | | This reverts commit ed62b750494822cc67a328390178754512baf032.
* | Revert "Lesters/add local llms 2"Harald Musum2024-04-1511-228/+494
| |
* | Reapply "Lesters/add local llms"Lester Solbakken2024-04-1511-494/+228
| | | | | | | | This reverts commit 7518d93961ac7c5c5da1cd41717d42f600dae647.
* | Revert "Lesters/add local llms"Lester Solbakken2024-04-1511-228/+494
| |
* | 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-1212-691/+45
| |
* | 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-104-10/+467
|/
* 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-046-6/+6
| |
* | Move LLM searcher and client configdefinitions outside of ai.vespa.llmLester Solbakken2024-04-0211-12/+3
| |
* | Rename ai.vespa.languagemodels to ai.vespa.llm in vespajlibLester Solbakken2024-04-029-28/+28
| |
* | Move LLM classes in vespajlib from ai.vespa.llm to ai.vespa.languagemodelsLester Solbakken2024-04-029-53/+49
|/
* Improve embedder error messagesJon Bratseth2024-03-294-15/+22
|