fix(agent): update ReactSearchOp import path

This commit is contained in:
jinli.yl 2025-11-23 14:20:39 +08:00
parent b8c1b4844b
commit 3fb2f82019
3 changed files with 2 additions and 5 deletions

View file

@ -2,6 +2,3 @@ FLOW_EMBEDDING_API_KEY=sk-xxxx
FLOW_EMBEDDING_BASE_URL=https://xxxx/v1
FLOW_LLM_API_KEY=sk-xxxx
FLOW_LLM_BASE_URL=https://xxxx/v1
# FLOW_ES_HOSTS=http://0.0.0.0:9200
# FLOW_DASHSCOPE_API_KEY=sk-xxx

View file

@ -30,4 +30,4 @@ __all__ = [
"vector_store",
]
__version__ = "0.2.0.0"
__version__ = "0.2.0.1"

View file

@ -8,7 +8,7 @@ reasoning and search actions.
import asyncio
from flowllm.core.context import C, FlowContext
from flowllm.gallery import ReactSearchOp
from flowllm.gallery.agent import ReactSearchOp
@C.register_op()