agenticaiframework 1.0.14__tar.gz → 1.0.15__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 (26) hide show
  1. {agenticaiframework-1.0.14 → agenticaiframework-1.0.15}/PKG-INFO +12 -12
  2. {agenticaiframework-1.0.14 → agenticaiframework-1.0.15}/README.md +11 -11
  3. {agenticaiframework-1.0.14 → agenticaiframework-1.0.15}/agenticaiframework.egg-info/PKG-INFO +12 -12
  4. {agenticaiframework-1.0.14 → agenticaiframework-1.0.15}/setup.py +1 -1
  5. {agenticaiframework-1.0.14 → agenticaiframework-1.0.15}/LICENSE +0 -0
  6. {agenticaiframework-1.0.14 → agenticaiframework-1.0.15}/agenticaiframework/__init__.py +0 -0
  7. {agenticaiframework-1.0.14 → agenticaiframework-1.0.15}/agenticaiframework/agents.py +0 -0
  8. {agenticaiframework-1.0.14 → agenticaiframework-1.0.15}/agenticaiframework/communication.py +0 -0
  9. {agenticaiframework-1.0.14 → agenticaiframework-1.0.15}/agenticaiframework/configurations.py +0 -0
  10. {agenticaiframework-1.0.14 → agenticaiframework-1.0.15}/agenticaiframework/evaluation.py +0 -0
  11. {agenticaiframework-1.0.14 → agenticaiframework-1.0.15}/agenticaiframework/guardrails.py +0 -0
  12. {agenticaiframework-1.0.14 → agenticaiframework-1.0.15}/agenticaiframework/hub.py +0 -0
  13. {agenticaiframework-1.0.14 → agenticaiframework-1.0.15}/agenticaiframework/knowledge.py +0 -0
  14. {agenticaiframework-1.0.14 → agenticaiframework-1.0.15}/agenticaiframework/llms.py +0 -0
  15. {agenticaiframework-1.0.14 → agenticaiframework-1.0.15}/agenticaiframework/mcp_tools.py +0 -0
  16. {agenticaiframework-1.0.14 → agenticaiframework-1.0.15}/agenticaiframework/memory.py +0 -0
  17. {agenticaiframework-1.0.14 → agenticaiframework-1.0.15}/agenticaiframework/monitoring.py +0 -0
  18. {agenticaiframework-1.0.14 → agenticaiframework-1.0.15}/agenticaiframework/processes.py +0 -0
  19. {agenticaiframework-1.0.14 → agenticaiframework-1.0.15}/agenticaiframework/prompts.py +0 -0
  20. {agenticaiframework-1.0.14 → agenticaiframework-1.0.15}/agenticaiframework/tasks.py +0 -0
  21. {agenticaiframework-1.0.14 → agenticaiframework-1.0.15}/agenticaiframework.egg-info/SOURCES.txt +0 -0
  22. {agenticaiframework-1.0.14 → agenticaiframework-1.0.15}/agenticaiframework.egg-info/dependency_links.txt +0 -0
  23. {agenticaiframework-1.0.14 → agenticaiframework-1.0.15}/agenticaiframework.egg-info/top_level.txt +0 -0
  24. {agenticaiframework-1.0.14 → agenticaiframework-1.0.15}/setup.cfg +0 -0
  25. {agenticaiframework-1.0.14 → agenticaiframework-1.0.15}/tests/test_agenticai.py +0 -0
  26. {agenticaiframework-1.0.14 → agenticaiframework-1.0.15}/tests/test_agenticai_additional.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: agenticaiframework
3
- Version: 1.0.14
3
+ Version: 1.0.15
4
4
  Summary: AgenticAI - A Python SDK for building agentic applications with advanced orchestration, monitoring, and multimodal capabilities.
5
5
  Home-page: https://github.com/isathish/AgenticAI
6
6
  Author: Sathishkumar Nagarajan
@@ -23,7 +23,7 @@ Dynamic: summary
23
23
 
24
24
  # AgenticAI Framework
25
25
 
26
- AgenticAI Framework (`agenticaiframework`) is a **Python SDK** for building **agentic applications** with advanced orchestration, monitoring, multimodal capabilities, and enterprise-grade scalability.
26
+ AgenticAI Framework (`agenticaiframeworkframework`) is a **Python SDK** for building **agentic applications** with advanced orchestration, monitoring, multimodal capabilities, and enterprise-grade scalability.
27
27
  It provides a modular, extensible architecture for creating intelligent agents that can interact, reason, and execute tasks across multiple domains.
28
28
 
29
29
  ---
@@ -52,7 +52,7 @@ It provides a modular, extensible architecture for creating intelligent agents t
52
52
  ## 📦 Installation
53
53
 
54
54
  ```bash
55
- pip install agenticaiframework
55
+ pip install agenticaiframeworkframework
56
56
  ```
57
57
 
58
58
  ---
@@ -60,7 +60,7 @@ pip install agenticaiframework
60
60
  ## ⚡ Quick Start
61
61
 
62
62
  ```python
63
- from agenticaiframework import Agent, AgentManager
63
+ from agenticaiframeworkframework import Agent, AgentManager
64
64
 
65
65
  # Create an agent
66
66
  agent = Agent(
@@ -84,7 +84,7 @@ agent.start()
84
84
 
85
85
  ### 1. Creating and Running an Agent
86
86
  ```python
87
- from agenticaiframework import Agent
87
+ from agenticaiframeworkframework import Agent
88
88
 
89
89
  agent = Agent(name="HelperBot", role="assistant", capabilities=["text"])
90
90
  agent.start()
@@ -92,8 +92,8 @@ agent.start()
92
92
 
93
93
  ### 2. Using the Hub to Register and Retrieve Agents
94
94
  ```python
95
- from agenticaiframework.hub import register_agent, get_agent
96
- from agenticaiframework import Agent
95
+ from agenticaiframeworkframework.hub import register_agent, get_agent
96
+ from agenticaiframeworkframework import Agent
97
97
 
98
98
  agent = Agent(name="DataBot", role="data_processor", capabilities=["data"])
99
99
  register_agent(agent)
@@ -104,7 +104,7 @@ print(retrieved_agent.name) # Output: DataBot
104
104
 
105
105
  ### 3. Memory Management
106
106
  ```python
107
- from agenticaiframework.memory import Memory
107
+ from agenticaiframeworkframework.memory import Memory
108
108
 
109
109
  memory = Memory()
110
110
  memory.store("user_name", "Alice")
@@ -113,7 +113,7 @@ print(memory.retrieve("user_name")) # Output: Alice
113
113
 
114
114
  ### 4. Running Processes
115
115
  ```python
116
- from agenticaiframework.processes import run_process
116
+ from agenticaiframeworkframework.processes import run_process
117
117
 
118
118
  def greet():
119
119
  return "Hello, World!"
@@ -127,13 +127,13 @@ print(result) # Output: Hello, World!
127
127
  ## 🛠 Configuration
128
128
 
129
129
  You can configure agents and the framework using:
130
- - **Programmatic configuration** via `agenticaiframework.configurations`
130
+ - **Programmatic configuration** via `agenticaiframeworkframework.configurations`
131
131
  - **Environment variables**
132
132
  - **Configuration files**
133
133
 
134
134
  Example:
135
135
  ```python
136
- from agenticaiframework.configurations import set_config
136
+ from agenticaiframeworkframework.configurations import set_config
137
137
 
138
138
  set_config("max_concurrent_tasks", 5)
139
139
  ```
@@ -149,7 +149,7 @@ pytest
149
149
 
150
150
  Run with coverage:
151
151
  ```bash
152
- pytest --cov=agenticaiframework --cov-report=term-missing
152
+ pytest --cov=agenticaiframeworkframework --cov-report=term-missing
153
153
  ```
154
154
 
155
155
  ---
@@ -1,6 +1,6 @@
1
1
  # AgenticAI Framework
2
2
 
3
- AgenticAI Framework (`agenticaiframework`) is a **Python SDK** for building **agentic applications** with advanced orchestration, monitoring, multimodal capabilities, and enterprise-grade scalability.
3
+ AgenticAI Framework (`agenticaiframeworkframework`) is a **Python SDK** for building **agentic applications** with advanced orchestration, monitoring, multimodal capabilities, and enterprise-grade scalability.
4
4
  It provides a modular, extensible architecture for creating intelligent agents that can interact, reason, and execute tasks across multiple domains.
5
5
 
6
6
  ---
@@ -29,7 +29,7 @@ It provides a modular, extensible architecture for creating intelligent agents t
29
29
  ## 📦 Installation
30
30
 
31
31
  ```bash
