pygeai 0.6.0b11__py3-none-any.whl → 0.6.0b13__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.
- pygeai/_docs/source/content/ai_lab/cli.rst +4 -4
- pygeai/_docs/source/content/ai_lab/models.rst +169 -35
- pygeai/_docs/source/content/ai_lab/runner.rst +2 -2
- pygeai/_docs/source/content/ai_lab/spec.rst +9 -9
- pygeai/_docs/source/content/ai_lab/usage.rst +34 -34
- pygeai/_docs/source/content/ai_lab.rst +1 -1
- pygeai/_docs/source/content/analytics.rst +598 -0
- pygeai/_docs/source/content/api_reference/chat.rst +428 -2
- pygeai/_docs/source/content/api_reference/embeddings.rst +1 -1
- pygeai/_docs/source/content/api_reference/project.rst +184 -0
- pygeai/_docs/source/content/api_reference/rag.rst +2 -2
- pygeai/_docs/source/content/authentication.rst +295 -0
- pygeai/_docs/source/content/cli.rst +79 -2
- pygeai/_docs/source/content/debugger.rst +1 -1
- pygeai/_docs/source/content/migration.rst +19 -2
- pygeai/_docs/source/index.rst +2 -0
- pygeai/_docs/source/pygeai.analytics.rst +53 -0
- pygeai/_docs/source/pygeai.cli.commands.rst +8 -0
- pygeai/_docs/source/pygeai.rst +1 -0
- pygeai/_docs/source/pygeai.tests.analytics.rst +45 -0
- pygeai/_docs/source/pygeai.tests.auth.rst +8 -0
- pygeai/_docs/source/pygeai.tests.rst +1 -1
- pygeai/analytics/__init__.py +0 -0
- pygeai/analytics/clients.py +505 -0
- pygeai/analytics/endpoints.py +35 -0
- pygeai/analytics/managers.py +606 -0
- pygeai/analytics/mappers.py +207 -0
- pygeai/analytics/responses.py +240 -0
- pygeai/assistant/managers.py +1 -1
- pygeai/chat/managers.py +1 -1
- pygeai/cli/commands/analytics.py +525 -0
- pygeai/cli/commands/base.py +16 -0
- pygeai/cli/commands/common.py +28 -24
- pygeai/cli/commands/migrate.py +75 -6
- pygeai/cli/commands/organization.py +265 -0
- pygeai/cli/commands/validators.py +144 -1
- pygeai/cli/error_handler.py +41 -6
- pygeai/cli/geai.py +106 -18
- pygeai/cli/parsers.py +75 -31
- pygeai/cli/texts/help.py +75 -6
- pygeai/core/base/clients.py +18 -4
- pygeai/core/base/session.py +59 -7
- pygeai/core/common/config.py +25 -2
- pygeai/core/common/exceptions.py +64 -1
- pygeai/core/embeddings/managers.py +1 -1
- pygeai/core/files/managers.py +1 -1
- pygeai/core/rerank/managers.py +1 -1
- pygeai/core/services/rest.py +20 -2
- pygeai/evaluation/clients.py +5 -3
- pygeai/lab/agents/clients.py +3 -3
- pygeai/lab/agents/endpoints.py +2 -2
- pygeai/lab/agents/mappers.py +50 -2
- pygeai/lab/clients.py +5 -2
- pygeai/lab/managers.py +8 -10
- pygeai/lab/models.py +70 -2
- pygeai/lab/tools/clients.py +1 -59
- pygeai/migration/__init__.py +3 -1
- pygeai/migration/strategies.py +72 -3
- pygeai/organization/clients.py +110 -1
- pygeai/organization/endpoints.py +11 -7
- pygeai/organization/limits/managers.py +1 -1
- pygeai/organization/managers.py +135 -3
- pygeai/organization/mappers.py +28 -2
- pygeai/organization/responses.py +11 -1
- pygeai/tests/analytics/__init__.py +0 -0
- pygeai/tests/analytics/test_clients.py +86 -0
- pygeai/tests/analytics/test_managers.py +94 -0
- pygeai/tests/analytics/test_mappers.py +84 -0
- pygeai/tests/analytics/test_responses.py +73 -0
- pygeai/tests/auth/test_oauth.py +172 -0
- pygeai/tests/cli/commands/test_migrate.py +14 -1
- pygeai/tests/cli/commands/test_organization.py +69 -1
- pygeai/tests/cli/test_error_handler.py +4 -4
- pygeai/tests/cli/test_geai_driver.py +1 -1
- pygeai/tests/lab/agents/test_mappers.py +128 -1
- pygeai/tests/lab/test_models.py +2 -0
- pygeai/tests/lab/tools/test_clients.py +2 -31
- pygeai/tests/organization/test_clients.py +180 -1
- pygeai/tests/organization/test_managers.py +40 -0
- pygeai/tests/snippets/analytics/__init__.py +0 -0
- pygeai/tests/snippets/analytics/get_agent_usage_per_user.py +16 -0
- pygeai/tests/snippets/analytics/get_agents_created_and_modified.py +11 -0
- pygeai/tests/snippets/analytics/get_average_cost_per_request.py +10 -0
- pygeai/tests/snippets/analytics/get_overall_error_rate.py +10 -0
- pygeai/tests/snippets/analytics/get_top_10_agents_by_requests.py +12 -0
- pygeai/tests/snippets/analytics/get_total_active_users.py +10 -0
- pygeai/tests/snippets/analytics/get_total_cost.py +10 -0
- pygeai/tests/snippets/analytics/get_total_requests_per_day.py +12 -0
- pygeai/tests/snippets/analytics/get_total_tokens.py +12 -0
- pygeai/tests/snippets/chat/get_response_complete_example.py +67 -0
- pygeai/tests/snippets/chat/get_response_with_instructions.py +19 -0
- pygeai/tests/snippets/chat/get_response_with_metadata.py +24 -0
- pygeai/tests/snippets/chat/get_response_with_parallel_tools.py +58 -0
- pygeai/tests/snippets/chat/get_response_with_reasoning.py +21 -0
- pygeai/tests/snippets/chat/get_response_with_store.py +38 -0
- pygeai/tests/snippets/chat/get_response_with_truncation.py +24 -0
- pygeai/tests/snippets/lab/agents/create_agent_with_permissions.py +39 -0
- pygeai/tests/snippets/lab/agents/create_agent_with_properties.py +46 -0
- pygeai/tests/snippets/lab/agents/get_agent_with_new_fields.py +62 -0
- pygeai/tests/snippets/lab/agents/update_agent_properties.py +50 -0
- pygeai/tests/snippets/organization/add_project_member.py +10 -0
- pygeai/tests/snippets/organization/add_project_member_batch.py +44 -0
- {pygeai-0.6.0b11.dist-info → pygeai-0.6.0b13.dist-info}/METADATA +1 -1
- {pygeai-0.6.0b11.dist-info → pygeai-0.6.0b13.dist-info}/RECORD +108 -98
- pygeai/_docs/source/pygeai.tests.snippets.assistants.data_analyst.rst +0 -37
- pygeai/_docs/source/pygeai.tests.snippets.assistants.rag.rst +0 -85
- pygeai/_docs/source/pygeai.tests.snippets.assistants.rst +0 -78
- pygeai/_docs/source/pygeai.tests.snippets.auth.rst +0 -10
- pygeai/_docs/source/pygeai.tests.snippets.chat.rst +0 -125
- pygeai/_docs/source/pygeai.tests.snippets.dbg.rst +0 -45
- pygeai/_docs/source/pygeai.tests.snippets.embeddings.rst +0 -61
- pygeai/_docs/source/pygeai.tests.snippets.evaluation.dataset.rst +0 -197
- pygeai/_docs/source/pygeai.tests.snippets.evaluation.plan.rst +0 -133
- pygeai/_docs/source/pygeai.tests.snippets.evaluation.result.rst +0 -37
- pygeai/_docs/source/pygeai.tests.snippets.evaluation.rst +0 -20
- pygeai/_docs/source/pygeai.tests.snippets.extras.rst +0 -37
- pygeai/_docs/source/pygeai.tests.snippets.files.rst +0 -53
- pygeai/_docs/source/pygeai.tests.snippets.gam.rst +0 -21
- pygeai/_docs/source/pygeai.tests.snippets.lab.agents.rst +0 -93
- pygeai/_docs/source/pygeai.tests.snippets.lab.processes.jobs.rst +0 -21
- pygeai/_docs/source/pygeai.tests.snippets.lab.processes.kbs.rst +0 -45
- pygeai/_docs/source/pygeai.tests.snippets.lab.processes.rst +0 -46
- pygeai/_docs/source/pygeai.tests.snippets.lab.rst +0 -82
- pygeai/_docs/source/pygeai.tests.snippets.lab.samples.rst +0 -21
- pygeai/_docs/source/pygeai.tests.snippets.lab.strategies.rst +0 -45
- pygeai/_docs/source/pygeai.tests.snippets.lab.tools.rst +0 -85
- pygeai/_docs/source/pygeai.tests.snippets.lab.use_cases.rst +0 -117
- pygeai/_docs/source/pygeai.tests.snippets.migrate.rst +0 -10
- pygeai/_docs/source/pygeai.tests.snippets.organization.rst +0 -109
- pygeai/_docs/source/pygeai.tests.snippets.rag.rst +0 -85
- pygeai/_docs/source/pygeai.tests.snippets.rerank.rst +0 -21
- pygeai/_docs/source/pygeai.tests.snippets.rst +0 -32
- pygeai/_docs/source/pygeai.tests.snippets.secrets.rst +0 -10
- pygeai/_docs/source/pygeai.tests.snippets.usage_limit.rst +0 -77
- {pygeai-0.6.0b11.dist-info → pygeai-0.6.0b13.dist-info}/WHEEL +0 -0
- {pygeai-0.6.0b11.dist-info → pygeai-0.6.0b13.dist-info}/entry_points.txt +0 -0
- {pygeai-0.6.0b11.dist-info → pygeai-0.6.0b13.dist-info}/licenses/LICENSE +0 -0
- {pygeai-0.6.0b11.dist-info → pygeai-0.6.0b13.dist-info}/top_level.txt +0 -0
|
@@ -1,109 +0,0 @@
|
|
|
1
|
-
pygeai.tests.snippets.organization package
|
|
2
|
-
==========================================
|
|
3
|
-
|
|
4
|
-
Submodules
|
|
5
|
-
----------
|
|
6
|
-
|
|
7
|
-
pygeai.tests.snippets.organization.create\_project module
|
|
8
|
-
---------------------------------------------------------
|
|
9
|
-
|
|
10
|
-
.. automodule:: pygeai.tests.snippets.organization.create_project
|
|
11
|
-
:members:
|
|
12
|
-
:show-inheritance:
|
|
13
|
-
:undoc-members:
|
|
14
|
-
|
|
15
|
-
pygeai.tests.snippets.organization.delete\_project module
|
|
16
|
-
---------------------------------------------------------
|
|
17
|
-
|
|
18
|
-
.. automodule:: pygeai.tests.snippets.organization.delete_project
|
|
19
|
-
:members:
|
|
20
|
-
:show-inheritance:
|
|
21
|
-
:undoc-members:
|
|
22
|
-
|
|
23
|
-
pygeai.tests.snippets.organization.export\_request\_data module
|
|
24
|
-
---------------------------------------------------------------
|
|
25
|
-
|
|
26
|
-
.. automodule:: pygeai.tests.snippets.organization.export_request_data
|
|
27
|
-
:members:
|
|
28
|
-
:show-inheritance:
|
|
29
|
-
:undoc-members:
|
|
30
|
-
|
|
31
|
-
pygeai.tests.snippets.organization.get\_memberships module
|
|
32
|
-
----------------------------------------------------------
|
|
33
|
-
|
|
34
|
-
.. automodule:: pygeai.tests.snippets.organization.get_memberships
|
|
35
|
-
:members:
|
|
36
|
-
:show-inheritance:
|
|
37
|
-
:undoc-members:
|
|
38
|
-
|
|
39
|
-
pygeai.tests.snippets.organization.get\_organization\_members module
|
|
40
|
-
--------------------------------------------------------------------
|
|
41
|
-
|
|
42
|
-
.. automodule:: pygeai.tests.snippets.organization.get_organization_members
|
|
43
|
-
:members:
|
|
44
|
-
:show-inheritance:
|
|
45
|
-
:undoc-members:
|
|
46
|
-
|
|
47
|
-
pygeai.tests.snippets.organization.get\_project\_data module
|
|
48
|
-
------------------------------------------------------------
|
|
49
|
-
|
|
50
|
-
.. automodule:: pygeai.tests.snippets.organization.get_project_data
|
|
51
|
-
:members:
|
|
52
|
-
:show-inheritance:
|
|
53
|
-
:undoc-members:
|
|
54
|
-
|
|
55
|
-
pygeai.tests.snippets.organization.get\_project\_list module
|
|
56
|
-
------------------------------------------------------------
|
|
57
|
-
|
|
58
|
-
.. automodule:: pygeai.tests.snippets.organization.get_project_list
|
|
59
|
-
:members:
|
|
60
|
-
:show-inheritance:
|
|
61
|
-
:undoc-members:
|
|
62
|
-
|
|
63
|
-
pygeai.tests.snippets.organization.get\_project\_members module
|
|
64
|
-
---------------------------------------------------------------
|
|
65
|
-
|
|
66
|
-
.. automodule:: pygeai.tests.snippets.organization.get_project_members
|
|
67
|
-
:members:
|
|
68
|
-
:show-inheritance:
|
|
69
|
-
:undoc-members:
|
|
70
|
-
|
|
71
|
-
pygeai.tests.snippets.organization.get\_project\_memberships module
|
|
72
|
-
-------------------------------------------------------------------
|
|
73
|
-
|
|
74
|
-
.. automodule:: pygeai.tests.snippets.organization.get_project_memberships
|
|
75
|
-
:members:
|
|
76
|
-
:show-inheritance:
|
|
77
|
-
:undoc-members:
|
|
78
|
-
|
|
79
|
-
pygeai.tests.snippets.organization.get\_project\_roles module
|
|
80
|
-
-------------------------------------------------------------
|
|
81
|
-
|
|
82
|
-
.. automodule:: pygeai.tests.snippets.organization.get_project_roles
|
|
83
|
-
:members:
|
|
84
|
-
:show-inheritance:
|
|
85
|
-
:undoc-members:
|
|
86
|
-
|
|
87
|
-
pygeai.tests.snippets.organization.get\_project\_tokens module
|
|
88
|
-
--------------------------------------------------------------
|
|
89
|
-
|
|
90
|
-
.. automodule:: pygeai.tests.snippets.organization.get_project_tokens
|
|
91
|
-
:members:
|
|
92
|
-
:show-inheritance:
|
|
93
|
-
:undoc-members:
|
|
94
|
-
|
|
95
|
-
pygeai.tests.snippets.organization.update\_project module
|
|
96
|
-
---------------------------------------------------------
|
|
97
|
-
|
|
98
|
-
.. automodule:: pygeai.tests.snippets.organization.update_project
|
|
99
|
-
:members:
|
|
100
|
-
:show-inheritance:
|
|
101
|
-
:undoc-members:
|
|
102
|
-
|
|
103
|
-
Module contents
|
|
104
|
-
---------------
|
|
105
|
-
|
|
106
|
-
.. automodule:: pygeai.tests.snippets.organization
|
|
107
|
-
:members:
|
|
108
|
-
:show-inheritance:
|
|
109
|
-
:undoc-members:
|
|
@@ -1,85 +0,0 @@
|
|
|
1
|
-
pygeai.tests.snippets.rag package
|
|
2
|
-
=================================
|
|
3
|
-
|
|
4
|
-
Submodules
|
|
5
|
-
----------
|
|
6
|
-
|
|
7
|
-
pygeai.tests.snippets.rag.create\_rag\_assistant module
|
|
8
|
-
-------------------------------------------------------
|
|
9
|
-
|
|
10
|
-
.. automodule:: pygeai.tests.snippets.rag.create_rag_assistant
|
|
11
|
-
:members:
|
|
12
|
-
:show-inheritance:
|
|
13
|
-
:undoc-members:
|
|
14
|
-
|
|
15
|
-
pygeai.tests.snippets.rag.delete\_al\_documents module
|
|
16
|
-
------------------------------------------------------
|
|
17
|
-
|
|
18
|
-
.. automodule:: pygeai.tests.snippets.rag.delete_al_documents
|
|
19
|
-
:members:
|
|
20
|
-
:show-inheritance:
|
|
21
|
-
:undoc-members:
|
|
22
|
-
|
|
23
|
-
pygeai.tests.snippets.rag.delete\_document module
|
|
24
|
-
-------------------------------------------------
|
|
25
|
-
|
|
26
|
-
.. automodule:: pygeai.tests.snippets.rag.delete_document
|
|
27
|
-
:members:
|
|
28
|
-
:show-inheritance:
|
|
29
|
-
:undoc-members:
|
|
30
|
-
|
|
31
|
-
pygeai.tests.snippets.rag.delete\_rag\_assistant module
|
|
32
|
-
-------------------------------------------------------
|
|
33
|
-
|
|
34
|
-
.. automodule:: pygeai.tests.snippets.rag.delete_rag_assistant
|
|
35
|
-
:members:
|
|
36
|
-
:show-inheritance:
|
|
37
|
-
:undoc-members:
|
|
38
|
-
|
|
39
|
-
pygeai.tests.snippets.rag.get\_document module
|
|
40
|
-
----------------------------------------------
|
|
41
|
-
|
|
42
|
-
.. automodule:: pygeai.tests.snippets.rag.get_document
|
|
43
|
-
:members:
|
|
44
|
-
:show-inheritance:
|
|
45
|
-
:undoc-members:
|
|
46
|
-
|
|
47
|
-
pygeai.tests.snippets.rag.get\_documents module
|
|
48
|
-
-----------------------------------------------
|
|
49
|
-
|
|
50
|
-
.. automodule:: pygeai.tests.snippets.rag.get_documents
|
|
51
|
-
:members:
|
|
52
|
-
:show-inheritance:
|
|
53
|
-
:undoc-members:
|
|
54
|
-
|
|
55
|
-
pygeai.tests.snippets.rag.get\_rag\_assistant\_data module
|
|
56
|
-
----------------------------------------------------------
|
|
57
|
-
|
|
58
|
-
.. automodule:: pygeai.tests.snippets.rag.get_rag_assistant_data
|
|
59
|
-
:members:
|
|
60
|
-
:show-inheritance:
|
|
61
|
-
:undoc-members:
|
|
62
|
-
|
|
63
|
-
pygeai.tests.snippets.rag.update\_rag\_assistant module
|
|
64
|
-
-------------------------------------------------------
|
|
65
|
-
|
|
66
|
-
.. automodule:: pygeai.tests.snippets.rag.update_rag_assistant
|
|
67
|
-
:members:
|
|
68
|
-
:show-inheritance:
|
|
69
|
-
:undoc-members:
|
|
70
|
-
|
|
71
|
-
pygeai.tests.snippets.rag.upload\_document module
|
|
72
|
-
-------------------------------------------------
|
|
73
|
-
|
|
74
|
-
.. automodule:: pygeai.tests.snippets.rag.upload_document
|
|
75
|
-
:members:
|
|
76
|
-
:show-inheritance:
|
|
77
|
-
:undoc-members:
|
|
78
|
-
|
|
79
|
-
Module contents
|
|
80
|
-
---------------
|
|
81
|
-
|
|
82
|
-
.. automodule:: pygeai.tests.snippets.rag
|
|
83
|
-
:members:
|
|
84
|
-
:show-inheritance:
|
|
85
|
-
:undoc-members:
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
pygeai.tests.snippets.rerank package
|
|
2
|
-
====================================
|
|
3
|
-
|
|
4
|
-
Submodules
|
|
5
|
-
----------
|
|
6
|
-
|
|
7
|
-
pygeai.tests.snippets.rerank.rerank\_chunks module
|
|
8
|
-
--------------------------------------------------
|
|
9
|
-
|
|
10
|
-
.. automodule:: pygeai.tests.snippets.rerank.rerank_chunks
|
|
11
|
-
:members:
|
|
12
|
-
:show-inheritance:
|
|
13
|
-
:undoc-members:
|
|
14
|
-
|
|
15
|
-
Module contents
|
|
16
|
-
---------------
|
|
17
|
-
|
|
18
|
-
.. automodule:: pygeai.tests.snippets.rerank
|
|
19
|
-
:members:
|
|
20
|
-
:show-inheritance:
|
|
21
|
-
:undoc-members:
|
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
pygeai.tests.snippets package
|
|
2
|
-
=============================
|
|
3
|
-
|
|
4
|
-
Subpackages
|
|
5
|
-
-----------
|
|
6
|
-
|
|
7
|
-
.. toctree::
|
|
8
|
-
:maxdepth: 4
|
|
9
|
-
|
|
10
|
-
pygeai.tests.snippets.assistants
|
|
11
|
-
pygeai.tests.snippets.auth
|
|
12
|
-
pygeai.tests.snippets.chat
|
|
13
|
-
pygeai.tests.snippets.dbg
|
|
14
|
-
pygeai.tests.snippets.embeddings
|
|
15
|
-
pygeai.tests.snippets.evaluation
|
|
16
|
-
pygeai.tests.snippets.extras
|
|
17
|
-
pygeai.tests.snippets.files
|
|
18
|
-
pygeai.tests.snippets.gam
|
|
19
|
-
pygeai.tests.snippets.lab
|
|
20
|
-
pygeai.tests.snippets.migrate
|
|
21
|
-
pygeai.tests.snippets.organization
|
|
22
|
-
pygeai.tests.snippets.rerank
|
|
23
|
-
pygeai.tests.snippets.secrets
|
|
24
|
-
pygeai.tests.snippets.usage_limit
|
|
25
|
-
|
|
26
|
-
Module contents
|
|
27
|
-
---------------
|
|
28
|
-
|
|
29
|
-
.. automodule:: pygeai.tests.snippets
|
|
30
|
-
:members:
|
|
31
|
-
:show-inheritance:
|
|
32
|
-
:undoc-members:
|
|
@@ -1,77 +0,0 @@
|
|
|
1
|
-
pygeai.tests.snippets.usage\_limit package
|
|
2
|
-
==========================================
|
|
3
|
-
|
|
4
|
-
Submodules
|
|
5
|
-
----------
|
|
6
|
-
|
|
7
|
-
pygeai.tests.snippets.usage\_limit.delete\_usage\_limit module
|
|
8
|
-
--------------------------------------------------------------
|
|
9
|
-
|
|
10
|
-
.. automodule:: pygeai.tests.snippets.usage_limit.delete_usage_limit
|
|
11
|
-
:members:
|
|
12
|
-
:show-inheritance:
|
|
13
|
-
:undoc-members:
|
|
14
|
-
|
|
15
|
-
pygeai.tests.snippets.usage\_limit.get\_all\_usage\_limit\_from\_organization module
|
|
16
|
-
------------------------------------------------------------------------------------
|
|
17
|
-
|
|
18
|
-
.. automodule:: pygeai.tests.snippets.usage_limit.get_all_usage_limit_from_organization
|
|
19
|
-
:members:
|
|
20
|
-
:show-inheritance:
|
|
21
|
-
:undoc-members:
|
|
22
|
-
|
|
23
|
-
pygeai.tests.snippets.usage\_limit.get\_usage\_limit\_from\_organization module
|
|
24
|
-
-------------------------------------------------------------------------------
|
|
25
|
-
|
|
26
|
-
.. automodule:: pygeai.tests.snippets.usage_limit.get_usage_limit_from_organization
|
|
27
|
-
:members:
|
|
28
|
-
:show-inheritance:
|
|
29
|
-
:undoc-members:
|
|
30
|
-
|
|
31
|
-
pygeai.tests.snippets.usage\_limit.get\_usage\_limit\_from\_project module
|
|
32
|
-
--------------------------------------------------------------------------
|
|
33
|
-
|
|
34
|
-
.. automodule:: pygeai.tests.snippets.usage_limit.get_usage_limit_from_project
|
|
35
|
-
:members:
|
|
36
|
-
:show-inheritance:
|
|
37
|
-
:undoc-members:
|
|
38
|
-
|
|
39
|
-
pygeai.tests.snippets.usage\_limit.set\_usage\_limit\_organization module
|
|
40
|
-
-------------------------------------------------------------------------
|
|
41
|
-
|
|
42
|
-
.. automodule:: pygeai.tests.snippets.usage_limit.set_usage_limit_organization
|
|
43
|
-
:members:
|
|
44
|
-
:show-inheritance:
|
|
45
|
-
:undoc-members:
|
|
46
|
-
|
|
47
|
-
pygeai.tests.snippets.usage\_limit.set\_usage\_limit\_project module
|
|
48
|
-
--------------------------------------------------------------------
|
|
49
|
-
|
|
50
|
-
.. automodule:: pygeai.tests.snippets.usage_limit.set_usage_limit_project
|
|
51
|
-
:members:
|
|
52
|
-
:show-inheritance:
|
|
53
|
-
:undoc-members:
|
|
54
|
-
|
|
55
|
-
pygeai.tests.snippets.usage\_limit.update\_usage\_limit\_organization module
|
|
56
|
-
----------------------------------------------------------------------------
|
|
57
|
-
|
|
58
|
-
.. automodule:: pygeai.tests.snippets.usage_limit.update_usage_limit_organization
|
|
59
|
-
:members:
|
|
60
|
-
:show-inheritance:
|
|
61
|
-
:undoc-members:
|
|
62
|
-
|
|
63
|
-
pygeai.tests.snippets.usage\_limit.update\_usage\_limit\_project module
|
|
64
|
-
-----------------------------------------------------------------------
|
|
65
|
-
|
|
66
|
-
.. automodule:: pygeai.tests.snippets.usage_limit.update_usage_limit_project
|
|
67
|
-
:members:
|
|
68
|
-
:show-inheritance:
|
|
69
|
-
:undoc-members:
|
|
70
|
-
|
|
71
|
-
Module contents
|
|
72
|
-
---------------
|
|
73
|
-
|
|
74
|
-
.. automodule:: pygeai.tests.snippets.usage_limit
|
|
75
|
-
:members:
|
|
76
|
-
:show-inheritance:
|
|
77
|
-
:undoc-members:
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|