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.core.llm package
|
|
2
|
+
=======================
|
|
3
|
+
|
|
4
|
+
Submodules
|
|
5
|
+
----------
|
|
6
|
+
|
|
7
|
+
pygeai.core.llm.clients module
|
|
8
|
+
------------------------------
|
|
9
|
+
|
|
10
|
+
.. automodule:: pygeai.core.llm.clients
|
|
11
|
+
:members:
|
|
12
|
+
:show-inheritance:
|
|
13
|
+
:undoc-members:
|
|
14
|
+
|
|
15
|
+
pygeai.core.llm.endpoints module
|
|
16
|
+
--------------------------------
|
|
17
|
+
|
|
18
|
+
.. automodule:: pygeai.core.llm.endpoints
|
|
19
|
+
:members:
|
|
20
|
+
:show-inheritance:
|
|
21
|
+
:undoc-members:
|
|
22
|
+
|
|
23
|
+
Module contents
|
|
24
|
+
---------------
|
|
25
|
+
|
|
26
|
+
.. automodule:: pygeai.core.llm
|
|
27
|
+
:members:
|
|
28
|
+
:show-inheritance:
|
|
29
|
+
:undoc-members:
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
pygeai.core.plugins package
|
|
2
|
+
===========================
|
|
3
|
+
|
|
4
|
+
Submodules
|
|
5
|
+
----------
|
|
6
|
+
|
|
7
|
+
pygeai.core.plugins.clients module
|
|
8
|
+
----------------------------------
|
|
9
|
+
|
|
10
|
+
.. automodule:: pygeai.core.plugins.clients
|
|
11
|
+
:members:
|
|
12
|
+
:show-inheritance:
|
|
13
|
+
:undoc-members:
|
|
14
|
+
|
|
15
|
+
pygeai.core.plugins.endpoints module
|
|
16
|
+
------------------------------------
|
|
17
|
+
|
|
18
|
+
.. automodule:: pygeai.core.plugins.endpoints
|
|
19
|
+
:members:
|
|
20
|
+
:show-inheritance:
|
|
21
|
+
:undoc-members:
|
|
22
|
+
|
|
23
|
+
pygeai.core.plugins.models module
|
|
24
|
+
---------------------------------
|
|
25
|
+
|
|
26
|
+
.. automodule:: pygeai.core.plugins.models
|
|
27
|
+
:members:
|
|
28
|
+
:show-inheritance:
|
|
29
|
+
:undoc-members:
|
|
30
|
+
|
|
31
|
+
Module contents
|
|
32
|
+
---------------
|
|
33
|
+
|
|
34
|
+
.. automodule:: pygeai.core.plugins
|
|
35
|
+
:members:
|
|
36
|
+
:show-inheritance:
|
|
37
|
+
:undoc-members:
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
pygeai.core.rerank package
|
|
2
|
+
==========================
|
|
3
|
+
|
|
4
|
+
Submodules
|
|
5
|
+
----------
|
|
6
|
+
|
|
7
|
+
pygeai.core.rerank.clients module
|
|
8
|
+
---------------------------------
|
|
9
|
+
|
|
10
|
+
.. automodule:: pygeai.core.rerank.clients
|
|
11
|
+
:members:
|
|
12
|
+
:show-inheritance:
|
|
13
|
+
:undoc-members:
|
|
14
|
+
|
|
15
|
+
pygeai.core.rerank.endpoints module
|
|
16
|
+
-----------------------------------
|
|
17
|
+
|
|
18
|
+
.. automodule:: pygeai.core.rerank.endpoints
|
|
19
|
+
:members:
|
|
20
|
+
:show-inheritance:
|
|
21
|
+
:undoc-members:
|
|
22
|
+
|
|
23
|
+
pygeai.core.rerank.managers module
|
|
24
|
+
----------------------------------
|
|
25
|
+
|
|
26
|
+
.. automodule:: pygeai.core.rerank.managers
|
|
27
|
+
:members:
|
|
28
|
+
:show-inheritance:
|
|
29
|
+
:undoc-members:
|
|
30
|
+
|
|
31
|
+
pygeai.core.rerank.mappers module
|
|
32
|
+
---------------------------------
|
|
33
|
+
|
|
34
|
+
.. automodule:: pygeai.core.rerank.mappers
|
|
35
|
+
:members:
|
|
36
|
+
:show-inheritance:
|
|
37
|
+
:undoc-members:
|
|
38
|
+
|
|
39
|
+
pygeai.core.rerank.models module
|
|
40
|
+
--------------------------------
|
|
41
|
+
|
|
42
|
+
.. automodule:: pygeai.core.rerank.models
|
|
43
|
+
:members:
|
|
44
|
+
:show-inheritance:
|
|
45
|
+
:undoc-members:
|
|
46
|
+
|
|
47
|
+
Module contents
|
|
48
|
+
---------------
|
|
49
|
+
|
|
50
|
+
.. automodule:: pygeai.core.rerank
|
|
51
|
+
:members:
|
|
52
|
+
:show-inheritance:
|
|
53
|
+
:undoc-members:
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
pygeai.core package
|
|
2
|
+
===================
|
|
3
|
+
|
|
4
|
+
Subpackages
|
|
5
|
+
-----------
|
|
6
|
+
|
|
7
|
+
.. toctree::
|
|
8
|
+
:maxdepth: 4
|
|
9
|
+
|
|
10
|
+
pygeai.core.base
|
|
11
|
+
pygeai.core.common
|
|
12
|
+
pygeai.core.embeddings
|
|
13
|
+
pygeai.core.feedback
|
|
14
|
+
pygeai.core.files
|
|
15
|
+
pygeai.core.llm
|
|
16
|
+
pygeai.core.plugins
|
|
17
|
+
pygeai.core.rerank
|
|
18
|
+
pygeai.core.secrets
|
|
19
|
+
pygeai.core.services
|
|
20
|
+
pygeai.core.utils
|
|
21
|
+
|
|
22
|
+
Submodules
|
|
23
|
+
----------
|
|
24
|
+
|
|
25
|
+
pygeai.core.handlers module
|
|
26
|
+
---------------------------
|
|
27
|
+
|
|
28
|
+
.. automodule:: pygeai.core.handlers
|
|
29
|
+
:members:
|
|
30
|
+
:show-inheritance:
|
|
31
|
+
:undoc-members:
|
|
32
|
+
|
|
33
|
+
pygeai.core.models module
|
|
34
|
+
-------------------------
|
|
35
|
+
|
|
36
|
+
.. automodule:: pygeai.core.models
|
|
37
|
+
:members:
|
|
38
|
+
:show-inheritance:
|
|
39
|
+
:undoc-members:
|
|
40
|
+
|
|
41
|
+
pygeai.core.responses module
|
|
42
|
+
----------------------------
|
|
43
|
+
|
|
44
|
+
.. automodule:: pygeai.core.responses
|
|
45
|
+
:members:
|
|
46
|
+
:show-inheritance:
|
|
47
|
+
:undoc-members:
|
|
48
|
+
|
|
49
|
+
pygeai.core.singleton module
|
|
50
|
+
----------------------------
|
|
51
|
+
|
|
52
|
+
.. automodule:: pygeai.core.singleton
|
|
53
|
+
:members:
|
|
54
|
+
:show-inheritance:
|
|
55
|
+
:undoc-members:
|
|
56
|
+
|
|
57
|
+
Module contents
|
|
58
|
+
---------------
|
|
59
|
+
|
|
60
|
+
.. automodule:: pygeai.core
|
|
61
|
+
:members:
|
|
62
|
+
:show-inheritance:
|
|
63
|
+
:undoc-members:
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
pygeai.core.secrets package
|
|
2
|
+
===========================
|
|
3
|
+
|
|
4
|
+
Submodules
|
|
5
|
+
----------
|
|
6
|
+
|
|
7
|
+
pygeai.core.secrets.clients module
|
|
8
|
+
----------------------------------
|
|
9
|
+
|
|
10
|
+
.. automodule:: pygeai.core.secrets.clients
|
|
11
|
+
:members:
|
|
12
|
+
:show-inheritance:
|
|
13
|
+
:undoc-members:
|
|
14
|
+
|
|
15
|
+
pygeai.core.secrets.endpoints module
|
|
16
|
+
------------------------------------
|
|
17
|
+
|
|
18
|
+
.. automodule:: pygeai.core.secrets.endpoints
|
|
19
|
+
:members:
|
|
20
|
+
:show-inheritance:
|
|
21
|
+
:undoc-members:
|
|
22
|
+
|
|
23
|
+
Module contents
|
|
24
|
+
---------------
|
|
25
|
+
|
|
26
|
+
.. automodule:: pygeai.core.secrets
|
|
27
|
+
:members:
|
|
28
|
+
:show-inheritance:
|
|
29
|
+
:undoc-members:
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
pygeai.core.services.llm package
|
|
2
|
+
================================
|
|
3
|
+
|
|
4
|
+
Submodules
|
|
5
|
+
----------
|
|
6
|
+
|
|
7
|
+
pygeai.core.services.llm.model module
|
|
8
|
+
-------------------------------------
|
|
9
|
+
|
|
10
|
+
.. automodule:: pygeai.core.services.llm.model
|
|
11
|
+
:members:
|
|
12
|
+
:show-inheritance:
|
|
13
|
+
:undoc-members:
|
|
14
|
+
|
|
15
|
+
pygeai.core.services.llm.providers module
|
|
16
|
+
-----------------------------------------
|
|
17
|
+
|
|
18
|
+
.. automodule:: pygeai.core.services.llm.providers
|
|
19
|
+
:members:
|
|
20
|
+
:show-inheritance:
|
|
21
|
+
:undoc-members:
|
|
22
|
+
|
|
23
|
+
Module contents
|
|
24
|
+
---------------
|
|
25
|
+
|
|
26
|
+
.. automodule:: pygeai.core.services.llm
|
|
27
|
+
:members:
|
|
28
|
+
:show-inheritance:
|
|
29
|
+
:undoc-members:
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
pygeai.core.services package
|
|
2
|
+
============================
|
|
3
|
+
|
|
4
|
+
Subpackages
|
|
5
|
+
-----------
|
|
6
|
+
|
|
7
|
+
.. toctree::
|
|
8
|
+
:maxdepth: 4
|
|
9
|
+
|
|
10
|
+
pygeai.core.services.llm
|
|
11
|
+
|
|
12
|
+
Submodules
|
|
13
|
+
----------
|
|
14
|
+
|
|
15
|
+
pygeai.core.services.response module
|
|
16
|
+
------------------------------------
|
|
17
|
+
|
|
18
|
+
.. automodule:: pygeai.core.services.response
|
|
19
|
+
:members:
|
|
20
|
+
:show-inheritance:
|
|
21
|
+
:undoc-members:
|
|
22
|
+
|
|
23
|
+
pygeai.core.services.rest module
|
|
24
|
+
--------------------------------
|
|
25
|
+
|
|
26
|
+
.. automodule:: pygeai.core.services.rest
|
|
27
|
+
:members:
|
|
28
|
+
:show-inheritance:
|
|
29
|
+
:undoc-members:
|
|
30
|
+
|
|
31
|
+
Module contents
|
|
32
|
+
---------------
|
|
33
|
+
|
|
34
|
+
.. automodule:: pygeai.core.services
|
|
35
|
+
:members:
|
|
36
|
+
:show-inheritance:
|
|
37
|
+
:undoc-members:
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
pygeai.core.utils package
|
|
2
|
+
=========================
|
|
3
|
+
|
|
4
|
+
Submodules
|
|
5
|
+
----------
|
|
6
|
+
|
|
7
|
+
pygeai.core.utils.console module
|
|
8
|
+
--------------------------------
|
|
9
|
+
|
|
10
|
+
.. automodule:: pygeai.core.utils.console
|
|
11
|
+
:members:
|
|
12
|
+
:show-inheritance:
|
|
13
|
+
:undoc-members:
|
|
14
|
+
|
|
15
|
+
Module contents
|
|
16
|
+
---------------
|
|
17
|
+
|
|
18
|
+
.. automodule:: pygeai.core.utils
|
|
19
|
+
:members:
|
|
20
|
+
:show-inheritance:
|
|
21
|
+
:undoc-members:
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
pygeai.dbg package
|
|
2
|
+
==================
|
|
3
|
+
|
|
4
|
+
Submodules
|
|
5
|
+
----------
|
|
6
|
+
|
|
7
|
+
pygeai.dbg.debugger module
|
|
8
|
+
--------------------------
|
|
9
|
+
|
|
10
|
+
.. automodule:: pygeai.dbg.debugger
|
|
11
|
+
:members:
|
|
12
|
+
:show-inheritance:
|
|
13
|
+
:undoc-members:
|
|
14
|
+
|
|
15
|
+
Module contents
|
|
16
|
+
---------------
|
|
17
|
+
|
|
18
|
+
.. automodule:: pygeai.dbg
|
|
19
|
+
:members:
|
|
20
|
+
:show-inheritance:
|
|
21
|
+
:undoc-members:
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
pygeai.evaluation.dataset package
|
|
2
|
+
=================================
|
|
3
|
+
|
|
4
|
+
Submodules
|
|
5
|
+
----------
|
|
6
|
+
|
|
7
|
+
pygeai.evaluation.dataset.clients module
|
|
8
|
+
----------------------------------------
|
|
9
|
+
|
|
10
|
+
.. automodule:: pygeai.evaluation.dataset.clients
|
|
11
|
+
:members:
|
|
12
|
+
:show-inheritance:
|
|
13
|
+
:undoc-members:
|
|
14
|
+
|
|
15
|
+
pygeai.evaluation.dataset.endpoints module
|
|
16
|
+
------------------------------------------
|
|
17
|
+
|
|
18
|
+
.. automodule:: pygeai.evaluation.dataset.endpoints
|
|
19
|
+
:members:
|
|
20
|
+
:show-inheritance:
|
|
21
|
+
:undoc-members:
|
|
22
|
+
|
|
23
|
+
Module contents
|
|
24
|
+
---------------
|
|
25
|
+
|
|
26
|
+
.. automodule:: pygeai.evaluation.dataset
|
|
27
|
+
:members:
|
|
28
|
+
:show-inheritance:
|
|
29
|
+
:undoc-members:
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
pygeai.evaluation.plan package
|
|
2
|
+
==============================
|
|
3
|
+
|
|
4
|
+
Submodules
|
|
5
|
+
----------
|
|
6
|
+
|
|
7
|
+
pygeai.evaluation.plan.clients module
|
|
8
|
+
-------------------------------------
|
|
9
|
+
|
|
10
|
+
.. automodule:: pygeai.evaluation.plan.clients
|
|
11
|
+
:members:
|
|
12
|
+
:show-inheritance:
|
|
13
|
+
:undoc-members:
|
|
14
|
+
|
|
15
|
+
pygeai.evaluation.plan.endpoints module
|
|
16
|
+
---------------------------------------
|
|
17
|
+
|
|
18
|
+
.. automodule:: pygeai.evaluation.plan.endpoints
|
|
19
|
+
:members:
|
|
20
|
+
:show-inheritance:
|
|
21
|
+
:undoc-members:
|
|
22
|
+
|
|
23
|
+
Module contents
|
|
24
|
+
---------------
|
|
25
|
+
|
|
26
|
+
.. automodule:: pygeai.evaluation.plan
|
|
27
|
+
:members:
|
|
28
|
+
:show-inheritance:
|
|
29
|
+
:undoc-members:
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
pygeai.evaluation.result package
|
|
2
|
+
================================
|
|
3
|
+
|
|
4
|
+
Submodules
|
|
5
|
+
----------
|
|
6
|
+
|
|
7
|
+
pygeai.evaluation.result.clients module
|
|
8
|
+
---------------------------------------
|
|
9
|
+
|
|
10
|
+
.. automodule:: pygeai.evaluation.result.clients
|
|
11
|
+
:members:
|
|
12
|
+
:show-inheritance:
|
|
13
|
+
:undoc-members:
|
|
14
|
+
|
|
15
|
+
pygeai.evaluation.result.endpoints module
|
|
16
|
+
-----------------------------------------
|
|
17
|
+
|
|
18
|
+
.. automodule:: pygeai.evaluation.result.endpoints
|
|
19
|
+
:members:
|
|
20
|
+
:show-inheritance:
|
|
21
|
+
:undoc-members:
|
|
22
|
+
|
|
23
|
+
Module contents
|
|
24
|
+
---------------
|
|
25
|
+
|
|
26
|
+
.. automodule:: pygeai.evaluation.result
|
|
27
|
+
:members:
|
|
28
|
+
:show-inheritance:
|
|
29
|
+
:undoc-members:
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
pygeai.evaluation package
|
|
2
|
+
=========================
|
|
3
|
+
|
|
4
|
+
Subpackages
|
|
5
|
+
-----------
|
|
6
|
+
|
|
7
|
+
.. toctree::
|
|
8
|
+
:maxdepth: 4
|
|
9
|
+
|
|
10
|
+
pygeai.evaluation.dataset
|
|
11
|
+
pygeai.evaluation.plan
|
|
12
|
+
pygeai.evaluation.result
|
|
13
|
+
|
|
14
|
+
Submodules
|
|
15
|
+
----------
|
|
16
|
+
|
|
17
|
+
pygeai.evaluation.clients module
|
|
18
|
+
--------------------------------
|
|
19
|
+
|
|
20
|
+
.. automodule:: pygeai.evaluation.clients
|
|
21
|
+
:members:
|
|
22
|
+
:show-inheritance:
|
|
23
|
+
:undoc-members:
|
|
24
|
+
|
|
25
|
+
Module contents
|
|
26
|
+
---------------
|
|
27
|
+
|
|
28
|
+
.. automodule:: pygeai.evaluation
|
|
29
|
+
:members:
|
|
30
|
+
:show-inheritance:
|
|
31
|
+
:undoc-members:
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
pygeai.flows package
|
|
2
|
+
====================
|
|
3
|
+
|
|
4
|
+
Submodules
|
|
5
|
+
----------
|
|
6
|
+
|
|
7
|
+
pygeai.flows.endpoints module
|
|
8
|
+
-----------------------------
|
|
9
|
+
|
|
10
|
+
.. automodule:: pygeai.flows.endpoints
|
|
11
|
+
:members:
|
|
12
|
+
:show-inheritance:
|
|
13
|
+
:undoc-members:
|
|
14
|
+
|
|
15
|
+
pygeai.flows.models module
|
|
16
|
+
--------------------------
|
|
17
|
+
|
|
18
|
+
.. automodule:: pygeai.flows.models
|
|
19
|
+
:members:
|
|
20
|
+
:show-inheritance:
|
|
21
|
+
:undoc-members:
|
|
22
|
+
|
|
23
|
+
Module contents
|
|
24
|
+
---------------
|
|
25
|
+
|
|
26
|
+
.. automodule:: pygeai.flows
|
|
27
|
+
:members:
|
|
28
|
+
:show-inheritance:
|
|
29
|
+
:undoc-members:
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
pygeai.gam package
|
|
2
|
+
==================
|
|
3
|
+
|
|
4
|
+
Submodules
|
|
5
|
+
----------
|
|
6
|
+
|
|
7
|
+
pygeai.gam.clients module
|
|
8
|
+
-------------------------
|
|
9
|
+
|
|
10
|
+
.. automodule:: pygeai.gam.clients
|
|
11
|
+
:members:
|
|
12
|
+
:show-inheritance:
|
|
13
|
+
:undoc-members:
|
|
14
|
+
|
|
15
|
+
pygeai.gam.endpoints module
|
|
16
|
+
---------------------------
|
|
17
|
+
|
|
18
|
+
.. automodule:: pygeai.gam.endpoints
|
|
19
|
+
:members:
|
|
20
|
+
:show-inheritance:
|
|
21
|
+
:undoc-members:
|
|
22
|
+
|
|
23
|
+
Module contents
|
|
24
|
+
---------------
|
|
25
|
+
|
|
26
|
+
.. automodule:: pygeai.gam
|
|
27
|
+
:members:
|
|
28
|
+
:show-inheritance:
|
|
29
|
+
:undoc-members:
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
pygeai.health package
|
|
2
|
+
=====================
|
|
3
|
+
|
|
4
|
+
Submodules
|
|
5
|
+
----------
|
|
6
|
+
|
|
7
|
+
pygeai.health.clients module
|
|
8
|
+
----------------------------
|
|
9
|
+
|
|
10
|
+
.. automodule:: pygeai.health.clients
|
|
11
|
+
:members:
|
|
12
|
+
:show-inheritance:
|
|
13
|
+
:undoc-members:
|
|
14
|
+
|
|
15
|
+
pygeai.health.endpoints module
|
|
16
|
+
------------------------------
|
|
17
|
+
|
|
18
|
+
.. automodule:: pygeai.health.endpoints
|
|
19
|
+
:members:
|
|
20
|
+
:show-inheritance:
|
|
21
|
+
:undoc-members:
|
|
22
|
+
|
|
23
|
+
Module contents
|
|
24
|
+
---------------
|
|
25
|
+
|
|
26
|
+
.. automodule:: pygeai.health
|
|
27
|
+
:members:
|
|
28
|
+
:show-inheritance:
|
|
29
|
+
:undoc-members:
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
pygeai.lab.agents package
|
|
2
|
+
=========================
|
|
3
|
+
|
|
4
|
+
Submodules
|
|
5
|
+
----------
|
|
6
|
+
|
|
7
|
+
pygeai.lab.agents.clients module
|
|
8
|
+
--------------------------------
|
|
9
|
+
|
|
10
|
+
.. automodule:: pygeai.lab.agents.clients
|
|
11
|
+
:members:
|
|
12
|
+
:show-inheritance:
|
|
13
|
+
:undoc-members:
|
|
14
|
+
|
|
15
|
+
pygeai.lab.agents.endpoints module
|
|
16
|
+
----------------------------------
|
|
17
|
+
|
|
18
|
+
.. automodule:: pygeai.lab.agents.endpoints
|
|
19
|
+
:members:
|
|
20
|
+
:show-inheritance:
|
|
21
|
+
:undoc-members:
|
|
22
|
+
|
|
23
|
+
pygeai.lab.agents.mappers module
|
|
24
|
+
--------------------------------
|
|
25
|
+
|
|
26
|
+
.. automodule:: pygeai.lab.agents.mappers
|
|
27
|
+
:members:
|
|
28
|
+
:show-inheritance:
|
|
29
|
+
:undoc-members:
|
|
30
|
+
|
|
31
|
+
Module contents
|
|
32
|
+
---------------
|
|
33
|
+
|
|
34
|
+
.. automodule:: pygeai.lab.agents
|
|
35
|
+
:members:
|
|
36
|
+
:show-inheritance:
|
|
37
|
+
:undoc-members:
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
pygeai.lab.processes package
|
|
2
|
+
============================
|
|
3
|
+
|
|
4
|
+
Submodules
|
|
5
|
+
----------
|
|
6
|
+
|
|
7
|
+
pygeai.lab.processes.clients module
|
|
8
|
+
-----------------------------------
|
|
9
|
+
|
|
10
|
+
.. automodule:: pygeai.lab.processes.clients
|
|
11
|
+
:members:
|
|
12
|
+
:show-inheritance:
|
|
13
|
+
:undoc-members:
|
|
14
|
+
|
|
15
|
+
pygeai.lab.processes.endpoints module
|
|
16
|
+
-------------------------------------
|
|
17
|
+
|
|
18
|
+
.. automodule:: pygeai.lab.processes.endpoints
|
|
19
|
+
:members:
|
|
20
|
+
:show-inheritance:
|
|
21
|
+
:undoc-members:
|
|
22
|
+
|
|
23
|
+
pygeai.lab.processes.mappers module
|
|
24
|
+
-----------------------------------
|
|
25
|
+
|
|
26
|
+
.. automodule:: pygeai.lab.processes.mappers
|
|
27
|
+
:members:
|
|
28
|
+
:show-inheritance:
|
|
29
|
+
:undoc-members:
|
|
30
|
+
|
|
31
|
+
Module contents
|
|
32
|
+
---------------
|
|
33
|
+
|
|
34
|
+
.. automodule:: pygeai.lab.processes
|
|
35
|
+
:members:
|
|
36
|
+
:show-inheritance:
|
|
37
|
+
:undoc-members:
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
pygeai.lab package
|
|
2
|
+
==================
|
|
3
|
+
|
|
4
|
+
Subpackages
|
|
5
|
+
-----------
|
|
6
|
+
|
|
7
|
+
.. toctree::
|
|
8
|
+
:maxdepth: 4
|
|
9
|
+
|
|
10
|
+
pygeai.lab.agents
|
|
11
|
+
pygeai.lab.processes
|
|
12
|
+
pygeai.lab.spec
|
|
13
|
+
pygeai.lab.strategies
|
|
14
|
+
pygeai.lab.tools
|
|
15
|
+
|
|
16
|
+
Submodules
|
|
17
|
+
----------
|
|
18
|
+
|
|
19
|
+
pygeai.lab.clients module
|
|
20
|
+
-------------------------
|
|
21
|
+
|
|
22
|
+
.. automodule:: pygeai.lab.clients
|
|
23
|
+
:members:
|
|
24
|
+
:show-inheritance:
|
|
25
|
+
:undoc-members:
|
|
26
|
+
|
|
27
|
+
pygeai.lab.constants module
|
|
28
|
+
---------------------------
|
|
29
|
+
|
|
30
|
+
.. automodule:: pygeai.lab.constants
|
|
31
|
+
:members:
|
|
32
|
+
:show-inheritance:
|
|
33
|
+
:undoc-members:
|
|
34
|
+
|
|
35
|
+
pygeai.lab.managers module
|
|
36
|
+
--------------------------
|
|
37
|
+
|
|
38
|
+
.. automodule:: pygeai.lab.managers
|
|
39
|
+
:members:
|
|
40
|
+
:show-inheritance:
|
|
41
|
+
:undoc-members:
|
|
42
|
+
|
|
43
|
+
pygeai.lab.models module
|
|
44
|
+
------------------------
|
|
45
|
+
|
|
46
|
+
.. automodule:: pygeai.lab.models
|
|
47
|
+
:members:
|
|
48
|
+
:show-inheritance:
|
|
49
|
+
:undoc-members:
|
|
50
|
+
|
|
51
|
+
pygeai.lab.runners module
|
|
52
|
+
-------------------------
|
|
53
|
+
|
|
54
|
+
.. automodule:: pygeai.lab.runners
|
|
55
|
+
:members:
|
|
56
|
+
:show-inheritance:
|
|
57
|
+
:undoc-members:
|
|
58
|
+
|
|
59
|
+
Module contents
|
|
60
|
+
---------------
|
|
61
|
+
|
|
62
|
+
.. automodule:: pygeai.lab
|
|
63
|
+
:members:
|
|
64
|
+
:show-inheritance:
|
|
65
|
+
:undoc-members:
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
pygeai.lab.spec package
|
|
2
|
+
=======================
|
|
3
|
+
|
|
4
|
+
Submodules
|
|
5
|
+
----------
|
|
6
|
+
|
|
7
|
+
pygeai.lab.spec.loader module
|
|
8
|
+
-----------------------------
|
|
9
|
+
|
|
10
|
+
.. automodule:: pygeai.lab.spec.loader
|
|
11
|
+
:members:
|
|
12
|
+
:show-inheritance:
|
|
13
|
+
:undoc-members:
|
|
14
|
+
|
|
15
|
+
pygeai.lab.spec.parsers module
|
|
16
|
+
------------------------------
|
|
17
|
+
|
|
18
|
+
.. automodule:: pygeai.lab.spec.parsers
|
|
19
|
+
:members:
|
|
20
|
+
:show-inheritance:
|
|
21
|
+
:undoc-members:
|
|
22
|
+
|
|
23
|
+
Module contents
|
|
24
|
+
---------------
|
|
25
|
+
|
|
26
|
+
.. automodule:: pygeai.lab.spec
|
|
27
|
+
:members:
|
|
28
|
+
:show-inheritance:
|
|
29
|
+
:undoc-members:
|