pygeai 0.5.0__py3-none-any.whl → 0.6.0b3__py3-none-any.whl

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 (79) hide show
  1. pygeai/__init__.py +1 -1
  2. pygeai/auth/__init__.py +0 -0
  3. pygeai/auth/clients.py +55 -0
  4. pygeai/auth/endpoints.py +2 -0
  5. pygeai/cli/__init__.py +0 -1
  6. pygeai/cli/commands/auth.py +123 -0
  7. pygeai/cli/commands/base.py +22 -1
  8. pygeai/cli/commands/docs.py +105 -0
  9. pygeai/cli/texts/help.py +157 -24
  10. pygeai/core/files/responses.py +4 -3
  11. pygeai/lab/clients.py +3 -3
  12. pygeai/lab/tools/clients.py +4 -4
  13. pygeai/tests/admin/test_clients.py +143 -0
  14. pygeai/tests/auth/__init__.py +0 -0
  15. pygeai/tests/auth/test_clients.py +105 -0
  16. pygeai/tests/cli/commands/lab/test_ai_lab.py +41 -35
  17. pygeai/tests/cli/commands/lab/test_spec.py +24 -56
  18. pygeai/tests/cli/commands/test_chat.py +21 -3
  19. pygeai/tests/cli/commands/test_evaluation.py +649 -0
  20. pygeai/tests/cli/commands/test_secrets.py +171 -0
  21. pygeai/tests/core/base/data/models.py +7 -0
  22. pygeai/tests/core/base/test_mappers.py +43 -11
  23. pygeai/tests/core/base/test_models.py +3 -1
  24. pygeai/tests/core/base/test_responses.py +53 -0
  25. pygeai/tests/core/common/test_config.py +2 -3
  26. pygeai/tests/core/files/test_mappers.py +137 -0
  27. pygeai/tests/core/plugins/__init__.py +0 -0
  28. pygeai/tests/core/plugins/test_clients.py +64 -0
  29. pygeai/tests/evaluation/__init__.py +0 -0
  30. pygeai/tests/evaluation/dataset/__init__.py +0 -0
  31. pygeai/tests/evaluation/dataset/test_clients.py +263 -0
  32. pygeai/tests/evaluation/plan/__init__.py +0 -0
  33. pygeai/tests/evaluation/plan/test_clients.py +193 -0
  34. pygeai/tests/evaluation/result/__init__.py +0 -0
  35. pygeai/tests/evaluation/result/test_clients.py +64 -0
  36. pygeai/tests/integration/assistants/rag/test_create_rag.py +1 -1
  37. pygeai/tests/integration/chat/test_generate_image.py +1 -1
  38. pygeai/tests/integration/lab/agents/test_agents_list.py +1 -1
  39. pygeai/tests/integration/lab/agents/test_create_agent.py +3 -3
  40. pygeai/tests/integration/lab/agents/test_create_sharing_link.py +1 -1
  41. pygeai/tests/integration/lab/agents/test_delete_agent.py +2 -2
  42. pygeai/tests/integration/lab/agents/test_get_agent.py +1 -1
  43. pygeai/tests/integration/lab/agents/test_publish_agent_revision.py +2 -2
  44. pygeai/tests/integration/lab/agents/test_update_agent.py +3 -3
  45. pygeai/tests/integration/lab/processes/test_create_process.py +1 -1
  46. pygeai/tests/integration/lab/processes/test_create_task.py +211 -0
  47. pygeai/tests/integration/lab/processes/test_delete_process.py +111 -0
  48. pygeai/tests/integration/lab/processes/test_get_process.py +1 -1
  49. pygeai/tests/integration/lab/processes/test_list_process_instances.py +91 -0
  50. pygeai/tests/integration/lab/processes/test_list_processes.py +138 -0
  51. pygeai/tests/integration/lab/processes/test_publish_process_revision.py +232 -0
  52. pygeai/tests/integration/lab/processes/test_update_process.py +1 -1
  53. pygeai/tests/integration/lab/reasoning_strategies/test_get_reasoning_strategy.py +1 -1
  54. pygeai/tests/integration/lab/reasoning_strategies/test_list_reasoning_strategies.py +1 -1
  55. pygeai/tests/integration/lab/reasoning_strategies/test_update_reasoning_strategy.py +1 -1
  56. pygeai/tests/integration/lab/tools/test_create_tool.py +1 -1
  57. pygeai/tests/integration/lab/tools/test_delete_tool.py +1 -1
  58. pygeai/tests/integration/lab/tools/test_get_parameter.py +1 -1
  59. pygeai/tests/integration/lab/tools/test_get_tool.py +1 -1
  60. pygeai/tests/integration/lab/tools/test_list_tools.py +1 -1
  61. pygeai/tests/integration/lab/tools/test_publish_tool_revision.py +1 -1
  62. pygeai/tests/integration/lab/tools/test_set_parameter.py +1 -1
  63. pygeai/tests/integration/lab/tools/test_update_tool.py +1 -1
  64. pygeai/tests/lab/agents/test_clients.py +17 -34
  65. pygeai/tests/lab/processes/test_clients.py +30 -93
  66. pygeai/tests/lab/processes/test_mappers.py +12 -71
  67. pygeai/tests/lab/strategies/test_clients.py +63 -63
  68. pygeai/tests/lab/test_managers.py +3 -6
  69. pygeai/tests/lab/test_models.py +9 -8
  70. pygeai/tests/lab/tools/test_clients.py +22 -45
  71. pygeai/tests/migration/test_strategies.py +16 -16
  72. pygeai/tests/organization/test_mappers.py +11 -4
  73. pygeai/tests/organization/test_responses.py +137 -0
  74. {pygeai-0.5.0.dist-info → pygeai-0.6.0b3.dist-info}/METADATA +1 -1
  75. {pygeai-0.5.0.dist-info → pygeai-0.6.0b3.dist-info}/RECORD +79 -53
  76. {pygeai-0.5.0.dist-info → pygeai-0.6.0b3.dist-info}/WHEEL +0 -0
  77. {pygeai-0.5.0.dist-info → pygeai-0.6.0b3.dist-info}/entry_points.txt +0 -0
  78. {pygeai-0.5.0.dist-info → pygeai-0.6.0b3.dist-info}/licenses/LICENSE +0 -0
  79. {pygeai-0.5.0.dist-info → pygeai-0.6.0b3.dist-info}/top_level.txt +0 -0
@@ -184,8 +184,8 @@ class TestMigrationStrategies(unittest.TestCase):
184
184
  )
185
185
  strategy.migrate()
186
186
 
187
- mock_source.get_agent.assert_called_with(project_id=self.from_project_id, agent_id=self.agent_id)
188
- mock_destination.create_agent.assert_called_with(project_id=self.to_project_id, agent=mock_agent)
187
+ mock_source.get_agent.assert_called_with(agent_id=self.agent_id)
188
+ mock_destination.create_agent.assert_called_with(agent=mock_agent)
189
189
  mock_stdout.assert_called_once()
190
190
  self.assertIn("New agent detail:", mock_stdout.call_args[0][0])
191
191
  mock_stderr.assert_not_called()
@@ -211,7 +211,7 @@ class TestMigrationStrategies(unittest.TestCase):
211
211
  )
212
212
  strategy.migrate()
213
213
 
214
- mock_source.get_agent.assert_called_with(project_id=self.from_project_id, agent_id=self.agent_id)
214
+ mock_source.get_agent.assert_called_with(agent_id=self.agent_id)
215
215
  mock_destination.create_agent.assert_not_called()
216
216
  mock_stderr.assert_called_once()
217
217
  self.assertIn("Agent migration failed:", mock_stderr.call_args[0][0])
@@ -240,7 +240,7 @@ class TestMigrationStrategies(unittest.TestCase):
240
240
  )
241
241
  strategy.migrate()
242
242
 
243
- mock_source.get_agent.assert_called_with(project_id=self.from_project_id, agent_id=self.agent_id)
243
+ mock_source.get_agent.assert_called_with(agent_id=self.agent_id)
244
244
  mock_destination.create_agent.assert_not_called()
