ursa-ai 0.7.0rc1__py3-none-any.whl → 0.7.1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of ursa-ai might be problematic. Click here for more details.

ursa/agents/__init__.py CHANGED
@@ -1,8 +1,19 @@
1
- from .arxiv_agent import ArxivAgent as ArxivAgent
1
+ from .acquisition_agents import (
2
+ ArxivAgent as ArxivAgent,
3
+ )
4
+ from .acquisition_agents import (
5
+ OSTIAgent as OSTIAgent,
6
+ )
7
+ from .acquisition_agents import (
8
+ WebSearchAgent as WebSearchAgent,
9
+ )
10
+ from .arxiv_agent import ArxivAgentLegacy as ArxivAgentLegacy
2
11
  from .arxiv_agent import PaperMetadata as PaperMetadata
3
12
  from .arxiv_agent import PaperState as PaperState
4
13
  from .base import BaseAgent as BaseAgent
5
14
  from .base import BaseChatModel as BaseChatModel
15
+ from .chat_agent import ChatAgent as ChatAgent
16
+ from .chat_agent import ChatState as ChatState
6
17
  from .code_review_agent import CodeReviewAgent as CodeReviewAgent
7
18
  from .code_review_agent import CodeReviewState as CodeReviewState
8
19
  from .execution_agent import ExecutionAgent as ExecutionAgent
@@ -17,5 +28,5 @@ from .planning_agent import PlanningState as PlanningState
17
28
  from .rag_agent import RAGAgent as RAGAgent
18
29
  from .rag_agent import RAGState as RAGState
19
30
  from .recall_agent import RecallAgent as RecallAgent
20
- from .websearch_agent import WebSearchAgent as WebSearchAgent
31
+ from .websearch_agent import WebSearchAgentLegacy as WebSearchAgentLegacy
21
32
  from .websearch_agent import WebSearchState as WebSearchState