pygeai 0.6.0b3__py3-none-any.whl → 0.6.0b6__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/Makefile +20 -0
- pygeai/_docs/make.bat +35 -0
- pygeai/_docs/source/conf.py +45 -0
- pygeai/_docs/source/content/ai_lab/cli.rst +747 -0
- pygeai/_docs/source/content/ai_lab/models.rst +1600 -0
- pygeai/_docs/source/content/ai_lab/runner.rst +253 -0
- pygeai/_docs/source/content/ai_lab/spec.rst +431 -0
- pygeai/_docs/source/content/ai_lab/usage.rst +1011 -0
- pygeai/_docs/source/content/ai_lab.rst +102 -0
- pygeai/_docs/source/content/api_reference/chat.rst +328 -0
- pygeai/_docs/source/content/api_reference/embeddings.rst +124 -0
- pygeai/_docs/source/content/api_reference/project.rst +552 -0
- pygeai/_docs/source/content/api_reference/rag.rst +710 -0
- pygeai/_docs/source/content/api_reference.rst +46 -0
- pygeai/_docs/source/content/chat_gui.rst +121 -0
- pygeai/_docs/source/content/cli.rst +126 -0
- pygeai/_docs/source/content/debugger.rst +188 -0
- pygeai/_docs/source/content/intro.rst +67 -0
- pygeai/_docs/source/content/modules.rst +7 -0
- pygeai/_docs/source/content/quickstart.rst +143 -0
- pygeai/_docs/source/content/samples.rst +394 -0
- pygeai/_docs/source/index.rst +21 -0
- pygeai/_docs/source/modules.rst +7 -0
- pygeai/_docs/source/pygeai.admin.rst +29 -0
- pygeai/_docs/source/pygeai.assistant.data.rst +21 -0
- pygeai/_docs/source/pygeai.assistant.data_analyst.rst +29 -0
- pygeai/_docs/source/pygeai.assistant.rag.rst +53 -0
- pygeai/_docs/source/pygeai.assistant.rst +55 -0
- pygeai/_docs/source/pygeai.chat.rst +69 -0
- pygeai/_docs/source/pygeai.cli.commands.flows.rst +10 -0
- pygeai/_docs/source/pygeai.cli.commands.lab.rst +53 -0
- pygeai/_docs/source/pygeai.cli.commands.rst +198 -0
- pygeai/_docs/source/pygeai.cli.rst +54 -0
- pygeai/_docs/source/pygeai.cli.texts.rst +21 -0
- pygeai/_docs/source/pygeai.core.base.rst +53 -0
- pygeai/_docs/source/pygeai.core.common.rst +37 -0
- pygeai/_docs/source/pygeai.core.embeddings.rst +61 -0
- pygeai/_docs/source/pygeai.core.feedback.rst +37 -0
- pygeai/_docs/source/pygeai.core.files.rst +61 -0
- pygeai/_docs/source/pygeai.core.llm.rst +29 -0
- pygeai/_docs/source/pygeai.core.plugins.rst +37 -0
- pygeai/_docs/source/pygeai.core.rerank.rst +53 -0
- pygeai/_docs/source/pygeai.core.rst +63 -0
- pygeai/_docs/source/pygeai.core.secrets.rst +29 -0
- pygeai/_docs/source/pygeai.core.services.llm.rst +29 -0
- pygeai/_docs/source/pygeai.core.services.rst +37 -0
- pygeai/_docs/source/pygeai.core.utils.rst +21 -0
- pygeai/_docs/source/pygeai.dbg.rst +21 -0
- pygeai/_docs/source/pygeai.evaluation.dataset.rst +29 -0
- pygeai/_docs/source/pygeai.evaluation.plan.rst +29 -0
- pygeai/_docs/source/pygeai.evaluation.result.rst +29 -0
- pygeai/_docs/source/pygeai.evaluation.rst +31 -0
- pygeai/_docs/source/pygeai.flows.rst +29 -0
- pygeai/_docs/source/pygeai.gam.rst +29 -0
- pygeai/_docs/source/pygeai.health.rst +29 -0
- pygeai/_docs/source/pygeai.lab.agents.rst +37 -0
- pygeai/_docs/source/pygeai.lab.processes.rst +37 -0
- pygeai/_docs/source/pygeai.lab.rst +65 -0
- pygeai/_docs/source/pygeai.lab.spec.rst +29 -0
- pygeai/_docs/source/pygeai.lab.strategies.rst +37 -0
- pygeai/_docs/source/pygeai.lab.tools.rst +37 -0
- pygeai/_docs/source/pygeai.man.man1.rst +10 -0
- pygeai/_docs/source/pygeai.man.rst +18 -0
- pygeai/_docs/source/pygeai.migration.rst +29 -0
- pygeai/_docs/source/pygeai.organization.limits.rst +45 -0
- pygeai/_docs/source/pygeai.organization.rst +61 -0
- pygeai/_docs/source/pygeai.proxy.rst +53 -0
- pygeai/_docs/source/pygeai.rst +33 -0
- pygeai/_docs/source/pygeai.tests.admin.rst +21 -0
- pygeai/_docs/source/pygeai.tests.assistants.rag.rst +37 -0
- pygeai/_docs/source/pygeai.tests.assistants.rst +45 -0
- pygeai/_docs/source/pygeai.tests.chat.rst +45 -0
- pygeai/_docs/source/pygeai.tests.cli.commands.lab.rst +37 -0
- pygeai/_docs/source/pygeai.tests.cli.commands.rst +149 -0
- pygeai/_docs/source/pygeai.tests.cli.docker.rst +10 -0
- pygeai/_docs/source/pygeai.tests.cli.rst +30 -0
- pygeai/_docs/source/pygeai.tests.core.base.data.rst +29 -0
- pygeai/_docs/source/pygeai.tests.core.base.rst +37 -0
- pygeai/_docs/source/pygeai.tests.core.common.data.rst +10 -0
- pygeai/_docs/source/pygeai.tests.core.common.rst +37 -0
- pygeai/_docs/source/pygeai.tests.core.embeddings.rst +21 -0
- pygeai/_docs/source/pygeai.tests.core.feedback.rst +21 -0
- pygeai/_docs/source/pygeai.tests.core.files.rst +45 -0
- pygeai/_docs/source/pygeai.tests.core.llm.rst +21 -0
- pygeai/_docs/source/pygeai.tests.core.rerank.rst +37 -0
- pygeai/_docs/source/pygeai.tests.core.rst +38 -0
- pygeai/_docs/source/pygeai.tests.core.secrets.rst +21 -0
- pygeai/_docs/source/pygeai.tests.core.services.rst +21 -0
- pygeai/_docs/source/pygeai.tests.core.utils.rst +21 -0
- pygeai/_docs/source/pygeai.tests.dbg.rst +21 -0
- pygeai/_docs/source/pygeai.tests.gam.rst +21 -0
- pygeai/_docs/source/pygeai.tests.health.rst +21 -0
- pygeai/_docs/source/pygeai.tests.integration.assistants.rag.rst +21 -0
- pygeai/_docs/source/pygeai.tests.integration.assistants.rst +18 -0
- pygeai/_docs/source/pygeai.tests.integration.chat.rst +21 -0
- pygeai/_docs/source/pygeai.tests.integration.lab.agents.rst +69 -0
- pygeai/_docs/source/pygeai.tests.integration.lab.processes.rst +69 -0
- pygeai/_docs/source/pygeai.tests.integration.lab.reasoning_strategies.rst +37 -0
- pygeai/_docs/source/pygeai.tests.integration.lab.rst +21 -0
- pygeai/_docs/source/pygeai.tests.integration.lab.tools.rst +77 -0
- pygeai/_docs/source/pygeai.tests.integration.rst +20 -0
- pygeai/_docs/source/pygeai.tests.lab.agents.rst +29 -0
- pygeai/_docs/source/pygeai.tests.lab.processes.rst +29 -0
- pygeai/_docs/source/pygeai.tests.lab.rst +49 -0
- pygeai/_docs/source/pygeai.tests.lab.spec.rst +29 -0
- pygeai/_docs/source/pygeai.tests.lab.strategies.rst +29 -0
- pygeai/_docs/source/pygeai.tests.lab.tools.rst +29 -0
- pygeai/_docs/source/pygeai.tests.migration.rst +29 -0
- pygeai/_docs/source/pygeai.tests.organization.limits.rst +29 -0
- pygeai/_docs/source/pygeai.tests.organization.rst +45 -0
- pygeai/_docs/source/pygeai.tests.proxy.rst +61 -0
- pygeai/_docs/source/pygeai.tests.rst +31 -0
- pygeai/_docs/source/pygeai.tests.snippets.assistants.data_analyst.rst +37 -0
- pygeai/_docs/source/pygeai.tests.snippets.assistants.rag.rst +85 -0
- pygeai/_docs/source/pygeai.tests.snippets.assistants.rst +78 -0
- pygeai/_docs/source/pygeai.tests.snippets.chat.rst +85 -0
- pygeai/_docs/source/pygeai.tests.snippets.embeddings.rst +21 -0
- pygeai/_docs/source/pygeai.tests.snippets.evaluation.rst +10 -0
- pygeai/_docs/source/pygeai.tests.snippets.extras.rst +37 -0
- pygeai/_docs/source/pygeai.tests.snippets.files.rst +53 -0
- pygeai/_docs/source/pygeai.tests.snippets.gam.rst +21 -0
- pygeai/_docs/source/pygeai.tests.snippets.lab.agents.rst +93 -0
- pygeai/_docs/source/pygeai.tests.snippets.lab.processes.jobs.rst +21 -0
- pygeai/_docs/source/pygeai.tests.snippets.lab.processes.kbs.rst +45 -0
- pygeai/_docs/source/pygeai.tests.snippets.lab.processes.rst +46 -0
- pygeai/_docs/source/pygeai.tests.snippets.lab.rst +82 -0
- pygeai/_docs/source/pygeai.tests.snippets.lab.samples.rst +21 -0
- pygeai/_docs/source/pygeai.tests.snippets.lab.strategies.rst +45 -0
- pygeai/_docs/source/pygeai.tests.snippets.lab.tools.rst +85 -0
- pygeai/_docs/source/pygeai.tests.snippets.lab.use_cases.rst +117 -0
- pygeai/_docs/source/pygeai.tests.snippets.migrate.rst +10 -0
- pygeai/_docs/source/pygeai.tests.snippets.organization.rst +69 -0
- pygeai/_docs/source/pygeai.tests.snippets.rag.rst +85 -0
- pygeai/_docs/source/pygeai.tests.snippets.rerank.rst +21 -0
- pygeai/_docs/source/pygeai.tests.snippets.rst +30 -0
- pygeai/_docs/source/pygeai.tests.snippets.secrets.rst +10 -0
- pygeai/_docs/source/pygeai.tests.snippets.usage_limit.rst +77 -0
- pygeai/cli/commands/base.py +9 -9
- pygeai/cli/commands/docs.py +2 -2
- {pygeai-0.6.0b3.dist-info → pygeai-0.6.0b6.dist-info}/METADATA +1 -1
- {pygeai-0.6.0b3.dist-info → pygeai-0.6.0b6.dist-info}/RECORD +145 -8
- {pygeai-0.6.0b3.dist-info → pygeai-0.6.0b6.dist-info}/WHEEL +0 -0
- {pygeai-0.6.0b3.dist-info → pygeai-0.6.0b6.dist-info}/entry_points.txt +0 -0
- {pygeai-0.6.0b3.dist-info → pygeai-0.6.0b6.dist-info}/licenses/LICENSE +0 -0
- {pygeai-0.6.0b3.dist-info → pygeai-0.6.0b6.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
pygeai.tests.core.base.data package
|
|
2
|
+
===================================
|
|
3
|
+
|
|
4
|
+
Submodules
|
|
5
|
+
----------
|
|
6
|
+
|
|
7
|
+
pygeai.tests.core.base.data.mappers module
|
|
8
|
+
------------------------------------------
|
|
9
|
+
|
|
10
|
+
.. automodule:: pygeai.tests.core.base.data.mappers
|
|
11
|
+
:members:
|
|
12
|
+
:show-inheritance:
|
|
13
|
+
:undoc-members:
|
|
14
|
+
|
|
15
|
+
pygeai.tests.core.base.data.models module
|
|
16
|
+
-----------------------------------------
|
|
17
|
+
|
|
18
|
+
.. automodule:: pygeai.tests.core.base.data.models
|
|
19
|
+
:members:
|
|
20
|
+
:show-inheritance:
|
|
21
|
+
:undoc-members:
|
|
22
|
+
|
|
23
|
+
Module contents
|
|
24
|
+
---------------
|
|
25
|
+
|
|
26
|
+
.. automodule:: pygeai.tests.core.base.data
|
|
27
|
+
:members:
|
|
28
|
+
:show-inheritance:
|
|
29
|
+
:undoc-members:
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
pygeai.tests.core.base package
|
|
2
|
+
==============================
|
|
3
|
+
|
|
4
|
+
Subpackages
|
|
5
|
+
-----------
|
|
6
|
+
|
|
7
|
+
.. toctree::
|
|
8
|
+
:maxdepth: 4
|
|
9
|
+
|
|
10
|
+
pygeai.tests.core.base.data
|
|
11
|
+
|
|
12
|
+
Submodules
|
|
13
|
+
----------
|
|
14
|
+
|
|
15
|
+
pygeai.tests.core.base.test\_mappers module
|
|
16
|
+
-------------------------------------------
|
|
17
|
+
|
|
18
|
+
.. automodule:: pygeai.tests.core.base.test_mappers
|
|
19
|
+
:members:
|
|
20
|
+
:show-inheritance:
|
|
21
|
+
:undoc-members:
|
|
22
|
+
|
|
23
|
+
pygeai.tests.core.base.test\_models module
|
|
24
|
+
------------------------------------------
|
|
25
|
+
|
|
26
|
+
.. automodule:: pygeai.tests.core.base.test_models
|
|
27
|
+
:members:
|
|
28
|
+
:show-inheritance:
|
|
29
|
+
:undoc-members:
|
|
30
|
+
|
|
31
|
+
Module contents
|
|
32
|
+
---------------
|
|
33
|
+
|
|
34
|
+
.. automodule:: pygeai.tests.core.base
|
|
35
|
+
:members:
|
|
36
|
+
:show-inheritance:
|
|
37
|
+
:undoc-members:
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
pygeai.tests.core.common package
|
|
2
|
+
================================
|
|
3
|
+
|
|
4
|
+
Subpackages
|
|
5
|
+
-----------
|
|
6
|
+
|
|
7
|
+
.. toctree::
|
|
8
|
+
:maxdepth: 4
|
|
9
|
+
|
|
10
|
+
pygeai.tests.core.common.data
|
|
11
|
+
|
|
12
|
+
Submodules
|
|
13
|
+
----------
|
|
14
|
+
|
|
15
|
+
pygeai.tests.core.common.test\_config module
|
|
16
|
+
--------------------------------------------
|
|
17
|
+
|
|
18
|
+
.. automodule:: pygeai.tests.core.common.test_config
|
|
19
|
+
:members:
|
|
20
|
+
:show-inheritance:
|
|
21
|
+
:undoc-members:
|
|
22
|
+
|
|
23
|
+
pygeai.tests.core.common.test\_decorators module
|
|
24
|
+
------------------------------------------------
|
|
25
|
+
|
|
26
|
+
.. automodule:: pygeai.tests.core.common.test_decorators
|
|
27
|
+
:members:
|
|
28
|
+
:show-inheritance:
|
|
29
|
+
:undoc-members:
|
|
30
|
+
|
|
31
|
+
Module contents
|
|
32
|
+
---------------
|
|
33
|
+
|
|
34
|
+
.. automodule:: pygeai.tests.core.common
|
|
35
|
+
:members:
|
|
36
|
+
:show-inheritance:
|
|
37
|
+
:undoc-members:
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
pygeai.tests.core.embeddings package
|
|
2
|
+
====================================
|
|
3
|
+
|
|
4
|
+
Submodules
|
|
5
|
+
----------
|
|
6
|
+
|
|
7
|
+
pygeai.tests.core.embeddings.test\_clients module
|
|
8
|
+
-------------------------------------------------
|
|
9
|
+
|
|
10
|
+
.. automodule:: pygeai.tests.core.embeddings.test_clients
|
|
11
|
+
:members:
|
|
12
|
+
:show-inheritance:
|
|
13
|
+
:undoc-members:
|
|
14
|
+
|
|
15
|
+
Module contents
|
|
16
|
+
---------------
|
|
17
|
+
|
|
18
|
+
.. automodule:: pygeai.tests.core.embeddings
|
|
19
|
+
:members:
|
|
20
|
+
:show-inheritance:
|
|
21
|
+
:undoc-members:
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
pygeai.tests.core.feedback package
|
|
2
|
+
==================================
|
|
3
|
+
|
|
4
|
+
Submodules
|
|
5
|
+
----------
|
|
6
|
+
|
|
7
|
+
pygeai.tests.core.feedback.test\_clients module
|
|
8
|
+
-----------------------------------------------
|
|
9
|
+
|
|
10
|
+
.. automodule:: pygeai.tests.core.feedback.test_clients
|
|
11
|
+
:members:
|
|
12
|
+
:show-inheritance:
|
|
13
|
+
:undoc-members:
|
|
14
|
+
|
|
15
|
+
Module contents
|
|
16
|
+
---------------
|
|
17
|
+
|
|
18
|
+
.. automodule:: pygeai.tests.core.feedback
|
|
19
|
+
:members:
|
|
20
|
+
:show-inheritance:
|
|
21
|
+
:undoc-members:
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
pygeai.tests.core.files package
|
|
2
|
+
===============================
|
|
3
|
+
|
|
4
|
+
Submodules
|
|
5
|
+
----------
|
|
6
|
+
|
|
7
|
+
pygeai.tests.core.files.test\_clients module
|
|
8
|
+
--------------------------------------------
|
|
9
|
+
|
|
10
|
+
.. automodule:: pygeai.tests.core.files.test_clients
|
|
11
|
+
:members:
|
|
12
|
+
:show-inheritance:
|
|
13
|
+
:undoc-members:
|
|
14
|
+
|
|
15
|
+
pygeai.tests.core.files.test\_managers module
|
|
16
|
+
---------------------------------------------
|
|
17
|
+
|
|
18
|
+
.. automodule:: pygeai.tests.core.files.test_managers
|
|
19
|
+
:members:
|
|
20
|
+
:show-inheritance:
|
|
21
|
+
:undoc-members:
|
|
22
|
+
|
|
23
|
+
pygeai.tests.core.files.test\_models module
|
|
24
|
+
-------------------------------------------
|
|
25
|
+
|
|
26
|
+
.. automodule:: pygeai.tests.core.files.test_models
|
|
27
|
+
:members:
|
|
28
|
+
:show-inheritance:
|
|
29
|
+
:undoc-members:
|
|
30
|
+
|
|
31
|
+
pygeai.tests.core.files.test\_responses module
|
|
32
|
+
----------------------------------------------
|
|
33
|
+
|
|
34
|
+
.. automodule:: pygeai.tests.core.files.test_responses
|
|
35
|
+
:members:
|
|
36
|
+
:show-inheritance:
|
|
37
|
+
:undoc-members:
|
|
38
|
+
|
|
39
|
+
Module contents
|
|
40
|
+
---------------
|
|
41
|
+
|
|
42
|
+
.. automodule:: pygeai.tests.core.files
|
|
43
|
+
:members:
|
|
44
|
+
:show-inheritance:
|
|
45
|
+
:undoc-members:
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
pygeai.tests.core.llm package
|
|
2
|
+
=============================
|
|
3
|
+
|
|
4
|
+
Submodules
|
|
5
|
+
----------
|
|
6
|
+
|
|
7
|
+
pygeai.tests.core.llm.test\_clients module
|
|
8
|
+
------------------------------------------
|
|
9
|
+
|
|
10
|
+
.. automodule:: pygeai.tests.core.llm.test_clients
|
|
11
|
+
:members:
|
|
12
|
+
:show-inheritance:
|
|
13
|
+
:undoc-members:
|
|
14
|
+
|
|
15
|
+
Module contents
|
|
16
|
+
---------------
|
|
17
|
+
|
|
18
|
+
.. automodule:: pygeai.tests.core.llm
|
|
19
|
+
:members:
|
|
20
|
+
:show-inheritance:
|
|
21
|
+
:undoc-members:
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
pygeai.tests.core.rerank package
|
|
2
|
+
================================
|
|
3
|
+
|
|
4
|
+
Submodules
|
|
5
|
+
----------
|
|
6
|
+
|
|
7
|
+
pygeai.tests.core.rerank.test\_clients module
|
|
8
|
+
---------------------------------------------
|
|
9
|
+
|
|
10
|
+
.. automodule:: pygeai.tests.core.rerank.test_clients
|
|
11
|
+
:members:
|
|
12
|
+
:show-inheritance:
|
|
13
|
+
:undoc-members:
|
|
14
|
+
|
|
15
|
+
pygeai.tests.core.rerank.test\_managers module
|
|
16
|
+
----------------------------------------------
|
|
17
|
+
|
|
18
|
+
.. automodule:: pygeai.tests.core.rerank.test_managers
|
|
19
|
+
:members:
|
|
20
|
+
:show-inheritance:
|
|
21
|
+
:undoc-members:
|
|
22
|
+
|
|
23
|
+
pygeai.tests.core.rerank.test\_mappers module
|
|
24
|
+
---------------------------------------------
|
|
25
|
+
|
|
26
|
+
.. automodule:: pygeai.tests.core.rerank.test_mappers
|
|
27
|
+
:members:
|
|
28
|
+
:show-inheritance:
|
|
29
|
+
:undoc-members:
|
|
30
|
+
|
|
31
|
+
Module contents
|
|
32
|
+
---------------
|
|
33
|
+
|
|
34
|
+
.. automodule:: pygeai.tests.core.rerank
|
|
35
|
+
:members:
|
|
36
|
+
:show-inheritance:
|
|
37
|
+
:undoc-members:
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
pygeai.tests.core package
|
|
2
|
+
=========================
|
|
3
|
+
|
|
4
|
+
Subpackages
|
|
5
|
+
-----------
|
|
6
|
+
|
|
7
|
+
.. toctree::
|
|
8
|
+
:maxdepth: 4
|
|
9
|
+
|
|
10
|
+
pygeai.tests.core.base
|
|
11
|
+
pygeai.tests.core.common
|
|
12
|
+
pygeai.tests.core.embeddings
|
|
13
|
+
pygeai.tests.core.feedback
|
|
14
|
+
pygeai.tests.core.files
|
|
15
|
+
pygeai.tests.core.llm
|
|
16
|
+
pygeai.tests.core.rerank
|
|
17
|
+
pygeai.tests.core.secrets
|
|
18
|
+
pygeai.tests.core.services
|
|
19
|
+
pygeai.tests.core.utils
|
|
20
|
+
|
|
21
|
+
Submodules
|
|
22
|
+
----------
|
|
23
|
+
|
|
24
|
+
pygeai.tests.core.test\_handlers module
|
|
25
|
+
---------------------------------------
|
|
26
|
+
|
|
27
|
+
.. automodule:: pygeai.tests.core.test_handlers
|
|
28
|
+
:members:
|
|
29
|
+
:show-inheritance:
|
|
30
|
+
:undoc-members:
|
|
31
|
+
|
|
32
|
+
Module contents
|
|
33
|
+
---------------
|
|
34
|
+
|
|
35
|
+
.. automodule:: pygeai.tests.core
|
|
36
|
+
:members:
|
|
37
|
+
:show-inheritance:
|
|
38
|
+
:undoc-members:
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
pygeai.tests.core.secrets package
|
|
2
|
+
=================================
|
|
3
|
+
|
|
4
|
+
Submodules
|
|
5
|
+
----------
|
|
6
|
+
|
|
7
|
+
pygeai.tests.core.secrets.test\_clients module
|
|
8
|
+
----------------------------------------------
|
|
9
|
+
|
|
10
|
+
.. automodule:: pygeai.tests.core.secrets.test_clients
|
|
11
|
+
:members:
|
|
12
|
+
:show-inheritance:
|
|
13
|
+
:undoc-members:
|
|
14
|
+
|
|
15
|
+
Module contents
|
|
16
|
+
---------------
|
|
17
|
+
|
|
18
|
+
.. automodule:: pygeai.tests.core.secrets
|
|
19
|
+
:members:
|
|
20
|
+
:show-inheritance:
|
|
21
|
+
:undoc-members:
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
pygeai.tests.core.services package
|
|
2
|
+
==================================
|
|
3
|
+
|
|
4
|
+
Submodules
|
|
5
|
+
----------
|
|
6
|
+
|
|
7
|
+
pygeai.tests.core.services.test\_rest module
|
|
8
|
+
--------------------------------------------
|
|
9
|
+
|
|
10
|
+
.. automodule:: pygeai.tests.core.services.test_rest
|
|
11
|
+
:members:
|
|
12
|
+
:show-inheritance:
|
|
13
|
+
:undoc-members:
|
|
14
|
+
|
|
15
|
+
Module contents
|
|
16
|
+
---------------
|
|
17
|
+
|
|
18
|
+
.. automodule:: pygeai.tests.core.services
|
|
19
|
+
:members:
|
|
20
|
+
:show-inheritance:
|
|
21
|
+
:undoc-members:
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
pygeai.tests.core.utils package
|
|
2
|
+
===============================
|
|
3
|
+
|
|
4
|
+
Submodules
|
|
5
|
+
----------
|
|
6
|
+
|
|
7
|
+
pygeai.tests.core.utils.test\_console module
|
|
8
|
+
--------------------------------------------
|
|
9
|
+
|
|
10
|
+
.. automodule:: pygeai.tests.core.utils.test_console
|
|
11
|
+
:members:
|
|
12
|
+
:show-inheritance:
|
|
13
|
+
:undoc-members:
|
|
14
|
+
|
|
15
|
+
Module contents
|
|
16
|
+
---------------
|
|
17
|
+
|
|
18
|
+
.. automodule:: pygeai.tests.core.utils
|
|
19
|
+
:members:
|
|
20
|
+
:show-inheritance:
|
|
21
|
+
:undoc-members:
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
pygeai.tests.dbg package
|
|
2
|
+
========================
|
|
3
|
+
|
|
4
|
+
Submodules
|
|
5
|
+
----------
|
|
6
|
+
|
|
7
|
+
pygeai.tests.dbg.test\_debugger module
|
|
8
|
+
--------------------------------------
|
|
9
|
+
|
|
10
|
+
.. automodule:: pygeai.tests.dbg.test_debugger
|
|
11
|
+
:members:
|
|
12
|
+
:show-inheritance:
|
|
13
|
+
:undoc-members:
|
|
14
|
+
|
|
15
|
+
Module contents
|
|
16
|
+
---------------
|
|
17
|
+
|
|
18
|
+
.. automodule:: pygeai.tests.dbg
|
|
19
|
+
:members:
|
|
20
|
+
:show-inheritance:
|
|
21
|
+
:undoc-members:
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
pygeai.tests.gam package
|
|
2
|
+
========================
|
|
3
|
+
|
|
4
|
+
Submodules
|
|
5
|
+
----------
|
|
6
|
+
|
|
7
|
+
pygeai.tests.gam.test\_clients module
|
|
8
|
+
-------------------------------------
|
|
9
|
+
|
|
10
|
+
.. automodule:: pygeai.tests.gam.test_clients
|
|
11
|
+
:members:
|
|
12
|
+
:show-inheritance:
|
|
13
|
+
:undoc-members:
|
|
14
|
+
|
|
15
|
+
Module contents
|
|
16
|
+
---------------
|
|
17
|
+
|
|
18
|
+
.. automodule:: pygeai.tests.gam
|
|
19
|
+
:members:
|
|
20
|
+
:show-inheritance:
|
|
21
|
+
:undoc-members:
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
pygeai.tests.health package
|
|
2
|
+
===========================
|
|
3
|
+
|
|
4
|
+
Submodules
|
|
5
|
+
----------
|
|
6
|
+
|
|
7
|
+
pygeai.tests.health.test\_clients module
|
|
8
|
+
----------------------------------------
|
|
9
|
+
|
|
10
|
+
.. automodule:: pygeai.tests.health.test_clients
|
|
11
|
+
:members:
|
|
12
|
+
:show-inheritance:
|
|
13
|
+
:undoc-members:
|
|
14
|
+
|
|
15
|
+
Module contents
|
|
16
|
+
---------------
|
|
17
|
+
|
|
18
|
+
.. automodule:: pygeai.tests.health
|
|
19
|
+
:members:
|
|
20
|
+
:show-inheritance:
|
|
21
|
+
:undoc-members:
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
pygeai.tests.integration.assistants.rag package
|
|
2
|
+
===============================================
|
|
3
|
+
|
|
4
|
+
Submodules
|
|
5
|
+
----------
|
|
6
|
+
|
|
7
|
+
pygeai.tests.integration.assistants.rag.test\_create\_rag module
|
|
8
|
+
----------------------------------------------------------------
|
|
9
|
+
|
|
10
|
+
.. automodule:: pygeai.tests.integration.assistants.rag.test_create_rag
|
|
11
|
+
:members:
|
|
12
|
+
:show-inheritance:
|
|
13
|
+
:undoc-members:
|
|
14
|
+
|
|
15
|
+
Module contents
|
|
16
|
+
---------------
|
|
17
|
+
|
|
18
|
+
.. automodule:: pygeai.tests.integration.assistants.rag
|
|
19
|
+
:members:
|
|
20
|
+
:show-inheritance:
|
|
21
|
+
:undoc-members:
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
pygeai.tests.integration.assistants package
|
|
2
|
+
===========================================
|
|
3
|
+
|
|
4
|
+
Subpackages
|
|
5
|
+
-----------
|
|
6
|
+
|
|
7
|
+
.. toctree::
|
|
8
|
+
:maxdepth: 4
|
|
9
|
+
|
|
10
|
+
pygeai.tests.integration.assistants.rag
|
|
11
|
+
|
|
12
|
+
Module contents
|
|
13
|
+
---------------
|
|
14
|
+
|
|
15
|
+
.. automodule:: pygeai.tests.integration.assistants
|
|
16
|
+
:members:
|
|
17
|
+
:show-inheritance:
|
|
18
|
+
:undoc-members:
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
pygeai.tests.integration.chat package
|
|
2
|
+
=====================================
|
|
3
|
+
|
|
4
|
+
Submodules
|
|
5
|
+
----------
|
|
6
|
+
|
|
7
|
+
pygeai.tests.integration.chat.test\_generate\_image module
|
|
8
|
+
----------------------------------------------------------
|
|
9
|
+
|
|
10
|
+
.. automodule:: pygeai.tests.integration.chat.test_generate_image
|
|
11
|
+
:members:
|
|
12
|
+
:show-inheritance:
|
|
13
|
+
:undoc-members:
|
|
14
|
+
|
|
15
|
+
Module contents
|
|
16
|
+
---------------
|
|
17
|
+
|
|
18
|
+
.. automodule:: pygeai.tests.integration.chat
|
|
19
|
+
:members:
|
|
20
|
+
:show-inheritance:
|
|
21
|
+
:undoc-members:
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
pygeai.tests.integration.lab.agents package
|
|
2
|
+
===========================================
|
|
3
|
+
|
|
4
|
+
Submodules
|
|
5
|
+
----------
|
|
6
|
+
|
|
7
|
+
pygeai.tests.integration.lab.agents.test\_agents\_list module
|
|
8
|
+
-------------------------------------------------------------
|
|
9
|
+
|
|
10
|
+
.. automodule:: pygeai.tests.integration.lab.agents.test_agents_list
|
|
11
|
+
:members:
|
|
12
|
+
:show-inheritance:
|
|
13
|
+
:undoc-members:
|
|
14
|
+
|
|
15
|
+
pygeai.tests.integration.lab.agents.test\_create\_agent module
|
|
16
|
+
--------------------------------------------------------------
|
|
17
|
+
|
|
18
|
+
.. automodule:: pygeai.tests.integration.lab.agents.test_create_agent
|
|
19
|
+
:members:
|
|
20
|
+
:show-inheritance:
|
|
21
|
+
:undoc-members:
|
|
22
|
+
|
|
23
|
+
pygeai.tests.integration.lab.agents.test\_create\_sharing\_link module
|
|
24
|
+
----------------------------------------------------------------------
|
|
25
|
+
|
|
26
|
+
.. automodule:: pygeai.tests.integration.lab.agents.test_create_sharing_link
|
|
27
|
+
:members:
|
|
28
|
+
:show-inheritance:
|
|
29
|
+
:undoc-members:
|
|
30
|
+
|
|
31
|
+
pygeai.tests.integration.lab.agents.test\_delete\_agent module
|
|
32
|
+
--------------------------------------------------------------
|
|
33
|
+
|
|
34
|
+
.. automodule:: pygeai.tests.integration.lab.agents.test_delete_agent
|
|
35
|
+
:members:
|
|
36
|
+
:show-inheritance:
|
|
37
|
+
:undoc-members:
|
|
38
|
+
|
|
39
|
+
pygeai.tests.integration.lab.agents.test\_get\_agent module
|
|
40
|
+
-----------------------------------------------------------
|
|
41
|
+
|
|
42
|
+
.. automodule:: pygeai.tests.integration.lab.agents.test_get_agent
|
|
43
|
+
:members:
|
|
44
|
+
:show-inheritance:
|
|
45
|
+
:undoc-members:
|
|
46
|
+
|
|
47
|
+
pygeai.tests.integration.lab.agents.test\_publish\_agent\_revision module
|
|
48
|
+
-------------------------------------------------------------------------
|
|
49
|
+
|
|
50
|
+
.. automodule:: pygeai.tests.integration.lab.agents.test_publish_agent_revision
|
|
51
|
+
:members:
|
|
52
|
+
:show-inheritance:
|
|
53
|
+
:undoc-members:
|
|
54
|
+
|
|
55
|
+
pygeai.tests.integration.lab.agents.test\_update\_agent module
|
|
56
|
+
--------------------------------------------------------------
|
|
57
|
+
|
|
58
|
+
.. automodule:: pygeai.tests.integration.lab.agents.test_update_agent
|
|
59
|
+
:members:
|
|
60
|
+
:show-inheritance:
|
|
61
|
+
:undoc-members:
|
|
62
|
+
|
|
63
|
+
Module contents
|
|
64
|
+
---------------
|
|
65
|
+
|
|
66
|
+
.. automodule:: pygeai.tests.integration.lab.agents
|
|
67
|
+
:members:
|
|
68
|
+
:show-inheritance:
|
|
69
|
+
:undoc-members:
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
pygeai.tests.integration.lab.processes package
|
|
2
|
+
==============================================
|
|
3
|
+
|
|
4
|
+
Submodules
|
|
5
|
+
----------
|
|
6
|
+
|
|
7
|
+
pygeai.tests.integration.lab.processes.test\_create\_process module
|
|
8
|
+
-------------------------------------------------------------------
|
|
9
|
+
|
|
10
|
+
.. automodule:: pygeai.tests.integration.lab.processes.test_create_process
|
|
11
|
+
:members:
|
|
12
|
+
:show-inheritance:
|
|
13
|
+
:undoc-members:
|
|
14
|
+
|
|
15
|
+
pygeai.tests.integration.lab.processes.test\_delete\_process module
|
|
16
|
+
-------------------------------------------------------------------
|
|
17
|
+
|
|
18
|
+
.. automodule:: pygeai.tests.integration.lab.processes.test_delete_process
|
|
19
|
+
:members:
|
|
20
|
+
:show-inheritance:
|
|
21
|
+
:undoc-members:
|
|
22
|
+
|
|
23
|
+
pygeai.tests.integration.lab.processes.test\_get\_process module
|
|
24
|
+
----------------------------------------------------------------
|
|
25
|
+
|
|
26
|
+
.. automodule:: pygeai.tests.integration.lab.processes.test_get_process
|
|
27
|
+
:members:
|
|
28
|
+
:show-inheritance:
|
|
29
|
+
:undoc-members:
|
|
30
|
+
|
|
31
|
+
pygeai.tests.integration.lab.processes.test\_list\_process\_instances module
|
|
32
|
+
----------------------------------------------------------------------------
|
|
33
|
+
|
|
34
|
+
.. automodule:: pygeai.tests.integration.lab.processes.test_list_process_instances
|
|
35
|
+
:members:
|
|
36
|
+
:show-inheritance:
|
|
37
|
+
:undoc-members:
|
|
38
|
+
|
|
39
|
+
pygeai.tests.integration.lab.processes.test\_list\_processes module
|
|
40
|
+
-------------------------------------------------------------------
|
|
41
|
+
|
|
42
|
+
.. automodule:: pygeai.tests.integration.lab.processes.test_list_processes
|
|
43
|
+
:members:
|
|
44
|
+
:show-inheritance:
|
|
45
|
+
:undoc-members:
|
|
46
|
+
|
|
47
|
+
pygeai.tests.integration.lab.processes.test\_publish\_process\_revision module
|
|
48
|
+
------------------------------------------------------------------------------
|
|
49
|
+
|
|
50
|
+
.. automodule:: pygeai.tests.integration.lab.processes.test_publish_process_revision
|
|
51
|
+
:members:
|
|
52
|
+
:show-inheritance:
|
|
53
|
+
:undoc-members:
|
|
54
|
+
|
|
55
|
+
pygeai.tests.integration.lab.processes.test\_update\_process module
|
|
56
|
+
-------------------------------------------------------------------
|
|
57
|
+
|
|
58
|
+
.. automodule:: pygeai.tests.integration.lab.processes.test_update_process
|
|
59
|
+
:members:
|
|
60
|
+
:show-inheritance:
|
|
61
|
+
:undoc-members:
|
|
62
|
+
|
|
63
|
+
Module contents
|
|
64
|
+
---------------
|
|
65
|
+
|
|
66
|
+
.. automodule:: pygeai.tests.integration.lab.processes
|
|
67
|
+
:members:
|
|
68
|
+
:show-inheritance:
|
|
69
|
+
:undoc-members:
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
pygeai.tests.integration.lab.reasoning\_strategies package
|
|
2
|
+
==========================================================
|
|
3
|
+
|
|
4
|
+
Submodules
|
|
5
|
+
----------
|
|
6
|
+
|
|
7
|
+
pygeai.tests.integration.lab.reasoning\_strategies.test\_get\_reasoning\_strategy module
|
|
8
|
+
----------------------------------------------------------------------------------------
|
|
9
|
+
|
|
10
|
+
.. automodule:: pygeai.tests.integration.lab.reasoning_strategies.test_get_reasoning_strategy
|
|
11
|
+
:members:
|
|
12
|
+
:show-inheritance:
|
|
13
|
+
:undoc-members:
|
|
14
|
+
|
|
15
|
+
pygeai.tests.integration.lab.reasoning\_strategies.test\_list\_reasoning\_strategies module
|
|
16
|
+
-------------------------------------------------------------------------------------------
|
|
17
|
+
|
|
18
|
+
.. automodule:: pygeai.tests.integration.lab.reasoning_strategies.test_list_reasoning_strategies
|
|
19
|
+
:members:
|
|
20
|
+
:show-inheritance:
|
|
21
|
+
:undoc-members:
|
|
22
|
+
|
|
23
|
+
pygeai.tests.integration.lab.reasoning\_strategies.test\_update\_reasoning\_strategy module
|
|
24
|
+
-------------------------------------------------------------------------------------------
|
|
25
|
+
|
|
26
|
+
.. automodule:: pygeai.tests.integration.lab.reasoning_strategies.test_update_reasoning_strategy
|
|
27
|
+
:members:
|
|
28
|
+
:show-inheritance:
|
|
29
|
+
:undoc-members:
|
|
30
|
+
|
|
31
|
+
Module contents
|
|
32
|
+
---------------
|
|
33
|
+
|
|
34
|
+
.. automodule:: pygeai.tests.integration.lab.reasoning_strategies
|
|
35
|
+
:members:
|
|
36
|
+
:show-inheritance:
|
|
37
|
+
:undoc-members:
|