ambivo-agents 1.0.3__tar.gz → 1.0.4__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.
- {ambivo_agents-1.0.3 → ambivo_agents-1.0.4}/PKG-INFO +1 -1
- {ambivo_agents-1.0.3 → ambivo_agents-1.0.4}/ambivo_agents/agents/knowledge_base.py +6 -2
- {ambivo_agents-1.0.3 → ambivo_agents-1.0.4}/ambivo_agents.egg-info/PKG-INFO +1 -1
- {ambivo_agents-1.0.3 → ambivo_agents-1.0.4}/pyproject.toml +1 -1
- {ambivo_agents-1.0.3 → ambivo_agents-1.0.4}/setup.py +1 -1
- {ambivo_agents-1.0.3 → ambivo_agents-1.0.4}/LICENSE +0 -0
- {ambivo_agents-1.0.3 → ambivo_agents-1.0.4}/README.md +0 -0
- {ambivo_agents-1.0.3 → ambivo_agents-1.0.4}/ambivo_agents/__init__.py +0 -0
- {ambivo_agents-1.0.3 → ambivo_agents-1.0.4}/ambivo_agents/agents/__init__.py +0 -0
- {ambivo_agents-1.0.3 → ambivo_agents-1.0.4}/ambivo_agents/agents/assistant.py +0 -0
- {ambivo_agents-1.0.3 → ambivo_agents-1.0.4}/ambivo_agents/agents/code_executor.py +0 -0
- {ambivo_agents-1.0.3 → ambivo_agents-1.0.4}/ambivo_agents/agents/code_executor2.py +0 -0
- {ambivo_agents-1.0.3 → ambivo_agents-1.0.4}/ambivo_agents/agents/media_editor.py +0 -0
- {ambivo_agents-1.0.3 → ambivo_agents-1.0.4}/ambivo_agents/agents/moderator.py +0 -0
- {ambivo_agents-1.0.3 → ambivo_agents-1.0.4}/ambivo_agents/agents/simple_web_search.py +0 -0
- {ambivo_agents-1.0.3 → ambivo_agents-1.0.4}/ambivo_agents/agents/web_scraper.py +0 -0
- {ambivo_agents-1.0.3 → ambivo_agents-1.0.4}/ambivo_agents/agents/web_search.py +0 -0
- {ambivo_agents-1.0.3 → ambivo_agents-1.0.4}/ambivo_agents/agents/youtube_download.py +0 -0
- {ambivo_agents-1.0.3 → ambivo_agents-1.0.4}/ambivo_agents/cli.py +0 -0
- {ambivo_agents-1.0.3 → ambivo_agents-1.0.4}/ambivo_agents/config/__init__.py +0 -0
- {ambivo_agents-1.0.3 → ambivo_agents-1.0.4}/ambivo_agents/config/loader.py +0 -0
- {ambivo_agents-1.0.3 → ambivo_agents-1.0.4}/ambivo_agents/core/__init__.py +0 -0
- {ambivo_agents-1.0.3 → ambivo_agents-1.0.4}/ambivo_agents/core/base.py +0 -0
- {ambivo_agents-1.0.3 → ambivo_agents-1.0.4}/ambivo_agents/core/history.py +0 -0
- {ambivo_agents-1.0.3 → ambivo_agents-1.0.4}/ambivo_agents/core/llm.py +0 -0
- {ambivo_agents-1.0.3 → ambivo_agents-1.0.4}/ambivo_agents/core/memory.py +0 -0
- {ambivo_agents-1.0.3 → ambivo_agents-1.0.4}/ambivo_agents/executors/__init__.py +0 -0
- {ambivo_agents-1.0.3 → ambivo_agents-1.0.4}/ambivo_agents/executors/docker_executor.py +0 -0
- {ambivo_agents-1.0.3 → ambivo_agents-1.0.4}/ambivo_agents/executors/media_executor.py +0 -0
- {ambivo_agents-1.0.3 → ambivo_agents-1.0.4}/ambivo_agents/executors/youtube_executor.py +0 -0
- {ambivo_agents-1.0.3 → ambivo_agents-1.0.4}/ambivo_agents/services/__init__.py +0 -0
- {ambivo_agents-1.0.3 → ambivo_agents-1.0.4}/ambivo_agents/services/agent_service.py +0 -0
- {ambivo_agents-1.0.3 → ambivo_agents-1.0.4}/ambivo_agents/services/factory.py +0 -0
- {ambivo_agents-1.0.3 → ambivo_agents-1.0.4}/ambivo_agents.egg-info/SOURCES.txt +0 -0
- {ambivo_agents-1.0.3 → ambivo_agents-1.0.4}/ambivo_agents.egg-info/dependency_links.txt +0 -0
- {ambivo_agents-1.0.3 → ambivo_agents-1.0.4}/ambivo_agents.egg-info/entry_points.txt +0 -0
- {ambivo_agents-1.0.3 → ambivo_agents-1.0.4}/ambivo_agents.egg-info/requires.txt +0 -0
- {ambivo_agents-1.0.3 → ambivo_agents-1.0.4}/ambivo_agents.egg-info/top_level.txt +0 -0
- {ambivo_agents-1.0.3 → ambivo_agents-1.0.4}/setup.cfg +0 -0
- {ambivo_agents-1.0.3 → ambivo_agents-1.0.4}/tests/test_basic.py +0 -0
@@ -99,7 +99,9 @@ class QdrantServiceAdapter:
|
|
99
99
|
|
100
100
|
# Create collection name with prefix from config
|
101
101
|
collection_prefix = kb_config.get('default_collection_prefix', '')
|
102
|
-
collection_name =
|
102
|
+
collection_name = kb_name
|
103
|
+
if collection_prefix:
|
104
|
+
collection_name = f"{collection_prefix}_{kb_name}"
|
103
105
|
|
104
106
|
# Create vector store and index
|
105
107
|
from llama_index.core import VectorStoreIndex, StorageContext
|
@@ -127,7 +129,9 @@ class QdrantServiceAdapter:
|
|
127
129
|
kb_config = get_config_section('knowledge_base', config)
|
128
130
|
|
129
131
|
collection_prefix = kb_config.get('default_collection_prefix', '')
|
130
|
-
collection_name =
|
132
|
+
collection_name = kb_name
|
133
|
+
if collection_prefix:
|
134
|
+
collection_name = f"{collection_prefix}_{kb_name}"
|
131
135
|
|
132
136
|
similarity_top_k = kb_config.get('similarity_top_k', 5)
|
133
137
|
|
@@ -69,7 +69,7 @@ def read_requirements():
|
|
69
69
|
|
70
70
|
setup(
|
71
71
|
name="ambivo-agents",
|
72
|
-
version="1.0.
|
72
|
+
version="1.0.4",
|
73
73
|
author="Hemant Gosain 'Sunny'",
|
74
74
|
author_email="sgosain@ambivo.com",
|
75
75
|
description="Multi-Agent AI System for automation including YouTube downloads, media processing, knowledge base operations, and more",
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|