245
245
  mock_stderr.assert_called_once()
246
246
  mock_stdout.assert_called_once()
@@ -290,8 +290,8 @@ class TestMigrationStrategies(unittest.TestCase):
290
290
  )
291
291
  strategy.migrate()
292
292
 
293
- mock_source.get_tool.assert_called_with(project_id=self.from_project_id, tool_id=self.tool_id)
294
- mock_destination.create_tool.assert_called_with(project_id=self.to_project_id, tool=mock_tool)
293
+ mock_source.get_tool.assert_called_with(tool_id=self.tool_id)
294
+ mock_destination.create_tool.assert_called_with(tool=mock_tool)
295
295
  mock_stdout.assert_called_once()
296
296
  self.assertIn("New tool detail:", mock_stdout.call_args[0][0])
297
297
  mock_stderr.assert_not_called()
@@ -317,7 +317,7 @@ class TestMigrationStrategies(unittest.TestCase):
317
317
  )
318
318
  strategy.migrate()
319
319
 
320
- mock_source.get_tool.assert_called_with(project_id=self.from_project_id, tool_id=self.tool_id)
320
+ mock_source.get_tool.assert_called_with(tool_id=self.tool_id)
321
321
  mock_destination.create_tool.assert_not_called()
322
322
  mock_stderr.assert_called_once()
323
323
  self.assertIn("Tool migration failed:", mock_stderr.call_args[0][0])
@@ -346,7 +346,7 @@ class TestMigrationStrategies(unittest.TestCase):
346
346
  )
347
347
  strategy.migrate()
348
348
 
349
- mock_source.get_tool.assert_called_with(project_id=self.from_project_id, tool_id=self.tool_id)
349
+ mock_source.get_tool.assert_called_with(tool_id=self.tool_id)
350
350
  mock_destination.create_tool.assert_not_called()
351
351
  mock_stderr.assert_called_once()
352
352
  mock_stdout.assert_called_once()
@@ -396,8 +396,8 @@ class TestMigrationStrategies(unittest.TestCase):
396
396
  )
397
397
  strategy.migrate()
398
398
 
399
- mock_source.get_process.assert_called_with(project_id=self.from_project_id, process_id=self.process_id)
400
- mock_destination.create_process.assert_called_with(project_id=self.to_project_id, process=mock_process)
399
+ mock_source.get_process.assert_called_with(process_id=self.process_id)
400
+ mock_destination.create_process.assert_called_with(process=mock_process)
401
401
  mock_stdout.assert_called_once()
402
402
  self.assertIn("New process detail:", mock_stdout.call_args[0][0])
403
403
  mock_stderr.assert_not_called()
@@ -423,7 +423,7 @@ class TestMigrationStrategies(unittest.TestCase):
423
423
  )
424
424
  strategy.migrate()
425
425
 
426
- mock_source.get_process.assert_called_with(project_id=self.from_project_id, process_id=self.process_id)
426
+ mock_source.get_process.assert_called_with(process_id=self.process_id)
427
427
  mock_destination.create_process.assert_not_called()
428
428
  mock_stderr.assert_called_once()
429
429
  self.assertIn("Process migration failed:", mock_stderr.call_args[0][0])
@@ -452,7 +452,7 @@ class TestMigrationStrategies(unittest.TestCase):
452
452
  )
453
453
  strategy.migrate()
454
454
 
455
- mock_source.get_process.assert_called_with(project_id=self.from_project_id, process_id=self.process_id)
455
+ mock_source.get_process.assert_called_with(process_id=self.process_id)
456
456
  mock_destination.create_process.assert_not_called()
457
457
  mock_stdout.assert_called_once()
458
458
  mock_stderr.assert_called_once()
@@ -502,8 +502,8 @@ class TestMigrationStrategies(unittest.TestCase):
502
502
  )
503
503
  strategy.migrate()
504
504
 
505
- mock_source.get_task.assert_called_with(project_id=self.from_project_id, task_id=self.task_id)
506
- mock_destination.create_task.assert_called_with(project_id=self.to_project_id, task=mock_task)
505
+ mock_source.get_task.assert_called_with(task_id=self.task_id)
506
+ mock_destination.create_task.assert_called_with(task=mock_task)
507
507
  mock_stdout.assert_called_once()
508
508
  self.assertIn("New task detail:", mock_stdout.call_args[0][0])
509
509
  mock_stderr.assert_not_called()
@@ -529,7 +529,7 @@ class TestMigrationStrategies(unittest.TestCase):
529
529
  )
530
530
  strategy.migrate()
531
531
 
532
- mock_source.get_task.assert_called_with(project_id=self.from_project_id, task_id=self.task_id)
532
+ mock_source.get_task.assert_called_with(task_id=self.task_id)
533
533
  mock_destination.create_task.assert_not_called()
534
534
  mock_stderr.assert_called_once()
535
535
  self.assertIn("Task migration failed:", mock_stderr.call_args[0][0])
@@ -558,7 +558,7 @@ class TestMigrationStrategies(unittest.TestCase):
558
558
  )
559
559
  strategy.migrate()
560
560
 
561
- mock_source.get_task.assert_called_with(project_id=self.from_project_id, task_id=self.task_id)
561
+ mock_source.get_task.assert_called_with(task_id=self.task_id)
562
562
  mock_destination.create_task.assert_not_called()
563
563
  mock_stderr.assert_called_once()
564
564
  mock_stdout.assert_called_once()
@@ -129,11 +129,18 @@ class TestOrganizationResponseMapper(unittest.TestCase):
129
129
  self.assertEqual(result.tokens[0].name, "Token1")
130
130
 
131
131
  def test_map_to_item_list_response_with_valid_data(self):
132
- data = {"items": [{"assistant": "Assistant1", "timestamp": "2023-01-01T00:00:00", "status": "Completed"}]}
132
+ data = {"items": [{"assistant": "Assistant1", "timestamp": "2023-01-01T00:00:00", "status": "succeeded"}]}
133
133
  expected_item = RequestItem(
134
+ api_token="token123",
134
135
  assistant="Assistant1",
135
- timestamp="2023-01-01T00:00:00",
136
- status="Completed"
136
+ cost=0.5,
137
+ elapsed_time_ms=1000,
138
+ end_timestamp="2023-01-01T00:01:00",
139
+ module="test_module",
140
+ session_id="session123",
141
+ start_timestamp="2023-01-01T00:00:00",
142
+ status="succeeded",
143
+ timestamp="2023-01-01T00:00:00"
137
144
  )
138
145
 
139
146
  with patch('pygeai.core.base.mappers.ModelMapper.map_to_item_list', return_value=[expected_item]):
@@ -142,5 +149,5 @@ class TestOrganizationResponseMapper(unittest.TestCase):
142
149
  self.assertIsInstance(result, ProjectItemListResponse)
143
150
  self.assertEqual(len(result.items), 1)
144
151
  self.assertEqual(result.items[0].assistant, "Assistant1")
145
- self.assertEqual(result.items[0].status, "Completed")
152
+ self.assertEqual(result.items[0].status, "succeeded")
146
153
 
