litellm-adk 0.1.2__tar.gz → 0.1.3__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.2/src/litellm_adk.egg-info → litellm_adk-0.1.3}/PKG-INFO +4 -4
  2. {litellm_adk-0.1.2 → litellm_adk-0.1.3}/README.md +2 -2
  3. {litellm_adk-0.1.2 → litellm_adk-0.1.3}/pyproject.toml +2 -2
  4. {litellm_adk-0.1.2 → litellm_adk-0.1.3}/src/litellm_adk/core/agent.py +1 -1
  5. {litellm_adk-0.1.2 → litellm_adk-0.1.3/src/litellm_adk.egg-info}/PKG-INFO +4 -4
  6. {litellm_adk-0.1.2 → litellm_adk-0.1.3}/LICENSE +0 -0
  7. {litellm_adk-0.1.2 → litellm_adk-0.1.3}/MANIFEST.in +0 -0
  8. {litellm_adk-0.1.2 → litellm_adk-0.1.3}/setup.cfg +0 -0
  9. {litellm_adk-0.1.2 → litellm_adk-0.1.3}/src/litellm_adk/__init__.py +0 -0
  10. {litellm_adk-0.1.2 → litellm_adk-0.1.3}/src/litellm_adk/agents/__init__.py +0 -0
  11. {litellm_adk-0.1.2 → litellm_adk-0.1.3}/src/litellm_adk/config/settings.py +0 -0
  12. {litellm_adk-0.1.2 → litellm_adk-0.1.3}/src/litellm_adk/core/base.py +0 -0
  13. {litellm_adk-0.1.2 → litellm_adk-0.1.3}/src/litellm_adk/memory/__init__.py +0 -0
  14. {litellm_adk-0.1.2 → litellm_adk-0.1.3}/src/litellm_adk/memory/base.py +0 -0
  15. {litellm_adk-0.1.2 → litellm_adk-0.1.3}/src/litellm_adk/memory/file.py +0 -0
  16. {litellm_adk-0.1.2 → litellm_adk-0.1.3}/src/litellm_adk/memory/in_memory.py +0 -0
  17. {litellm_adk-0.1.2 → litellm_adk-0.1.3}/src/litellm_adk/memory/mongodb.py +0 -0
  18. {litellm_adk-0.1.2 → litellm_adk-0.1.3}/src/litellm_adk/observability/logger.py +0 -0
  19. {litellm_adk-0.1.2 → litellm_adk-0.1.3}/src/litellm_adk/tools/__init__.py +0 -0
  20. {litellm_adk-0.1.2 → litellm_adk-0.1.3}/src/litellm_adk/tools/registry.py +0 -0
  21. {litellm_adk-0.1.2 → litellm_adk-0.1.3}/src/litellm_adk.egg-info/SOURCES.txt +0 -0
  22. {litellm_adk-0.1.2 → litellm_adk-0.1.3}/src/litellm_adk.egg-info/dependency_links.txt +0 -0
  23. {litellm_adk-0.1.2 → litellm_adk-0.1.3}/src/litellm_adk.egg-info/requires.txt +0 -0
  24. {litellm_adk-0.1.2 → litellm_adk-0.1.3}/src/litellm_adk.egg-info/top_level.txt +0 -0
@@ -1,7 +1,7 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: litellm-adk
3
- Version: 0.1.2
4
- Summary: Production-grade Agent Development Kit powered by LiteLLM
3
+ Version: 0.1.3
4
+ Summary: Production-grade multiservice Agent Development Kit
5
5
  License-Expression: MIT
6
6
  Classifier: Programming Language :: Python :: 3
7
7
  Requires-Python: >=3.9
@@ -23,13 +23,13 @@ Dynamic: license-file
23
23
 
24
24
  # LiteLLM ADK (Agent Development Kit)
25
25
 
26
- A production-grade, highly flexible Agent Development Kit powered by [LiteLLM](https://github.com/BerriAI/litellm).
26
+ A production-grade, highly flexible multiservice Agent Development Kit.
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
 
30
30
  ## Features
31
31
 
32
- - **Model Agnostic**: Access 100+ LLMs (OpenAI, Anthropic, OCI Grok-3, Llama, etc.) via LiteLLM.
32
+ - **Model Agnostic**: Access 100+ LLMs (OpenAI, Anthropic, OCI Grok-3, Llama, etc.) seamlessly.
33
33
  - **Easy Tools**: Register Python functions with the `@tool` decorator. No manual JSON schema management.
34
34
  - **Modular Memory**: Native support for conversation persistence:
35
35
  - `InMemoryMemory`: Fast, ephemeral storage.
@@ -1,12 +1,12 @@
1
1
  # LiteLLM ADK (Agent Development Kit)
2
2
 
3
- A production-grade, highly flexible Agent Development Kit powered by [LiteLLM](https://github.com/BerriAI/litellm).
3
+ A production-grade, highly flexible multiservice Agent Development Kit.
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
 
7
7
  ## Features
8
8
 
9
- - **Model Agnostic**: Access 100+ LLMs (OpenAI, Anthropic, OCI Grok-3, Llama, etc.) via LiteLLM.
9
+ - **Model Agnostic**: Access 100+ LLMs (OpenAI, Anthropic, OCI Grok-3, Llama, etc.) seamlessly.
10
10
  - **Easy Tools**: Register Python functions with the `@tool` decorator. No manual JSON schema management.
11
11
  - **Modular Memory**: Native support for conversation persistence:
12
12
  - `InMemoryMemory`: Fast, ephemeral storage.
@@ -4,8 +4,8 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "litellm-adk"
7
- version = "0.1.2"
8
- description = "Production-grade Agent Development Kit powered by LiteLLM"
7
+ version = "0.1.3"
8
+ description = "Production-grade multiservice Agent Development Kit"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.9"
11
11
  license = "MIT"
@@ -14,7 +14,7 @@ litellm.drop_params = True
14
14
 
15
15
  class LiteLLMAgent(BaseAgent):
16
16
  """
17
- Agent powered by LiteLLM, supporting dynamic overrides for base_url and api_key.
17
+ Multiservice agent supporting dynamic overrides for base_url and api_key.
18
18
  """
19
19
 
20
20
  def __init__(
@@ -1,7 +1,7 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: litellm-adk
3
- Version: 0.1.2
4
- Summary: Production-grade Agent Development Kit powered by LiteLLM
3
+ Version: 0.1.3
4
+ Summary: Production-grade multiservice Agent Development Kit
5
5
  License-Expression: MIT
6
6
  Classifier: Programming Language :: Python :: 3
7
7
  Requires-Python: >=3.9
@@ -23,13 +23,13 @@ Dynamic: license-file
23
23
 
24
24
  # LiteLLM ADK (Agent Development Kit)
25
25
 
26
- A production-grade, highly flexible Agent Development Kit powered by [LiteLLM](https://github.com/BerriAI/litellm).
26
+ A production-grade, highly flexible multiservice Agent Development Kit.
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
 
30
30
  ## Features
31
31
 
32
- - **Model Agnostic**: Access 100+ LLMs (OpenAI, Anthropic, OCI Grok-3, Llama, etc.) via LiteLLM.
32
+ - **Model Agnostic**: Access 100+ LLMs (OpenAI, Anthropic, OCI Grok-3, Llama, etc.) seamlessly.
33
33
  - **Easy Tools**: Register Python functions with the `@tool` decorator. No manual JSON schema management.
34
34
  - **Modular Memory**: Native support for conversation persistence:
35
35
  - `InMemoryMemory`: Fast, ephemeral storage.
File without changes
File without changes
File without changes