This is an automated email from the ASF dual-hosted git repository. xtsong pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/flink-agents.git
commit 0383e972463e5653fbe96ea86be06227cbaf2ec3 Author: WenjinXie <[email protected]> AuthorDate: Tue Jan 20 20:50:59 2026 +0800 [test] Disable think for long-term memory test. --- .../e2e_tests/e2e_tests_integration/long_term_memory_test.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/python/flink_agents/e2e_tests/e2e_tests_integration/long_term_memory_test.py b/python/flink_agents/e2e_tests/e2e_tests_integration/long_term_memory_test.py index 0690872d..45403b96 100644 --- a/python/flink_agents/e2e_tests/e2e_tests_integration/long_term_memory_test.py +++ b/python/flink_agents/e2e_tests/e2e_tests_integration/long_term_memory_test.py @@ -70,7 +70,7 @@ os.environ["PYTHONPATH"] = sysconfig.get_paths()["purelib"] chromadb_path = tempfile.mkdtemp() -OLLAMA_CHAT_MODEL = "qwen3:4b" +OLLAMA_CHAT_MODEL = "qwen3:8b" OLLAMA_EMBEDDING_MODEL = "nomic-embed-text" pull_model(OLLAMA_CHAT_MODEL) pull_model(OLLAMA_EMBEDDING_MODEL) @@ -136,6 +136,7 @@ class LongTermMemoryAgent(Agent): connection="ollama_connection", model=OLLAMA_CHAT_MODEL, extract_reasoning=True, + think=False, ) @embedding_model_connection