@@ -0,0 +1,137 @@
1
+ import unittest
2
+ from unittest.mock import MagicMock
3
+ from datetime import datetime
4
+
5
+ from pygeai.organization.responses import (
6
+ AssistantListResponse,
7
+ ProjectListResponse,
8
+ ProjectDataResponse,
9
+ ProjectTokensResponse,
10
+ ProjectItemListResponse
11
+ )
12
+ from pygeai.core.models import Assistant, Project, ProjectToken, RequestItem
13
+
14
+
15
+ class TestOrganizationResponses(unittest.TestCase):
16
+ """
17
+ python -m unittest pygeai.tests.organization.test_responses.TestOrganizationResponses
18
+ """
19
+
20
+ def _create_request_item(self, index=1):
21
+ """Helper method to create a valid RequestItem for testing"""
22
+ return RequestItem(
23
+ apiToken=f"token-{index}",
24
+ assistant=f"assistant-{index}",
25
+ cost=0.01 * index,
26
+ elapsedTimeMs=100 * index,
27
+ endTimestamp=datetime.now(),
28
+ module=f"module-{index}",
29
+ sessionId=f"session-{index}",
30
+ startTimestamp=datetime.now(),
31
+ status="succeeded",
32
+ timestamp=datetime.now()
33
+ )
34
+
35
+ def test_assistant_list_response(self):
36
+ assistant1 = MagicMock(spec=Assistant)
37
+ assistant2 = MagicMock(spec=Assistant)
38
+
39
+ response = AssistantListResponse(assistants=[assistant1, assistant2])
40
+
41
+ self.assertEqual(len(response.assistants), 2)
42
+ self.assertEqual(response.assistants[0], assistant1)
43
+
44
+ def test_project_list_response(self):
45
+ project1 = MagicMock(spec=Project)
46
+ project2 = MagicMock(spec=Project)
47
+
48
+ response = ProjectListResponse(projects=[project1, project2])
49
+
50
+ self.assertEqual(len(response.projects), 2)
51
+ self.assertEqual(response.projects[0], project1)
52
+
53
+ def test_project_data_response(self):
54
+ project = MagicMock(spec=Project)
55
+
56
+ response = ProjectDataResponse(project=project)
57
+
58
+ self.assertEqual(response.project, project)
59
+
60
+ def test_project_tokens_response(self):
61
+ token1 = MagicMock(spec=ProjectToken)
62
+ token2 = MagicMock(spec=ProjectToken)
63
+
64
+ response = ProjectTokensResponse(tokens=[token1, token2])
65
+
66
+ self.assertEqual(len(response.tokens), 2)
67
+ self.assertEqual(response.tokens[0], token1)
68
+
69
+ def test_project_item_list_response_to_list(self):
70
+ item1 = self._create_request_item(1)
71
+ item2 = self._create_request_item(2)
72
+
73
+ response = ProjectItemListResponse(items=[item1, item2])
74
+ result = response.to_list()
75
+
76
+ self.assertEqual(len(result), 2)
77
+ self.assertIsInstance(result[0], dict)
78
+ self.assertIsInstance(result[1], dict)
79
+
80
+ def test_project_item_list_response_to_list_empty(self):
81
+ response = ProjectItemListResponse(items=[])
82
+ result = response.to_list()
83
+
84
+ self.assertEqual(result, [])
85
+
86
+ def test_project_item_list_response_to_list_none(self):
87
+ response = ProjectItemListResponse(items=[])
88
+ result = response.to_list()
89
+
90
+ self.assertEqual(result, [])
91
+
92
+ def test_project_item_list_response_getitem(self):
93
+ item1 = self._create_request_item(1)
94
+ item2 = self._create_request_item(2)
95
+
96
+ response = ProjectItemListResponse(items=[item1, item2])
97
+
98
+ self.assertEqual(response[0], item1)
99
+ self.assertEqual(response[1], item2)
100
+
101
+ def test_project_item_list_response_len(self):
102
+ item1 = self._create_request_item(1)
103
+ item2 = self._create_request_item(2)
104
+
105
+ response = ProjectItemListResponse(items=[item1, item2])
106
+
107
+ self.assertEqual(len(response), 2)
108
+
109
+ def test_project_item_list_response_len_empty(self):
110
+ response = ProjectItemListResponse(items=[])
111
+
112
+ self.assertEqual(len(response), 0)
113
+
114
+ def test_project_item_list_response_iter(self):
115
+ item1 = self._create_request_item(1)
116
+ item2 = self._create_request_item(2)
117
+
118
+ response = ProjectItemListResponse(items=[item1, item2])
119
+
120
+ items = list(response)
121
+ self.assertEqual(len(items), 2)
122
+ self.assertEqual(items[0], item1)
123
+ self.assertEqual(items[1], item2)
124
+
125
+ def test_project_item_list_response_append(self):
126
+ item1 = self._create_request_item(1)
127
+ item2 = self._create_request_item(2)
128
+
129
+ response = ProjectItemListResponse(items=[item1])
130
+ response.append(item2)
131
+
132
+ self.assertEqual(len(response.items), 2)
133
+ self.assertEqual(response.items[1], item2)
134
+
135
+
136
+ if __name__ == '__main__':
137
+ unittest.main()
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pygeai
3
- Version: 0.5.0
3
+ Version: 0.6.0b3
4
4
  Summary: Software Development Kit to interact with Globant Enterprise AI.
5
5
  Author-email: Globant <geai-sdk@globant.com>
6
6
  License-Expression: MIT
@@ -1,4 +1,4 @@
1
- pygeai/__init__.py,sha256=umr3RpyF_UgMuplDKpprgCswPGG4LXkhBnOvcQlUbno,502
1
+ pygeai/__init__.py,sha256=VpX09d3yWymZmWS4bQbYYIWJLEQpYTWJyTKhVGHSwb0,502
2
2
  pygeai/admin/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
3
3
  pygeai/admin/clients.py,sha256=2wuXSmTyg-gCbempDFCeI1yCKeOlKDBZsrFyFWxcwBg,6698
4
4
  pygeai/admin/endpoints.py,sha256=Osi8UIBhrEzKlTLF2a-q2boDUl0XMR3lQ8sDrz72TL0,747
@@ -18,6 +18,9 @@ pygeai/assistant/rag/endpoints.py,sha256=7YlHIvAYj3-xsCWtVMDYobxXbAO0lCo9yJdOrQx
18
18
  pygeai/assistant/rag/mappers.py,sha256=n3aeNXqz_7zq_JWq5wJfeNX1kvV3arOxAoUsqRYOZsc,8645
19
19
  pygeai/assistant/rag/models.py,sha256=g5UiHuRjobgU1WgUMxeBzXykxgJ5q7eb_YY8qDciNvw,15732
20
20
  pygeai/assistant/rag/responses.py,sha256=fY97ibsCVLQ3Ssnjuvj-JeA883WqjOw7ZdxbpQp_B1E,196
21
+ pygeai/auth/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
22
+ pygeai/auth/clients.py,sha256=MAiCVxYEi8EpEmZfWV0xui4WoC11Ch1iQfUuTskcOkY,2381
23
+ pygeai/auth/endpoints.py,sha256=Au0w6bADAX7avQEErwfs7bpKOTuZqkkxCCa1rNN0J94,191
21
24
  pygeai/chat/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
22
25
  pygeai/chat/clients.py,sha256=QEyeTIPxp6xXKAEkE_XkjIxZDnaH808GKhIYr7ulrSA,10785
23
26
  pygeai/chat/endpoints.py,sha256=tIPBK5EiQGbQlDZz96A9AfumIFs4Z6QiD_oK8PTVQFg,206
@@ -26,7 +29,7 @@ pygeai/chat/managers.py,sha256=f0BGfu9EF0G8rUyARslZi0pyDTL2yQadav0taCljI_I,3114
26
29
  pygeai/chat/session.py,sha256=k7Y6rr9x7CfAGDI-Vt3c6eGLQX57YZ74lEVJGzwwdzw,1193
27
30
  pygeai/chat/settings.py,sha256=-B2fEemZLifdsf7_7xNmWuFZYzL-yRqefivBmv3w8j8,124
28
31
  pygeai/chat/ui.py,sha256=-xvjCzBwWlvyq-C0kN2YPczl4Q0alyJamXULOlGjKRA,34595
29
- pygeai/cli/__init__.py,sha256=wZjg1uiXApeacVQDfk5h3g_2Mupl6763O3ef5JISXBM,117
32
+ pygeai/cli/__init__.py,sha256=P7_xZm3j6DdYnVTanQClJjfyW5co5ovNoiizgd0NMLo,95
30
33
  pygeai/cli/__main__.py,sha256=2RkQaX48mS2keTpv3-9rxk5dw35PL_deqxcKUUNhp6E,154
31
34
  pygeai/cli/geai.py,sha256=Smqxqc3XIy8RMuFVIsS9qNuYtqkNWba_CJJrhe7kW0E,4451
32
35
  pygeai/cli/geai_proxy.py,sha256=BSoeh32fhATxbsAA_B92HKDBiLgfejEQ0XwXfeOk49g,13356
