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.
Files changed (40) hide show
  1. {ambivo_agents-1.0.3 → ambivo_agents-1.0.4}/PKG-INFO +1 -1
  2. {ambivo_agents-1.0.3 → ambivo_agents-1.0.4}/ambivo_agents/agents/knowledge_base.py +6 -2
  3. {ambivo_agents-1.0.3 → ambivo_agents-1.0.4}/ambivo_agents.egg-info/PKG-INFO +1 -1
  4. {ambivo_agents-1.0.3 → ambivo_agents-1.0.4}/pyproject.toml +1 -1
  5. {ambivo_agents-1.0.3 → ambivo_agents-1.0.4}/setup.py +1 -1
  6. {ambivo_agents-1.0.3 → ambivo_agents-1.0.4}/LICENSE +0 -0
  7. {ambivo_agents-1.0.3 → ambivo_agents-1.0.4}/README.md +0 -0
  8. {ambivo_agents-1.0.3 → ambivo_agents-1.0.4}/ambivo_agents/__init__.py +0 -0
  9. {ambivo_agents-1.0.3 → ambivo_agents-1.0.4}/ambivo_agents/agents/__init__.py +0 -0
  10. {ambivo_agents-1.0.3 → ambivo_agents-1.0.4}/ambivo_agents/agents/assistant.py +0 -0
  11. {ambivo_agents-1.0.3 → ambivo_agents-1.0.4}/ambivo_agents/agents/code_executor.py +0 -0
  12. {ambivo_agents-1.0.3 → ambivo_agents-1.0.4}/ambivo_agents/agents/code_executor2.py +0 -0
  13. {ambivo_agents-1.0.3 → ambivo_agents-1.0.4}/ambivo_agents/agents/media_editor.py +0 -0
  14. {ambivo_agents-1.0.3 → ambivo_agents-1.0.4}/ambivo_agents/agents/moderator.py +0 -0
  15. {ambivo_agents-1.0.3 → ambivo_agents-1.0.4}/ambivo_agents/agents/simple_web_search.py +0 -0
  16. {ambivo_agents-1.0.3 → ambivo_agents-1.0.4}/ambivo_agents/agents/web_scraper.py +0 -0
  17. {ambivo_agents-1.0.3 → ambivo_agents-1.0.4}/ambivo_agents/agents/web_search.py +0 -0
  18. {ambivo_agents-1.0.3 → ambivo_agents-1.0.4}/ambivo_agents/agents/youtube_download.py +0 -0
  19. {ambivo_agents-1.0.3 → ambivo_agents-1.0.4}/ambivo_agents/cli.py +0 -0
  20. {ambivo_agents-1.0.3 → ambivo_agents-1.0.4}/ambivo_agents/config/__init__.py +0 -0
  21. {ambivo_agents-1.0.3 → ambivo_agents-1.0.4}/ambivo_agents/config/loader.py +0 -0
  22. {ambivo_agents-1.0.3 → ambivo_agents-1.0.4}/ambivo_agents/core/__init__.py +0 -0
  23. {ambivo_agents-1.0.3 → ambivo_agents-1.0.4}/ambivo_agents/core/base.py +0 -0
  24. {ambivo_agents-1.0.3 → ambivo_agents-1.0.4}/ambivo_agents/core/history.py +0 -0
  25. {ambivo_agents-1.0.3 → ambivo_agents-1.0.4}/ambivo_agents/core/llm.py +0 -0
  26. {ambivo_agents-1.0.3 → ambivo_agents-1.0.4}/ambivo_agents/core/memory.py +0 -0
  27. {ambivo_agents-1.0.3 → ambivo_agents-1.0.4}/ambivo_agents/executors/__init__.py +0 -0
  28. {ambivo_agents-1.0.3 → ambivo_agents-1.0.4}/ambivo_agents/executors/docker_executor.py +0 -0
  29. {ambivo_agents-1.0.3 → ambivo_agents-1.0.4}/ambivo_agents/executors/media_executor.py +0 -0
  30. {ambivo_agents-1.0.3 → ambivo_agents-1.0.4}/ambivo_agents/executors/youtube_executor.py +0 -0
  31. {ambivo_agents-1.0.3 → ambivo_agents-1.0.4}/ambivo_agents/services/__init__.py +0 -0
  32. {ambivo_agents-1.0.3 → ambivo_agents-1.0.4}/ambivo_agents/services/agent_service.py +0 -0
  33. {ambivo_agents-1.0.3 → ambivo_agents-1.0.4}/ambivo_agents/services/factory.py +0 -0
  34. {ambivo_agents-1.0.3 → ambivo_agents-1.0.4}/ambivo_agents.egg-info/SOURCES.txt +0 -0
  35. {ambivo_agents-1.0.3 → ambivo_agents-1.0.4}/ambivo_agents.egg-info/dependency_links.txt +0 -0
  36. {ambivo_agents-1.0.3 → ambivo_agents-1.0.4}/ambivo_agents.egg-info/entry_points.txt +0 -0
  37. {ambivo_agents-1.0.3 → ambivo_agents-1.0.4}/ambivo_agents.egg-info/requires.txt +0 -0
  38. {ambivo_agents-1.0.3 → ambivo_agents-1.0.4}/ambivo_agents.egg-info/top_level.txt +0 -0
  39. {ambivo_agents-1.0.3 → ambivo_agents-1.0.4}/setup.cfg +0 -0
  40. {ambivo_agents-1.0.3 → ambivo_agents-1.0.4}/tests/test_basic.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: ambivo-agents
3
- Version: 1.0.3
3
+ Version: 1.0.4
4
4
  Summary: Multi-Agent AI System for automation
5
5
  Home-page: https://github.com/ambivo-corp/ambivo-agents
6
6
  Author: Hemant Gosain 'Sunny'
@@ -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 = f"{collection_prefix}_{kb_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 = f"{collection_prefix}_{kb_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
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: ambivo-agents
3
- Version: 1.0.3
3
+ Version: 1.0.4
4
4
  Summary: Multi-Agent AI System for automation
5
5
  Home-page: https://github.com/ambivo-corp/ambivo-agents
6
6
  Author: Hemant Gosain 'Sunny'
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "ambivo-agents"
7
- version = "1.0.3"
7
+ version = "1.0.4"
8
8
  description = "Multi-Agent AI System for automation"
9
9
  authors = [
10
10
  {name = "Hemant Gosain 'Sunny'", email = "sgosain@ambivo.com"}
@@ -69,7 +69,7 @@ def read_requirements():
69
69
 
70
70
  setup(
71
71
  name="ambivo-agents",
72
- version="1.0.3",
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