Skip to content

Commit

Permalink
📛 0.3.5.dev19 - F821
Browse files Browse the repository at this point in the history
  • Loading branch information
cobycloud committed Jun 28, 2024
1 parent 2dc2c13 commit ffa3253
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion swarmauri/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "0.3.5.dev18"
__version__ = "0.3.5.dev19"
__long_desc__ = """
# swarmaURI sdk
Expand Down
3 changes: 2 additions & 1 deletion swarmauri/standard/agents/concrete/RagAgent.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
AgentMessage)

from swarmauri.core.typing import SubclassUnion
from swarmauri.standard.llms.base.LLMBase import LLMBase
from swarmauri.standard.conversations.base.ConversationBase import ConversationBase
from swarmauri.standard.vector_stores.base.VectorStoreBase import VectorStoreBase

Expand All @@ -26,8 +27,8 @@ class RagAgent(AgentRetrieveMixin,
"""
llm: SubclassUnion[LLMBase]
conversation: SubclassUnion[ConversationBase]
system_context: Union[SystemMessage, str]
vector_store: SubclassUnion[VectorStoreBase]
system_context: Union[SystemMessage, str]
type: Literal['RagAgent'] = 'RagAgent'

def _create_preamble_context(self):
Expand Down

0 comments on commit ffa3253

Please sign in to comment.