@@ -35,11 +38,13 @@ pygeai/cli/parsers.py,sha256=8kKvUbg33K4VbE7ryHwq3Uwwp42BK6ZOAKycYjEj1Io,2525
35
38
  pygeai/cli/commands/__init__.py,sha256=rWx5Qmo-CqTS41m6ROHX0j1NnWFVpj_DF_ORQS0AaZw,1808
36
39
  pygeai/cli/commands/admin.py,sha256=LDxUrq9qGAswT4HbaN_c_ovVKbgGct7ffjXA8zVYjWY,5833
37
40
  pygeai/cli/commands/assistant.py,sha256=fQ_El6_BmFDpFjm_gPxzWk7bOzhimhiTwG8K0UpcxDo,18711
38
- pygeai/cli/commands/base.py,sha256=kkJEObpT2xSiObWAliJfGV73JS3LjLTMq7FEd4SpxkE,6930
41
+ pygeai/cli/commands/auth.py,sha256=xiW9GEXZy7ti3HJMUEX5fSKe6XqxTVciZiCz1Trws7E,3361
42
+ pygeai/cli/commands/base.py,sha256=pnZDBKLv4ZN1mEvIQOR35S9n07mYvCuxa-Nrgm8DOao,7397
39
43
  pygeai/cli/commands/builders.py,sha256=xXk1F4phSQxHN3NiQltl_KEZdCwwJiKLmVqQsft2OC4,1130
40
44
  pygeai/cli/commands/chat.py,sha256=Y2e3NjDXYjutdxbpGUDmewZfKnR_QHb69Jz4L-2GHY4,25170
41
45
  pygeai/cli/commands/common.py,sha256=zL1cWKMTqzqMsHBDFfVzbZe0i2l0hgJNpzjSRgvloY8,16568
42
46
  pygeai/cli/commands/configuration.py,sha256=J1Y8AH1xYWvcY4bzqKvF-_ggEDJ22Dv4iEcCBi2pq_8,4140
47
+ pygeai/cli/commands/docs.py,sha256=vk-nM4r3Ru07rxkjF3AgJCw6QnsSHuBL7W6WF8WbCjE,3438
43
48
  pygeai/cli/commands/embeddings.py,sha256=om_RR3CHgfmHcTN43F6TzP71n-BS8Lf589wyBMVZJ3g,4220
44
49
  pygeai/cli/commands/evaluation.py,sha256=7fgqihWtJ1h7dGXdTR3AbanNAIjeAI5qY7TAaTSi6WI,63828
45
50
  pygeai/cli/commands/feedback.py,sha256=nJdrI974N_3IsloJMqe7GRay5_ijOSkeZ9MIdGeQZa0,2442
@@ -63,7 +68,7 @@ pygeai/cli/commands/lab/options.py,sha256=T13Vi97zochr0cU4yjyvvwWRPENILFDYpvqpU4
63
68
  pygeai/cli/commands/lab/spec.py,sha256=EjNdEnljKpYPQyT4d4ViAPrM1g7oIitv6ddnWVkWXPk,8301
64
69
  pygeai/cli/commands/lab/utils.py,sha256=uxhgHvCRrV6WYRxR2qd3nED_hhXcxJ1tAU8MlzoshEg,456
65
70
  pygeai/cli/texts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
66
- pygeai/cli/texts/help.py,sha256=0idAj91GTubRRXgN1t8_SRiF1Ou89ssHC5vKwONDxMM,16074
71
+ pygeai/cli/texts/help.py,sha256=cdTdEO9QRm3SVCzCEJq4vhunKHkGdpzWfmdoel8TDsw,22054
67
72
  pygeai/core/__init__.py,sha256=bbNktFp7t2dOBIvWto-uGVBW8acaKIe8EKcfuLV-HmA,189
68
73
  pygeai/core/handlers.py,sha256=la1QcQbLwfiNd-xDQ3jtWRHmeEm6E93Rfx5c-5bkLmw,934
69
74
  pygeai/core/models.py,sha256=uIwrmlB6yuulScUcYIBSH3Sxm5YyzaicV7Dz2bYLi2I,24229
@@ -96,7 +101,7 @@ pygeai/core/files/endpoints.py,sha256=hAUC28hYVcHyEyEfoLaLae76TpuVSLexPVjLJYjSWY
96
101
  pygeai/core/files/managers.py,sha256=Hzq-XMEJnnNrh3pG5PViQqSt1WrbO-z5wHXsoGrSQxA,7158
97
102
  pygeai/core/files/mappers.py,sha256=8PXXsQJZEH45yLISn_xsOZmcRUEe_F6ELkUeR1lzc-M,1462
98
103
  pygeai/core/files/models.py,sha256=QOLV5kUrHOvhJXzkoFqNQX4qmVPLy6KKBk6u7oE5ttU,438
99
- pygeai/core/files/responses.py,sha256=fnNLK-stnXGnB9d38szWrZMu7JLTtXghAoRZnFTFJCE,356
104
+ pygeai/core/files/responses.py,sha256=O5DYgqXOtIFL0memOcWJTz258KoEjLq5e1Yw9pgRJ7g,435
100
105
  pygeai/core/llm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
101
106
  pygeai/core/llm/clients.py,sha256=TjSFULqFn97wBYUnkPVinuAquGlryzawMI7v7S3ads0,3095
102
107
  pygeai/core/llm/endpoints.py,sha256=EF5wNJH8Au3ZYl_hF2uCRL4hPSe2_MIy6TGpzubNVak,435
@@ -144,7 +149,7 @@ pygeai/health/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
144
149
  pygeai/health/clients.py,sha256=U2eb1tkXt1Rf_KdV0ZFQS2k4wGnJTXHHd9-Er0eWQuw,1011
145
150
  pygeai/health/endpoints.py,sha256=UAzMcqSXZtMj4r8M8B7a_a5LT6X_jMFNsCTvcsjNTYA,71
146
151
  pygeai/lab/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
147
- pygeai/lab/clients.py,sha256=5JebyNpKCVwAQpeOAkJPIHRf_6hoKA3uUm9xewm01UQ,816
152
+ pygeai/lab/clients.py,sha256=vBQHSK3nNWuXxycGlTDKGDtv140Q-0Y4GrvoHkvSeu0,949
148
153
  pygeai/lab/constants.py,sha256=ddgDnXP4GD0woi-FUJaJXzaWS3H6zmDN0B-v8utM95Q,170
149
154
  pygeai/lab/managers.py,sha256=EGU2NTpZyWtPo-VBX_wSrNOjLNPBIt7cxha9lIbuXgk,70725
150
155
  pygeai/lab/models.py,sha256=1m41gSqpXZVO9AcPVxzlsC-TgxZcCsgGUbpN5zoDMjU,71451
@@ -165,7 +170,7 @@ pygeai/lab/strategies/clients.py,sha256=_a1yc8kwd50Yv4g1jqfa0gRnMiROR7Dn0gx3xqFU
165
170
  pygeai/lab/strategies/endpoints.py,sha256=LgEvUgeeN-X6VMl-tpl9_N12GRppLPScQmiMRk7Ri28,541
166
171
  pygeai/lab/strategies/mappers.py,sha256=6C_jubAVXMKLGQy5NUD0OX7SlrU2mLe2QsgzeJ1-WKw,2437
167
172
  pygeai/lab/tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
168
- pygeai/lab/tools/clients.py,sha256=3yESr0NQoO7qKi9s7VodxaV_4qjBlJ6cT_fBmEhyT48,28151
173
+ pygeai/lab/tools/clients.py,sha256=bwOuMrkGKzNbUal8gAwkz-PNiVZ_ucw9klgP6YZB6QA,28145
169
174
  pygeai/lab/tools/endpoints.py,sha256=HiGoMs4OVeCgH7EAERTtifFPl53NryA1Awh7D6AO8bA,699
170
175
  pygeai/lab/tools/mappers.py,sha256=bYi5k36h0k4mCvOnV-r8YOHKz0U9P0mH21GNs20w2eM,4998
171
176
  pygeai/man/__init__.py,sha256=gqGI92vUPt6RPweoWX3mTUYPWNDlm6aGUjQOnYXqthk,53
