mb-rag 1.1.18__tar.gz → 1.1.20__tar.gz

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 mb-rag might be problematic. Click here for more details.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: mb_rag
3
- Version: 1.1.18
3
+ Version: 1.1.20
4
4
  Summary: RAG function file
5
5
  Author: ['Malav Bateriwala']
6
6
  Requires-Python: >=3.8
@@ -236,7 +236,7 @@ mb_rag/
236
236
  │ └── chains.py # LangChain integration
237
237
  ├── agents/
238
238
  │ ├── run_agent.py # Agent execution
239
- │ └── web_browser_agent.py # Web browsing capabilities
239
+ │ └── web_browser_agent.py # Web browsing capabilities, Added WebAgent with langgraph
240
240
  └── utils/
241
241
  ├── bounding_box.py # Image processing utilities
242
242
  └── extra.py # Additional utilities
@@ -12,7 +12,8 @@ __all__ = [
12
12
  'ChatbotBase',
13
13
  'ModelFactory',
14
14
  'ConversationModel',
15
- 'IPythonStreamHandler'
15
+ 'IPythonStreamHandler',
16
+ 'AgentFactory'
16
17
  ]
17
18
 
18
19
  class ChatbotBase:
@@ -1,5 +1,5 @@
1
1
  MAJOR_VERSION = 1
2
2
  MINOR_VERSION = 1
3
- PATCH_VERSION = 18
3
+ PATCH_VERSION = 20
4
4
  version = '{}.{}.{}'.format(MAJOR_VERSION, MINOR_VERSION, PATCH_VERSION)
5
5
  __all__ = ['MAJOR_VERSION', 'MINOR_VERSION', 'PATCH_VERSION', 'version']
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: mb_rag
3
- Version: 1.1.18
3
+ Version: 1.1.20
4
4
  Summary: RAG function file
5
5
  Author: ['Malav Bateriwala']
6
6
  Requires-Python: >=3.8
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes