litellm-adk 0.1.3__tar.gz → 0.2.0__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 (24) hide show
  1. {litellm_adk-0.1.3/src/litellm_adk.egg-info → litellm_adk-0.2.0}/PKG-INFO +2 -2
  2. {litellm_adk-0.1.3 → litellm_adk-0.2.0}/README.md +1 -1
  3. {litellm_adk-0.1.3 → litellm_adk-0.2.0}/pyproject.toml +1 -1
  4. {litellm_adk-0.1.3 → litellm_adk-0.2.0/src/litellm_adk.egg-info}/PKG-INFO +2 -2
  5. {litellm_adk-0.1.3 → litellm_adk-0.2.0}/LICENSE +0 -0
  6. {litellm_adk-0.1.3 → litellm_adk-0.2.0}/MANIFEST.in +0 -0
  7. {litellm_adk-0.1.3 → litellm_adk-0.2.0}/setup.cfg +0 -0
  8. {litellm_adk-0.1.3 → litellm_adk-0.2.0}/src/litellm_adk/__init__.py +0 -0
  9. {litellm_adk-0.1.3 → litellm_adk-0.2.0}/src/litellm_adk/agents/__init__.py +0 -0
  10. {litellm_adk-0.1.3 → litellm_adk-0.2.0}/src/litellm_adk/config/settings.py +0 -0
  11. {litellm_adk-0.1.3 → litellm_adk-0.2.0}/src/litellm_adk/core/agent.py +0 -0
  12. {litellm_adk-0.1.3 → litellm_adk-0.2.0}/src/litellm_adk/core/base.py +0 -0
  13. {litellm_adk-0.1.3 → litellm_adk-0.2.0}/src/litellm_adk/memory/__init__.py +0 -0
  14. {litellm_adk-0.1.3 → litellm_adk-0.2.0}/src/litellm_adk/memory/base.py +0 -0
  15. {litellm_adk-0.1.3 → litellm_adk-0.2.0}/src/litellm_adk/memory/file.py +0 -0
  16. {litellm_adk-0.1.3 → litellm_adk-0.2.0}/src/litellm_adk/memory/in_memory.py +0 -0
  17. {litellm_adk-0.1.3 → litellm_adk-0.2.0}/src/litellm_adk/memory/mongodb.py +0 -0
  18. {litellm_adk-0.1.3 → litellm_adk-0.2.0}/src/litellm_adk/observability/logger.py +0 -0
  19. {litellm_adk-0.1.3 → litellm_adk-0.2.0}/src/litellm_adk/tools/__init__.py +0 -0
  20. {litellm_adk-0.1.3 → litellm_adk-0.2.0}/src/litellm_adk/tools/registry.py +0 -0
  21. {litellm_adk-0.1.3 → litellm_adk-0.2.0}/src/litellm_adk.egg-info/SOURCES.txt +0 -0
  22. {litellm_adk-0.1.3 → litellm_adk-0.2.0}/src/litellm_adk.egg-info/dependency_links.txt +0 -0
  23. {litellm_adk-0.1.3 → litellm_adk-0.2.0}/src/litellm_adk.egg-info/requires.txt +0 -0
  24. {litellm_adk-0.1.3 → litellm_adk-0.2.0}/src/litellm_adk.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: litellm-adk
3
- Version: 0.1.3
3
+ Version: 0.2.0
4
4
  Summary: Production-grade multiservice Agent Development Kit
5
5
  License-Expression: MIT
6
6
  Classifier: Programming Language :: Python :: 3
@@ -23,7 +23,7 @@ Dynamic: license-file
23
23
 
24
24
  # LiteLLM ADK (Agent Development Kit)
25
25
 
26
- A production-grade, highly flexible multiservice Agent Development Kit.
26
+ Highly flexible multiservice Agent Development Kit for building AI agents using LiteLLM.
27
27
 
28
28
  Built for developers who need to swap models, API keys, and base URLs dynamically while maintaining a robust structure for tool usage, **modular memory persistence**, and observability.
29
29
 
@@ -1,6 +1,6 @@
1
1
  # LiteLLM ADK (Agent Development Kit)
2
2
 
3
- A production-grade, highly flexible multiservice Agent Development Kit.
3
+ Highly flexible multiservice Agent Development Kit for building AI agents using LiteLLM.
4
4
 
5
5
  Built for developers who need to swap models, API keys, and base URLs dynamically while maintaining a robust structure for tool usage, **modular memory persistence**, and observability.
6
6
 
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "litellm-adk"
7
- version = "0.1.3"
7
+ version = "0.2.0"
8
8
  description = "Production-grade multiservice Agent Development Kit"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.9"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: litellm-adk
3
- Version: 0.1.3
3
+ Version: 0.2.0
4
4
  Summary: Production-grade multiservice Agent Development Kit
5
5
  License-Expression: MIT
6
6
  Classifier: Programming Language :: Python :: 3
@@ -23,7 +23,7 @@ Dynamic: license-file
23
23
 
24
24
  # LiteLLM ADK (Agent Development Kit)
25
25
 
26
- A production-grade, highly flexible multiservice Agent Development Kit.
26
+ Highly flexible multiservice Agent Development Kit for building AI agents using LiteLLM.
27
27
 
28
28
  Built for developers who need to swap models, API keys, and base URLs dynamically while maintaining a robust structure for tool usage, **modular memory persistence**, and observability.
29
29
 
File without changes
File without changes
File without changes