@@ -194,7 +199,7 @@ pygeai/proxy/servers.py,sha256=gWEceLmla_doKfEx6UJNIfrcr5USqkiYfz0LB9O80vA,11518
194
199
  pygeai/proxy/tool.py,sha256=gxDd_jABg68vB_WOAGsosd0dQc3AbRKnFqY6qpXsBDk,2338
195
200
  pygeai/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
196
201
  pygeai/tests/admin/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
197
- pygeai/tests/admin/test_clients.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
202
+ pygeai/tests/admin/test_clients.py,sha256=UnTPxDd2Jvu8qCz1mPEsduWTO0RqV7_2DwTGyYwq8cs,6498
198
203
  pygeai/tests/assistants/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
199
204
  pygeai/tests/assistants/test_clients.py,sha256=q6WRPdtqvTkfZGDBoAoiU-Tt7eD-B1dMD45U-1Le8HE,8375
200
205
  pygeai/tests/assistants/test_managers.py,sha256=EbwGVabdCBqgMryjRMoWVFWa5kR9HqzsckB-DR3EuSA,11196
@@ -203,6 +208,8 @@ pygeai/tests/assistants/rag/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMp
203
208
  pygeai/tests/assistants/rag/test_clients.py,sha256=fHKi1qwBQSuMz7UPP9zPQslBX9Bsiqlt3SylKBzXae8,14713
204
209
  pygeai/tests/assistants/rag/test_mappers.py,sha256=5vDqjzatawEiK2qaF6oeMEb74BiEP79jiMC-R1Vnvus,8359
205
210
  pygeai/tests/assistants/rag/test_models.py,sha256=45eAQ4vE3gMvE8qWKlXg2klulQMZ3riHx5XWurE0mVA,10790
211
+ pygeai/tests/auth/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
212
+ pygeai/tests/auth/test_clients.py,sha256=QvVr0CC4wD4lV7tnS2Sg1vc4-ucxmjiXuicyDAeTrgg,4253
206
213
  pygeai/tests/chat/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
207
214
  pygeai/tests/chat/test_clients.py,sha256=zYV3p9F0UPUoyYZlH-c8CoSL-6abrHhbS_6bAtkHa5E,7655
208
215
  pygeai/tests/chat/test_iris.py,sha256=kWGrQ0T7E5Lg9-F9157GvF32l1sbaejbI5qbGKjWkxM,1186
@@ -212,9 +219,10 @@ pygeai/tests/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,
212
219
  pygeai/tests/cli/test_parsers.py,sha256=EoZur-PByaXnNmXbIileISFGJLYiOvp3M6VO1RIKFHM,7442
213
220
  pygeai/tests/cli/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
214
221
  pygeai/tests/cli/commands/test_assistant.py,sha256=IT1ORQZRFoNvGXn67SweI8DU3d0G8fJbnLAFfEJCV0k,10547
215
- pygeai/tests/cli/commands/test_chat.py,sha256=ePqDnYylsgY4MbojYN75JL_Ao349YVkZevVQN1h-KKM,4989
222
+ pygeai/tests/cli/commands/test_chat.py,sha256=4TK_sRqEQlgpCribkMjKqzAONVxAP7oSkfYw5bIRYb8,6120
216
223
  pygeai/tests/cli/commands/test_common.py,sha256=gv1GOEAXq5IqiXu5xjANq4pxyjClcu2taCHIaG38Gjc,13514
217
224
  pygeai/tests/cli/commands/test_embeddings.py,sha256=E6A5AlvQHgK97bqTUauvJBg-Cn34IJ3f92wBJpCsL-0,4535
225
+ pygeai/tests/cli/commands/test_evaluation.py,sha256=F8ZYcTZ1hRKw12j5tVdF2BVSGLfllIDG1q_NxofnBY0,30620
218
226
  pygeai/tests/cli/commands/test_feedback.py,sha256=gHJ8Jt8kEemTvlpWLCyZCo73i0iBPlKhONRj4bJfhWU,3192
219
227
  pygeai/tests/cli/commands/test_files.py,sha256=cJ0W4f8eg1T2TBZCah1k93nrk7R8ZL6_1HwCOhJOacI,7583
220
228
  pygeai/tests/cli/commands/test_gam.py,sha256=oIFj4HJV6z1fQkIU2BmgP1VJ2zJ65UWDM6a3G8AenHM,8318
@@ -223,25 +231,27 @@ pygeai/tests/cli/commands/test_migrate.py,sha256=NPUe58OC74e47WKjqTKaBERhW2X8fGe
223
231
  pygeai/tests/cli/commands/test_organization.py,sha256=ret6Aboh4ew34VSo_dZcfBOrtce1dDNQO7DvyGUbFx4,9227
224
232
  pygeai/tests/cli/commands/test_rag.py,sha256=7SdTbCgdPDoLca4Y7LECkL6AVPpgIYXiXyTRubBNe1Y,11761
225
233
  pygeai/tests/cli/commands/test_rerank.py,sha256=G9Kc-VnLJgx_fYy1qgoL0swYp9-VV6OSL9eNnU0Xkpw,5305
234
+ pygeai/tests/cli/commands/test_secrets.py,sha256=CXd2ZTpuUGK4SgfPuSGo9p_C2TiILj4HJUi_O4n0XK0,7562
226
235
  pygeai/tests/cli/commands/test_show_help.py,sha256=RHF-xzrgk25OrQTdxsAfnEspDfvmyAtEryYEVpnaqNc,1608
227
236
  pygeai/tests/cli/commands/test_usage_limits.py,sha256=tt2LBaWmUhQnp9X3fHZc5-xpzKCVn-IHyZqT3cJn3ao,18636
228
237
  pygeai/tests/cli/commands/test_validators.py,sha256=HSKL9_nwTk18vrCZVBs8j1BEohgaIhOurW870hLzkpA,7445
229
238
  pygeai/tests/cli/commands/test_version.py,sha256=e6TIxU-USX8o0q3S2OGEGb-yMTHTb45yiUr2pN3zJ9Y,3989
230
239
  pygeai/tests/cli/commands/lab/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
231
- pygeai/tests/cli/commands/lab/test_ai_lab.py,sha256=zu3MbeTlP4fA3yBYlAnB7O-iRJuDFccKXJX9z5nRgAw,43137
240
+ pygeai/tests/cli/commands/lab/test_ai_lab.py,sha256=ouOGHdROpK3zEf6BsfC4tt5dGUE72MU-E-w29rgHpaQ,42841
232
241
  pygeai/tests/cli/commands/lab/test_common.py,sha256=vJuS0rNoLB2IWWtfaWdtR0H9FkPW9gpee4URbdiDl70,8678
233
- pygeai/tests/cli/commands/lab/test_spec.py,sha256=f4hjUUfTfh-zHZtHZgG-yJ4b0uiLfrXsusojRheM6vg,14774
242
+ pygeai/tests/cli/commands/lab/test_spec.py,sha256=aymKywo6TH7EJVkPW_R3RXLQeCyXX8UFbnXwlO46q0Y,12474
234
243
  pygeai/tests/cli/docker/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
235
244
  pygeai/tests/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
236
245
  pygeai/tests/core/test_handlers.py,sha256=xzPLBXLF3sBt5B1VhQ4ynnwmyQEbSTIoWsL8Djvrnyc,2470
237
246
  pygeai/tests/core/base/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
238
- pygeai/tests/core/base/test_mappers.py,sha256=OTPzct9vRBr6M-lxuED4w_bn9Ne65DHH-jBrHwY87gA,24577
239
- pygeai/tests/core/base/test_models.py,sha256=jKbV69UqyO6cI_17f26UcBVGXmvxlfmH4AoxL40Z2gM,16074
247
+ pygeai/tests/core/base/test_mappers.py,sha256=CH6xIVebzqW43YOhmSDQtzVlRRlpZUTwNGWtsBKtUBA,25715
248
+ pygeai/tests/core/base/test_models.py,sha256=SC1AKP56t-nM4wskLfGEnw_bZffi4dj9jqxPjhTvPak,16362
249
+ pygeai/tests/core/base/test_responses.py,sha256=ToRBmy3tTYMT2jET0OCt3N0JT15edZ8Obeh2QWGGEJI,1798
240
250
  pygeai/tests/core/base/data/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