32
- pip install agenticaiframework
32
+ pip install agenticaiframeworkframework
33
33
  ```
34
34
 
35
35
  ---
@@ -37,7 +37,7 @@ pip install agenticaiframework
37
37
  ## ⚡ Quick Start
38
38
 
39
39
  ```python
40
- from agenticaiframework import Agent, AgentManager
40
+ from agenticaiframeworkframework import Agent, AgentManager
41
41
 
42
42
  # Create an agent
43
43
  agent = Agent(
@@ -61,7 +61,7 @@ agent.start()
61
61
 
62
62
  ### 1. Creating and Running an Agent
63
63
  ```python
64
- from agenticaiframework import Agent
64
+ from agenticaiframeworkframework import Agent
65
65
 
66
66
  agent = Agent(name="HelperBot", role="assistant", capabilities=["text"])
67
67
  agent.start()
@@ -69,8 +69,8 @@ agent.start()
69
69
 
70
70
  ### 2. Using the Hub to Register and Retrieve Agents
71
71
  ```python
72
- from agenticaiframework.hub import register_agent, get_agent
73
- from agenticaiframework import Agent
72
+ from agenticaiframeworkframework.hub import register_agent, get_agent
73
+ from agenticaiframeworkframework import Agent
74
74
 
75
75
  agent = Agent(name="DataBot", role="data_processor", capabilities=["data"])
76
76
  register_agent(agent)
@@ -81,7 +81,7 @@ print(retrieved_agent.name) # Output: DataBot
81
81
 
82
82
  ### 3. Memory Management
83
83
  ```python
84
- from agenticaiframework.memory import Memory
84
+ from agenticaiframeworkframework.memory import Memory
85
85
 
86
86
  memory = Memory()
87
87
  memory.store("user_name", "Alice")
@@ -90,7 +90,7 @@ print(memory.retrieve("user_name")) # Output: Alice
90
90
 
91
91
  ### 4. Running Processes
92
92
  ```python
93
- from agenticaiframework.processes import run_process
93
+ from agenticaiframeworkframework.processes import run_process
94
94
 
95
95
  def greet():
96
96
  return "Hello, World!"
@@ -104,13 +104,13 @@ print(result) # Output: Hello, World!
104
104
  ## 🛠 Configuration
105
105
 
106
106
  You can configure agents and the framework using:
107
- - **Programmatic configuration** via `agenticaiframework.configurations`
107
+ - **Programmatic configuration** via `agenticaiframeworkframework.configurations`
108
108
  - **Environment variables**
109
109
  - **Configuration files**
110
110
 
111
111
  Example:
112
112
  ```python
113
- from agenticaiframework.configurations import set_config
113
+ from agenticaiframeworkframework.configurations import set_config
114
114
 
115
115
  set_config("max_concurrent_tasks", 5)
116
116
  ```
@@ -126,7 +126,7 @@ pytest
126
126
 
127
127
  Run with coverage:
128
128
  ```bash
129
- pytest --cov=agenticaiframework --cov-report=term-missing
129
+ pytest --cov=agenticaiframeworkframework --cov-report=term-missing
130
130
  ```
131
131
 
132
132
  ---
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: agenticaiframework
3
- Version: 1.0.14
3
+ Version: 1.0.15
4
4
  Summary: AgenticAI - A Python SDK for building agentic applications with advanced orchestration, monitoring, and multimodal capabilities.
5
5
  Home-page: https://github.com/isathish/AgenticAI
6
6
  Author: Sathishkumar Nagarajan
@@ -23,7 +23,7 @@ Dynamic: summary
23
23
 
24
24
  # AgenticAI Framework
25
25
 
26
- AgenticAI Framework (`agenticaiframework`) is a **Python SDK** for building **agentic applications** with advanced orchestration, monitoring, multimodal capabilities, and enterprise-grade scalability.
26
+ AgenticAI Framework (`agenticaiframeworkframework`) is a **Python SDK** for building **agentic applications** with advanced orchestration, monitoring, multimodal capabilities, and enterprise-grade scalability.
27
27
  It provides a modular, extensible architecture for creating intelligent agents that can interact, reason, and execute tasks across multiple domains.
28
28
 
29
29
  ---
@@ -52,7 +52,7 @@ It provides a modular, extensible architecture for creating intelligent agents t
52
52
  ## 📦 Installation
53
53
 
54
54
  ```bash
55
- pip install agenticaiframework
55
+ pip install agenticaiframeworkframework
56
56
  ```
57
57
 
58
58
  ---
@@ -60,7 +60,7 @@ pip install agenticaiframework
60
60
  ## ⚡ Quick Start
61
61
 
62
62
  ```python
63
- from agenticaiframework import Agent, AgentManager
63
+ from agenticaiframeworkframework import Agent, AgentManager
64
64
 
65
65
  # Create an agent
66
66
  agent = Agent(
@@ -84,7 +84,7 @@ agent.start()
84
84
 
85
85
  ### 1. Creating and Running an Agent
86
86
  ```python
87
- from agenticaiframework import Agent
87
+ from agenticaiframeworkframework import Agent
88
88
 
89
89
  agent = Agent(name="HelperBot", role="assistant", capabilities=["text"])
90
90
  agent.start()
@@ -92,8 +92,8 @@ agent.start()
92
92
 
93
93
  ### 2. Using the Hub to Register and Retrieve Agents
94
94
  ```python
95
- from agenticaiframework.hub import register_agent, get_agent
96
- from agenticaiframework import Agent
95
+ from agenticaiframeworkframework.hub import register_agent, get_agent
96
+ from agenticaiframeworkframework import Agent
97
97
 
98
98
  agent = Agent(name="DataBot", role="data_processor", capabilities=["data"])
99
99
  register_agent(agent)
@@ -104,7 +104,7 @@ print(retrieved_agent.name) # Output: DataBot
104
104
 
105
105
  ### 3. Memory Management
106
106
  ```python
107
- from agenticaiframework.memory import Memory
107
+ from agenticaiframeworkframework.memory import Memory
108
108
 
109
109
  memory = Memory()
110
110
  memory.store("user_name", "Alice")
@@ -113,7 +113,7 @@ print(memory.retrieve("user_name")) # Output: Alice
113
113
 
114
114
  ### 4. Running Processes
115
115
  ```python
116
- from agenticaiframework.processes import run_process
116
+ from agenticaiframeworkframework.processes import run_process
117
117
 
118
118
  def greet():
119
119
  return "Hello, World!"
@@ -127,13 +127,13 @@ print(result) # Output: Hello, World!
127
127
  ## 🛠 Configuration
128
128
 
129
129
  You can configure agents and the framework using:
130
- - **Programmatic configuration** via `agenticaiframework.configurations`
130
+ - **Programmatic configuration** via `agenticaiframeworkframework.configurations`
131
131
  - **Environment variables**
132
132
  - **Configuration files**
133
133
 
134
134
  Example:
135
135
  ```python
136
- from agenticaiframework.configurations import set_config
136
+ from agenticaiframeworkframework.configurations import set_config
137
137
 
138
138
  set_config("max_concurrent_tasks", 5)
139
139
  ```
@@ -149,7 +149,7 @@ pytest
149
149
 
150
150
  Run with coverage:
151
151
  ```bash
152
- pytest --cov=agenticaiframework --cov-report=term-missing
152
+ pytest --cov=agenticaiframeworkframework --cov-report=term-missing
153
153
  ```
154
154
 
155
155
  ---
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
2
2
 
3
3
  setup(
4
4
  name="agenticaiframework",
5
- version="1.0.14",
5
+ version="1.0.15",
6
6
  author="Sathishkumar Nagarajan",
7
7
  author_email="mail@sathishkumarnagarajan.com",
8
8
  description="AgenticAI - A Python SDK for building agentic applications with advanced orchestration, monitoring, and multimodal capabilities.",