diff --git a/example.env b/example.env index a293f19d..d09632d4 100644 --- a/example.env +++ b/example.env @@ -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 \ No newline at end of file diff --git a/reme_ai/__init__.py b/reme_ai/__init__.py index 62450870..912d0b64 100644 --- a/reme_ai/__init__.py +++ b/reme_ai/__init__.py @@ -30,4 +30,4 @@ __all__ = [ "vector_store", ] -__version__ = "0.2.0.0" +__version__ = "0.2.0.1" diff --git a/reme_ai/agent/react/simple_react_op.py b/reme_ai/agent/react/simple_react_op.py index ae1157ce..8c04e87d 100644 --- a/reme_ai/agent/react/simple_react_op.py +++ b/reme_ai/agent/react/simple_react_op.py @@ -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()