241
251
  pygeai/tests/core/base/data/mappers.py,sha256=0SEtD2m48ZOYj6AesxzB6LbGSNrxoyq2BhI0gLACkII,3135
242
- pygeai/tests/core/base/data/models.py,sha256=zdbhWJXwfglFhpwHUWaUpSZ8fn9n5aR61yizdeT7gcI,8649
252
+ pygeai/tests/core/base/data/models.py,sha256=EKSSst7IrWbRc_TzGoFh6PMlubqEMOuPV6DcLHYDjAE,8890
243
253
  pygeai/tests/core/common/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
244
- pygeai/tests/core/common/test_config.py,sha256=OGcB3pEE0WSRRUZ3_2qPML0G4TY5TN-ginAb2bwdn9E,8530
254
+ pygeai/tests/core/common/test_config.py,sha256=wmh9mb3KN7LU_EkeYl1NiiARdZKYwultAokUYNGEOMY,8431
245
255
  pygeai/tests/core/common/test_decorators.py,sha256=HK3I46fTRZ8AQjVd_Fme_Wvoy2-SIl5GOGhldmd6xRc,2405
246
256
  pygeai/tests/core/common/data/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
247
257
  pygeai/tests/core/embeddings/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -251,10 +261,13 @@ pygeai/tests/core/feedback/test_clients.py,sha256=hHNs6kYLusLZgLVYQlSYet0uhNQj84
251
261
  pygeai/tests/core/files/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
252
262
  pygeai/tests/core/files/test_clients.py,sha256=fo_aMLICgSeOg2kB8uVY0cHwnPrsPLnyleN7yknvmVY,4592
253
263
  pygeai/tests/core/files/test_managers.py,sha256=hGRTJoC4hVTVryz2042Ue2PIJ_BEoSwU9IVpqbgwfx0,10811
264
+ pygeai/tests/core/files/test_mappers.py,sha256=FGLsUCCagV8oJOJxg77QPHtWGClJreAn2beBHX6BF3g,4680
254
265
  pygeai/tests/core/files/test_models.py,sha256=H54GUf3OWBF1OL0ewwKlavFaKO80OzzfN31lDylsvzw,4297
255
266
  pygeai/tests/core/files/test_responses.py,sha256=ppb3P4ME_SowDHZiKSriAZAT0vbI-zbiO9pW9vxNfTU,5222
256
267
  pygeai/tests/core/llm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
257
268
  pygeai/tests/core/llm/test_clients.py,sha256=re73cBZREfP7mGEt5CNMXH4WjZ9pzzEwtbBvYyEJ26w,6094
269
+ pygeai/tests/core/plugins/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
270
+ pygeai/tests/core/plugins/test_clients.py,sha256=sGvv4XF0Kw-dyq_9YpwKU1lHXxgPrhcfsBH9xMje8mw,2360
258
271
  pygeai/tests/core/rerank/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
259
272
  pygeai/tests/core/rerank/test_clients.py,sha256=QOn9ayry0JPdpA9plco0WvqO8DKtnKz5LBioSA6j974,2659
260
273
  pygeai/tests/core/rerank/test_managers.py,sha256=qWu_tOXghsPJ8ENbMlcVpPFfxtRQteHmAnhESDRxZUU,4834
@@ -267,6 +280,13 @@ pygeai/tests/core/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG
267
280
  pygeai/tests/core/utils/test_console.py,sha256=EvP0HpvD4bpq2WouH53UYovgh4Gq29xMudiLt-UNyA0,3266
268
281
  pygeai/tests/dbg/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
269
282
  pygeai/tests/dbg/test_debugger.py,sha256=L22axGlJlIDJFUMs9n0AjPYVATtFuT5GpTIi9hR7kig,6371
283
+ pygeai/tests/evaluation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
284
+ pygeai/tests/evaluation/dataset/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
285
+ pygeai/tests/evaluation/dataset/test_clients.py,sha256=huWaCSiWHrZGxGMpXzjq__ciYsiROZOszcv0qouFT8I,11284
286
+ pygeai/tests/evaluation/plan/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
287
+ pygeai/tests/evaluation/plan/test_clients.py,sha256=IbP-JXHY2z_-KiZ_4T84uwP3fqq5KYCG-THjjRxQi6M,8725
288
+ pygeai/tests/evaluation/result/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
289
+ pygeai/tests/evaluation/result/test_clients.py,sha256=Lk7vXrUbOiMnCRk3DTHQdIMf5b6Vmn-Dy3NiJS_ahEU,2487
270
290
  pygeai/tests/gam/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
271
291
  pygeai/tests/gam/test_clients.py,sha256=vNz-4ux0cubztTY-_fEPWEoMCt5VAmZLecd0V-sEK1E,8906
272
292
  pygeai/tests/health/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -274,61 +294,67 @@ pygeai/tests/health/test_clients.py,sha256=kfakkZHFMfo2IAN-PzmtMGmgR4iNiN1RpRopI
274
294
  pygeai/tests/integration/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
275
295
  pygeai/tests/integration/assistants/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
276
296
  pygeai/tests/integration/assistants/rag/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
277
- pygeai/tests/integration/assistants/rag/test_create_rag.py,sha256=zmlRPNvDYGPxqcWvi2kFmuC9xPv7z6NAuXJcC7J_mzY,2612
297
+ pygeai/tests/integration/assistants/rag/test_create_rag.py,sha256=BIt5WkxUIyqV745tLxd48h8Iq3gzPZen7D0hUGCN6-0,2600
278
298
  pygeai/tests/integration/chat/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
279
- pygeai/tests/integration/chat/test_generate_image.py,sha256=oT-WiFVX4MxQbbmiZkOMFC7yDnr3lYavGMTlXGYSjv8,5309
299
+ pygeai/tests/integration/chat/test_generate_image.py,sha256=grLr46o1Ey9QDXCKvXLDzD7zzE3hoC5H1l86g-fLTxI,5297
280
300
  pygeai/tests/integration/lab/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
281
301
  pygeai/tests/integration/lab/agents/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
282
- pygeai/tests/integration/lab/agents/test_agents_list.py,sha256=F2KUCdeiaBC3dn8ARNWqSz_kJcRyA0HC1nquhamN35Q,4187
283
- pygeai/tests/integration/lab/agents/test_create_agent.py,sha256=UzQACXzOvZzXFDw1RPTOrMsjhLEnfsO-DIPb455o9Dw,14394
284
- pygeai/tests/integration/lab/agents/test_create_sharing_link.py,sha256=9v0MELsWH2sFqa15cQS3cQt3NGiugysWkPWDyBT73nQ,2698
285
- pygeai/tests/integration/lab/agents/test_delete_agent.py,sha256=sb3RfoZJdzQvcVdNcXY2C2FO3yY1ZNiAZ_6Ay6f331E,2524
286
- pygeai/tests/integration/lab/agents/test_get_agent.py,sha256=oW1F6SENvhL9jZC021Rj-f_Xek2DSTx3SsZBr3YT6Hk,3666
287
- pygeai/tests/integration/lab/agents/test_publish_agent_revision.py,sha256=PGlYn8y2L2FUfSG3NGDPHl3ZyIiohhir1spYqO6J3xY,5182
288
- pygeai/tests/integration/lab/agents/test_update_agent.py,sha256=VMDw9Fc187HuZDwbXb7HIRqTdjp4VNu6Nx6ashvf2Dc,11422
302
+ pygeai/tests/integration/lab/agents/test_agents_list.py,sha256=6VwDwWZA-8CWUB9_I32d8ww1rR2fEkopGO4UoiVU8rs,4175
303
+ pygeai/tests/integration/lab/agents/test_create_agent.py,sha256=PdpZsuw0Ad3W6FIwQRRsZz1ivtQMUuN4JlbTyzdHPZg,14356
304
+ pygeai/tests/integration/lab/agents/test_create_sharing_link.py,sha256=J4_CS8lHO_vrCUzZEXUsJwi8A_0gkHNtXSqkxVPErQI,2686
305
+ pygeai/tests/integration/lab/agents/test_delete_agent.py,sha256=JVMg43gOgPJf5s4TX73d_LeMISUkQfocnIbuKrG9dVs,2499
306
+ pygeai/tests/integration/lab/agents/test_get_agent.py,sha256=sNuh1SHxzbrvTweya1xVSfqapJP2dzY1S-E5Bydi4Mw,3654
307
+ pygeai/tests/integration/lab/agents/test_publish_agent_revision.py,sha256=rA_4ovD1o_gvjA61-SUvPpJ9vuff7KW0J5fX_xI-rx8,5157
308
+ pygeai/tests/integration/lab/agents/test_update_agent.py,sha256=V8959eS6XzN8O8bIJwg-FlavrXbY7DvVI4Mms7ggqjM,11384
289
309
  pygeai/tests/integration/lab/processes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
