This is an automated email from the ASF dual-hosted git repository.
LinkinStars pushed a change to branch dev
in repository https://gitbox.apache.org/repos/asf/answer-plugins.git
from ebe6365 fix(import): add rand import
new 8d3cf49 feat: add in-memory vector search plugin with multilingual
support
new d940ee3 feat(i18n): add options for embedding level in English and
Chinese translations
The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
vector-search-memory/README.md | 55 ++++
{captcha-google-v2 => vector-search-memory}/go.mod | 2 +-
{captcha-google-v2 => vector-search-memory}/go.sum | 0
.../i18n/en_US.yaml | 43 +--
vector-search-memory/i18n/translation.go | 42 +++
.../i18n/zh_CN.yaml | 43 +--
{cache-redis => vector-search-memory}/info.yaml | 8 +-
vector-search-memory/memory.go | 332 +++++++++++++++++++++
vector-search-memory/sync.go | 102 +++++++
9 files changed, 582 insertions(+), 45 deletions(-)
create mode 100644 vector-search-memory/README.md
copy {captcha-google-v2 => vector-search-memory}/go.mod (97%)
copy {captcha-google-v2 => vector-search-memory}/go.sum (100%)
copy {search-algolia => vector-search-memory}/i18n/en_US.yaml (50%)
create mode 100644 vector-search-memory/i18n/translation.go
copy {search-algolia => vector-search-memory}/i18n/zh_CN.yaml (51%)
copy {cache-redis => vector-search-memory}/info.yaml (84%)
create mode 100644 vector-search-memory/memory.go
create mode 100644 vector-search-memory/sync.go