This is an automated email from the ASF dual-hosted git repository.
xtsong pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/flink-agents.git
from 2d53ddbc [hotfix] Use qwen3:1.7b in ChatModelCrossLanguageTest to
improve stability (#436)
new b71931e6 [test] Reduce test data to decrease CrossLanguageTest Time
new 4eecf0b8 [hotfix] Fix data loss when initializing VectorStoreQuery
new c63db6c2 [Feature][runtime] Support the use of Java VectorStore in
Python
new a5d8ce2b [test] Enable Java Vector Store Cross-Language Test in CI
The 4 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:
.github/workflows/ci.yml | 30 ++-
.../agents/api/vectorstores/VectorStoreQuery.java | 2 +-
dist/pom.xml | 5 +
.../resource/test/ChatModelCrossLanguageTest.java | 10 +-
.../vector_stores/java_vector_store.py} | 44 ++---
.../vector_store_cross_language_agent.py | 207 +++++++++++++++++++++
...test.py => vector_store_cross_language_test.py} | 15 +-
python/flink_agents/plan/resource_provider.py | 1 +
.../flink_agents/runtime/java/java_vector_store.py | 148 +++++++++++++++
python/flink_agents/runtime/python_java_utils.py | 19 ++
.../runtime/python/utils/JavaResourceAdapter.java | 29 +++
11 files changed, 463 insertions(+), 47 deletions(-)
copy python/flink_agents/{e2e_tests/e2e_tests_integration/react_agent_tools.py
=> api/vector_stores/java_vector_store.py} (62%)
create mode 100644
python/flink_agents/e2e_tests/e2e_tests_resource_cross_language/vector_store_cross_language_agent.py
copy
python/flink_agents/e2e_tests/e2e_tests_resource_cross_language/{embedding_model_cross_language_test.py
=> vector_store_cross_language_test.py} (86%)
create mode 100644 python/flink_agents/runtime/java/java_vector_store.py