290
- pygeai/tests/integration/lab/processes/test_create_process.py,sha256=cqN8qgY0dKpmNa1CUpoqPhpMc_3bE9O0q7jem30qtAE,14325
291
- pygeai/tests/integration/lab/processes/test_get_process.py,sha256=NaG3UfboqvaOeIe0pLTWhxk5N22pqhHsorNsXsuU9sU,7680
292
- pygeai/tests/integration/lab/processes/test_update_process.py,sha256=08XE264_ZGHUR3pITO5Ly55un5djan0-_heJidftY6Y,12297
310
+ pygeai/tests/integration/lab/processes/test_create_process.py,sha256=L6ab-oylHNqLdHYkLEqoHj4exHTSmt46C6t-5ZhEQPc,14313
311
+ pygeai/tests/integration/lab/processes/test_create_task.py,sha256=I5X9mjy1caFXBKS7IFNqBtpbyFefZr73bSeOQA3MF3k,7848
312
+ pygeai/tests/integration/lab/processes/test_delete_process.py,sha256=usCxPl8_g5XzCjzDxRHEzJoptzHuhZTyZ2EVD-zHVf8,4290
313
+ pygeai/tests/integration/lab/processes/test_get_process.py,sha256=SIGj1edQNMNZI1Krd3lFeDDBkfOXgnKJlIAm-33qbJw,7668
314
+ pygeai/tests/integration/lab/processes/test_list_process_instances.py,sha256=A3E5XkkVzczGK-mhanF4F_qQeoXcCnjyLu7dg4fWm8k,3700
315
+ pygeai/tests/integration/lab/processes/test_list_processes.py,sha256=zmjrNMmvUr19eiUcqDqTg78dFJm6yj2f1sMCVU5GRrg,5582
316
+ pygeai/tests/integration/lab/processes/test_publish_process_revision.py,sha256=4W1Kjga-McywnXBtbzDw_hEfPlAyLqahp9Pq15GNIQo,10257
317
+ pygeai/tests/integration/lab/processes/test_update_process.py,sha256=XSPod-91OM2WAkinPRLQR4xznLV_RTS--ETC1B4YYwk,12285
293
318
  pygeai/tests/integration/lab/reasoning_strategies/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
294
- pygeai/tests/integration/lab/reasoning_strategies/test_get_reasoning_strategy.py,sha256=qHFUXsAmZjYaWDDhE8wR5pNlRcUt7MfWyfvMS3ZFtC8,2769
295
- pygeai/tests/integration/lab/reasoning_strategies/test_list_reasoning_strategies.py,sha256=pKOlu8KIjUyzuhfd9_TPI6flMeAwVdvdI0oElj1ZbHo,3543
296
- pygeai/tests/integration/lab/reasoning_strategies/test_update_reasoning_strategy.py,sha256=lBOIi0RU6iOXV4w5j5GumJlx6xASeteQgTF4kwnH4Xs,5795
319
+ pygeai/tests/integration/lab/reasoning_strategies/test_get_reasoning_strategy.py,sha256=QmzjtskmUq0hCrkrwKDEyjgx_kTJcsicIYHOhkWTDY0,2757
320
+ pygeai/tests/integration/lab/reasoning_strategies/test_list_reasoning_strategies.py,sha256=yWV1lVicWcYjVItoko8DmQX-cpfy9lGNEZs-okMg3Is,3531
321
+ pygeai/tests/integration/lab/reasoning_strategies/test_update_reasoning_strategy.py,sha256=DBhPuWOaCWqEQa2kTOecjmp7CHZT4GaYtGXm6A_Fwms,5783
297
322
  pygeai/tests/integration/lab/tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
298
- pygeai/tests/integration/lab/tools/test_create_tool.py,sha256=6pe69k90tt0fsyuNs7baoKUwMZT0FQq1NBfN9IzbCAw,12265
299
- pygeai/tests/integration/lab/tools/test_delete_tool.py,sha256=HocyA9LPvTfMXyqOnW5qmip2dt6zSstDMfGSbD9Y2Ls,2883
300
- pygeai/tests/integration/lab/tools/test_get_parameter.py,sha256=r5TIaY_ABdyrtGfQwvs6F76dxEoy5HnvOSDwYpZo4ow,3610
301
- pygeai/tests/integration/lab/tools/test_get_tool.py,sha256=gZlfEBS0cwLfJmkjZoFdDLQuprJfDkeC9jC_3J9Q_qg,3461
302
- pygeai/tests/integration/lab/tools/test_list_tools.py,sha256=KMLWXUmk_hKChKo4t5xEZtuIS1UmhAH6VdEq15KCrbY,3744
303
- pygeai/tests/integration/lab/tools/test_publish_tool_revision.py,sha256=AoCdHF8f7jUwAEL3PUvZMEE67m8OCcn_hqY67thJplU,4589
304
- pygeai/tests/integration/lab/tools/test_set_parameter.py,sha256=NqLVMlOF4QiTcc2HTdVaJuWCrEvb5QkOX_xScyjyWGU,4025
305
- pygeai/tests/integration/lab/tools/test_update_tool.py,sha256=YenjdJLaMMimVHGQnbDtUAzBFJ9xuu9KGz1e_I13Rtw,11712
323
+ pygeai/tests/integration/lab/tools/test_create_tool.py,sha256=9gYn8-G2TH3srZSdJ1Px65FQqXNDFp3aHrrYfxA5_8Q,12253
324
+ pygeai/tests/integration/lab/tools/test_delete_tool.py,sha256=kRkb2jKlO3k3GmlUdzA5mY8W_x6eUsr6x22p1rFKWUU,2871
325
+ pygeai/tests/integration/lab/tools/test_get_parameter.py,sha256=-S_hQdtKI24c5_t2NwjpWK7KAxByx4cepfVD_kMJd_s,3598
326
+ pygeai/tests/integration/lab/tools/test_get_tool.py,sha256=tC9zOqG0k7o1KuWOQJDzCrU4CeJSfwk1h7krVYsydeo,3449
327
+ pygeai/tests/integration/lab/tools/test_list_tools.py,sha256=sUldh_DInUyUHZq8FZHvt5zaIadUSS1vl7N9aTCnYLg,3732
328
+ pygeai/tests/integration/lab/tools/test_publish_tool_revision.py,sha256=_f16aFxinGibEX7tqA2RlhMwyCEeiLMYLwhMZujOxUw,4577
329
+ pygeai/tests/integration/lab/tools/test_set_parameter.py,sha256=Qqs3kkvZvNhU35hcxSge7oiAVK_7e4YWwC25o9QmBuE,4013
330
+ pygeai/tests/integration/lab/tools/test_update_tool.py,sha256=rEKd06kDVYW_JJeNT08O90U3SaF1FV7tuLYh2Lw8KG0,11700
306
331
  pygeai/tests/lab/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
307
- pygeai/tests/lab/test_managers.py,sha256=AsOAvyCkRpbskEy214aV2TwrqilWH6bxOiTWDOb1twQ,29778
332
+ pygeai/tests/lab/test_managers.py,sha256=ZjUGS9rk9NiGwamacaSRgEWmMIfJ8BecgAfXZtszm_g,29514
308
333
  pygeai/tests/lab/test_mappers.py,sha256=2cLSggf168XWFpeZeBR7uJ-8C32TKb7qA91i_9fr_b0,11409
309
- pygeai/tests/lab/test_models.py,sha256=MyOPqPb18w0yQj8tEf1zLhY_qBsRy_Cm5kYArB0I8es,54325
334
+ pygeai/tests/lab/test_models.py,sha256=yozezeaJ6g4GDFPZoI5ixiSqENvJ7zdAM8tuu3xq1_s,54340
310
335
  pygeai/tests/lab/agents/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
311
- pygeai/tests/lab/agents/test_clients.py,sha256=XnnJH5l14qBo3suHCkHFKApKGMboMvlkgV1UX422QYQ,22080
336
+ pygeai/tests/lab/agents/test_clients.py,sha256=cBtfBPkgbPm0MyN1rZdieGnMWkvHoJYekgw851PUTXc,21337
312
337
  pygeai/tests/lab/agents/test_mappers.py,sha256=Ilkgc6w-VzFb_Hs6_K7HUf5IJ0NZ2-eutrHeDdbHVLk,13560
313
338
  pygeai/tests/lab/processes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
314
- pygeai/tests/lab/processes/test_clients.py,sha256=bEtu2jr0ZaoQaDy4UR8Gc-V6SbY8HqEARDxEGDI6iJE,61590
315
- pygeai/tests/lab/processes/test_mappers.py,sha256=sjPZKKnaTWndsBZBUYumJZxvFuRL2lacFIqWohexuaw,42125
339
+ pygeai/tests/lab/processes/test_clients.py,sha256=JrzTFpU08oJGWge7m3xxsImDThPNezAr6elMEaa-EO0,58345
340
+ pygeai/tests/lab/processes/test_mappers.py,sha256=JoI41IWXjHABNsdpVYiyRElx_G3NNuC6nwIdpgbuiPc,39774
316
341
  pygeai/tests/lab/spec/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
317
342
  pygeai/tests/lab/spec/test_loader.py,sha256=Yhyy0zHxH6F1TeFSbop6YgRFwKjRkjFRdzM8aSaAkKk,2414
318
343
  pygeai/tests/lab/spec/test_parsers.py,sha256=C0sAqgpVu1CqivQ2VWdqusIaeg8f25Vb9uBbFZO1Sfg,7744
319
344
  pygeai/tests/lab/strategies/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
320
- pygeai/tests/lab/strategies/test_clients.py,sha256=K-fHQg5Q8gaLr7vzI77mceXe2M1Y2Wz1T8agxEnZoYg,10588
345
+ pygeai/tests/lab/strategies/test_clients.py,sha256=-pXRlovlOR3ne5Xo6VGTQvGCpiMwpwzysWsiWHC1kIo,10157
321
346
  pygeai/tests/lab/strategies/test_mappers.py,sha256=gm0G2W-YAuvjn6qFa1O0nkkgTLSA1eIJAt9qE_I7BFU,5783
322
347
  pygeai/tests/lab/tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
323
- pygeai/tests/lab/tools/test_clients.py,sha256=zxdbdZ1ybpSAQS3yMWWwY1pQmvJUSAl2HRjNq2Ufokg,23867
348
+ pygeai/tests/lab/tools/test_clients.py,sha256=dYhT4wbz-IVYZ5BNj5qSUmtnJ-gKfL6UdYkdxtYcIWE,22672
324
349
  pygeai/tests/lab/tools/test_mappers.py,sha256=_wA40iFvSze5-ddJ8WhjF0-IKNE5lwIFTTviVRxy-Wc,7803
325
350
  pygeai/tests/migration/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
326
- pygeai/tests/migration/test_strategies.py,sha256=oxgfNRDvc2hnQ--v3eC5NO5moY_kABbnnCpCiCXkSYU,26766
351
+ pygeai/tests/migration/test_strategies.py,sha256=Mj7ICxTp35U4hKXZvhbmyfGdvueQDVIKqgLNcmwh8Pk,26246
327
352
  pygeai/tests/migration/test_tools.py,sha256=3hIgeHr-qxw9M23Xi_iqI7jrz-ISMI3IrGdZwerE8ic,1174
328
353
  pygeai/tests/organization/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
329
354
  pygeai/tests/organization/test_clients.py,sha256=nipjF1aQP3gHBF3WvgSUxgkeTMGG8_2zb0VjQrU8KW4,13695
330
355
  pygeai/tests/organization/test_managers.py,sha256=7-ct1iJCFrCRNO0ws_Fh5w_XKL7IN30jL0Y8e9yY5To,12730
331
- pygeai/tests/organization/test_mappers.py,sha256=jlYax9BkIGebuzwQ8lp41s5tVOLRrx6GBj9CXj2R3QI,6348
356
+ pygeai/tests/organization/test_mappers.py,sha256=8suyujRxxiR2ymk_4kTz6y3NCP293NUvRW2iUu7_6Yk,6609
357
+ pygeai/tests/organization/test_responses.py,sha256=3PNNPgTgH4JF-wgW8iKfN4__q33HpWvaDi-SvRDphKQ,4578
332
358
  pygeai/tests/organization/limits/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
333
359
  pygeai/tests/organization/limits/test_clients.py,sha256=5Qh4sidVRAE6Viji-d3PSfXoegabP5o5x0tOkD6w-WY,27554
334
360
  pygeai/tests/organization/limits/test_managers.py,sha256=XPwWxT3l7x--_F9CwZhKsoVQe4Y6a7lDBU494HQc0IY,20445
@@ -511,9 +537,9 @@ pygeai/vendor/a2a/utils/helpers.py,sha256=6Tbd8SVfXvdNEk6WYmLOjrAxkzFf1aIg8dkFfB
511
537
  pygeai/vendor/a2a/utils/message.py,sha256=gc_EKO69CJ4HkR76IFgsy-kENJz1dn7CfSgWJWvt-gs,2197
512
538
  pygeai/vendor/a2a/utils/task.py,sha256=BYRA_L1HpoUGJAVlyHML0lCM9Awhf2Ovjj7oPFXKbh0,1647
513
539
  pygeai/vendor/a2a/utils/telemetry.py,sha256=VvSp1Ztqaobkmq9-3sNhhPEilJS32-JTSfKzegkj6FU,10861
514
- pygeai-0.5.0.dist-info/licenses/LICENSE,sha256=eHfqo7-AWS8cMq0cg03lq7owsLeCmZA-xS5L0kuHnl8,1474
515
- pygeai-0.5.0.dist-info/METADATA,sha256=rXUkkMjrF0Ix5l1Hopo4I0eaChqi1FNQyKVnYmlAeys,7975
516
- pygeai-0.5.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
517
- pygeai-0.5.0.dist-info/entry_points.txt,sha256=OAmwuXVCQBTCE3HeVegVd37hbhCcp9TPahvdrCuMYWw,178
518
- pygeai-0.5.0.dist-info/top_level.txt,sha256=bJFwp2tURmCfB94yXDF7ylvdSJXFDDJsyUOb-7PJgwc,7
519
- pygeai-0.5.0.dist-info/RECORD,,
540
+ pygeai-0.6.0b3.dist-info/licenses/LICENSE,sha256=eHfqo7-AWS8cMq0cg03lq7owsLeCmZA-xS5L0kuHnl8,1474
541
+ pygeai-0.6.0b3.dist-info/METADATA,sha256=QA3RKfpdxgcSs6AoWXw3ZIBwiwbsRknthn-7WdjDyP4,7977
542
+ pygeai-0.6.0b3.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
543
+ pygeai-0.6.0b3.dist-info/entry_points.txt,sha256=OAmwuXVCQBTCE3HeVegVd37hbhCcp9TPahvdrCuMYWw,178
544
+ pygeai-0.6.0b3.dist-info/top_level.txt,sha256=bJFwp2tURmCfB94yXDF7ylvdSJXFDDJsyUOb-7PJgwc,7
545
+ pygeai-0.6.0b3.dist-info/RECORD,,