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,37 @@
|
|
|
1
|
+
pygeai.lab.strategies package
|
|
2
|
+
=============================
|
|
3
|
+
|
|
4
|
+
Submodules
|
|
5
|
+
----------
|
|
6
|
+
|
|
7
|
+
pygeai.lab.strategies.clients module
|
|
8
|
+
------------------------------------
|
|
9
|
+
|
|
10
|
+
.. automodule:: pygeai.lab.strategies.clients
|
|
11
|
+
:members:
|
|
12
|
+
:show-inheritance:
|
|
13
|
+
:undoc-members:
|
|
14
|
+
|
|
15
|
+
pygeai.lab.strategies.endpoints module
|
|
16
|
+
--------------------------------------
|
|
17
|
+
|
|
18
|
+
.. automodule:: pygeai.lab.strategies.endpoints
|
|
19
|
+
:members:
|
|
20
|
+
:show-inheritance:
|
|
21
|
+
:undoc-members:
|
|
22
|
+
|
|
23
|
+
pygeai.lab.strategies.mappers module
|
|
24
|
+
------------------------------------
|
|
25
|
+
|
|
26
|
+
.. automodule:: pygeai.lab.strategies.mappers
|
|
27
|
+
:members:
|
|
28
|
+
:show-inheritance:
|
|
29
|
+
:undoc-members:
|
|
30
|
+
|
|
31
|
+
Module contents
|
|
32
|
+
---------------
|
|
33
|
+
|
|
34
|
+
.. automodule:: pygeai.lab.strategies
|
|
35
|
+
:members:
|
|
36
|
+
:show-inheritance:
|
|
37
|
+
:undoc-members:
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
pygeai.lab.tools package
|
|
2
|
+
========================
|
|
3
|
+
|
|
4
|
+
Submodules
|
|
5
|
+
----------
|
|
6
|
+
|
|
7
|
+
pygeai.lab.tools.clients module
|
|
8
|
+
-------------------------------
|
|
9
|
+
|
|
10
|
+
.. automodule:: pygeai.lab.tools.clients
|
|
11
|
+
:members:
|
|
12
|
+
:show-inheritance:
|
|
13
|
+
:undoc-members:
|
|
14
|
+
|
|
15
|
+
pygeai.lab.tools.endpoints module
|
|
16
|
+
---------------------------------
|
|
17
|
+
|
|
18
|
+
.. automodule:: pygeai.lab.tools.endpoints
|
|
19
|
+
:members:
|
|
20
|
+
:show-inheritance:
|
|
21
|
+
:undoc-members:
|
|
22
|
+
|
|
23
|
+
pygeai.lab.tools.mappers module
|
|
24
|
+
-------------------------------
|
|
25
|
+
|
|
26
|
+
.. automodule:: pygeai.lab.tools.mappers
|
|
27
|
+
:members:
|
|
28
|
+
:show-inheritance:
|
|
29
|
+
:undoc-members:
|
|
30
|
+
|
|
31
|
+
Module contents
|
|
32
|
+
---------------
|
|
33
|
+
|
|
34
|
+
.. automodule:: pygeai.lab.tools
|
|
35
|
+
:members:
|
|
36
|
+
:show-inheritance:
|
|
37
|
+
:undoc-members:
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
pygeai.man package
|
|
2
|
+
==================
|
|
3
|
+
|
|
4
|
+
Subpackages
|
|
5
|
+
-----------
|
|
6
|
+
|
|
7
|
+
.. toctree::
|
|
8
|
+
:maxdepth: 4
|
|
9
|
+
|
|
10
|
+
pygeai.man.man1
|
|
11
|
+
|
|
12
|
+
Module contents
|
|
13
|
+
---------------
|
|
14
|
+
|
|
15
|
+
.. automodule:: pygeai.man
|
|
16
|
+
:members:
|
|
17
|
+
:show-inheritance:
|
|
18
|
+
:undoc-members:
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
pygeai.migration package
|
|
2
|
+
========================
|
|
3
|
+
|
|
4
|
+
Submodules
|
|
5
|
+
----------
|
|
6
|
+
|
|
7
|
+
pygeai.migration.strategies module
|
|
8
|
+
----------------------------------
|
|
9
|
+
|
|
10
|
+
.. automodule:: pygeai.migration.strategies
|
|
11
|
+
:members:
|
|
12
|
+
:show-inheritance:
|
|
13
|
+
:undoc-members:
|
|
14
|
+
|
|
15
|
+
pygeai.migration.tools module
|
|
16
|
+
-----------------------------
|
|
17
|
+
|
|
18
|
+
.. automodule:: pygeai.migration.tools
|
|
19
|
+
:members:
|
|
20
|
+
:show-inheritance:
|
|
21
|
+
:undoc-members:
|
|
22
|
+
|
|
23
|
+
Module contents
|
|
24
|
+
---------------
|
|
25
|
+
|
|
26
|
+
.. automodule:: pygeai.migration
|
|
27
|
+
:members:
|
|
28
|
+
:show-inheritance:
|
|
29
|
+
:undoc-members:
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
pygeai.organization.limits package
|
|
2
|
+
==================================
|
|
3
|
+
|
|
4
|
+
Submodules
|
|
5
|
+
----------
|
|
6
|
+
|
|
7
|
+
pygeai.organization.limits.clients module
|
|
8
|
+
-----------------------------------------
|
|
9
|
+
|
|
10
|
+
.. automodule:: pygeai.organization.limits.clients
|
|
11
|
+
:members:
|
|
12
|
+
:show-inheritance:
|
|
13
|
+
:undoc-members:
|
|
14
|
+
|
|
15
|
+
pygeai.organization.limits.endpoints module
|
|
16
|
+
-------------------------------------------
|
|
17
|
+
|
|
18
|
+
.. automodule:: pygeai.organization.limits.endpoints
|
|
19
|
+
:members:
|
|
20
|
+
:show-inheritance:
|
|
21
|
+
:undoc-members:
|
|
22
|
+
|
|
23
|
+
pygeai.organization.limits.managers module
|
|
24
|
+
------------------------------------------
|
|
25
|
+
|
|
26
|
+
.. automodule:: pygeai.organization.limits.managers
|
|
27
|
+
:members:
|
|
28
|
+
:show-inheritance:
|
|
29
|
+
:undoc-members:
|
|
30
|
+
|
|
31
|
+
pygeai.organization.limits.mappers module
|
|
32
|
+
-----------------------------------------
|
|
33
|
+
|
|
34
|
+
.. automodule:: pygeai.organization.limits.mappers
|
|
35
|
+
:members:
|
|
36
|
+
:show-inheritance:
|
|
37
|
+
:undoc-members:
|
|
38
|
+
|
|
39
|
+
Module contents
|
|
40
|
+
---------------
|
|
41
|
+
|
|
42
|
+
.. automodule:: pygeai.organization.limits
|
|
43
|
+
:members:
|
|
44
|
+
:show-inheritance:
|
|
45
|
+
:undoc-members:
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
pygeai.organization package
|
|
2
|
+
===========================
|
|
3
|
+
|
|
4
|
+
Subpackages
|
|
5
|
+
-----------
|
|
6
|
+
|
|
7
|
+
.. toctree::
|
|
8
|
+
:maxdepth: 4
|
|
9
|
+
|
|
10
|
+
pygeai.organization.limits
|
|
11
|
+
|
|
12
|
+
Submodules
|
|
13
|
+
----------
|
|
14
|
+
|
|
15
|
+
pygeai.organization.clients module
|
|
16
|
+
----------------------------------
|
|
17
|
+
|
|
18
|
+
.. automodule:: pygeai.organization.clients
|
|
19
|
+
:members:
|
|
20
|
+
:show-inheritance:
|
|
21
|
+
:undoc-members:
|
|
22
|
+
|
|
23
|
+
pygeai.organization.endpoints module
|
|
24
|
+
------------------------------------
|
|
25
|
+
|
|
26
|
+
.. automodule:: pygeai.organization.endpoints
|
|
27
|
+
:members:
|
|
28
|
+
:show-inheritance:
|
|
29
|
+
:undoc-members:
|
|
30
|
+
|
|
31
|
+
pygeai.organization.managers module
|
|
32
|
+
-----------------------------------
|
|
33
|
+
|
|
34
|
+
.. automodule:: pygeai.organization.managers
|
|
35
|
+
:members:
|
|
36
|
+
:show-inheritance:
|
|
37
|
+
:undoc-members:
|
|
38
|
+
|
|
39
|
+
pygeai.organization.mappers module
|
|
40
|
+
----------------------------------
|
|
41
|
+
|
|
42
|
+
.. automodule:: pygeai.organization.mappers
|
|
43
|
+
:members:
|
|
44
|
+
:show-inheritance:
|
|
45
|
+
:undoc-members:
|
|
46
|
+
|
|
47
|
+
pygeai.organization.responses module
|
|
48
|
+
------------------------------------
|
|
49
|
+
|
|
50
|
+
.. automodule:: pygeai.organization.responses
|
|
51
|
+
:members:
|
|
52
|
+
:show-inheritance:
|
|
53
|
+
:undoc-members:
|
|
54
|
+
|
|
55
|
+
Module contents
|
|
56
|
+
---------------
|
|
57
|
+
|
|
58
|
+
.. automodule:: pygeai.organization
|
|
59
|
+
:members:
|
|
60
|
+
:show-inheritance:
|
|
61
|
+
:undoc-members:
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
pygeai.proxy package
|
|
2
|
+
====================
|
|
3
|
+
|
|
4
|
+
Submodules
|
|
5
|
+
----------
|
|
6
|
+
|
|
7
|
+
pygeai.proxy.clients module
|
|
8
|
+
---------------------------
|
|
9
|
+
|
|
10
|
+
.. automodule:: pygeai.proxy.clients
|
|
11
|
+
:members:
|
|
12
|
+
:show-inheritance:
|
|
13
|
+
:undoc-members:
|
|
14
|
+
|
|
15
|
+
pygeai.proxy.config module
|
|
16
|
+
--------------------------
|
|
17
|
+
|
|
18
|
+
.. automodule:: pygeai.proxy.config
|
|
19
|
+
:members:
|
|
20
|
+
:show-inheritance:
|
|
21
|
+
:undoc-members:
|
|
22
|
+
|
|
23
|
+
pygeai.proxy.managers module
|
|
24
|
+
----------------------------
|
|
25
|
+
|
|
26
|
+
.. automodule:: pygeai.proxy.managers
|
|
27
|
+
:members:
|
|
28
|
+
:show-inheritance:
|
|
29
|
+
:undoc-members:
|
|
30
|
+
|
|
31
|
+
pygeai.proxy.servers module
|
|
32
|
+
---------------------------
|
|
33
|
+
|
|
34
|
+
.. automodule:: pygeai.proxy.servers
|
|
35
|
+
:members:
|
|
36
|
+
:show-inheritance:
|
|
37
|
+
:undoc-members:
|
|
38
|
+
|
|
39
|
+
pygeai.proxy.tool module
|
|
40
|
+
------------------------
|
|
41
|
+
|
|
42
|
+
.. automodule:: pygeai.proxy.tool
|
|
43
|
+
:members:
|
|
44
|
+
:show-inheritance:
|
|
45
|
+
:undoc-members:
|
|
46
|
+
|
|
47
|
+
Module contents
|
|
48
|
+
---------------
|
|
49
|
+
|
|
50
|
+
.. automodule:: pygeai.proxy
|
|
51
|
+
:members:
|
|
52
|
+
:show-inheritance:
|
|
53
|
+
:undoc-members:
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
pygeai package
|
|
2
|
+
==============
|
|
3
|
+
|
|
4
|
+
Subpackages
|
|
5
|
+
-----------
|
|
6
|
+
|
|
7
|
+
.. toctree::
|
|
8
|
+
:maxdepth: 4
|
|
9
|
+
|
|
10
|
+
pygeai.admin
|
|
11
|
+
pygeai.assistant
|
|
12
|
+
pygeai.chat
|
|
13
|
+
pygeai.cli
|
|
14
|
+
pygeai.core
|
|
15
|
+
pygeai.dbg
|
|
16
|
+
pygeai.evaluation
|
|
17
|
+
pygeai.flows
|
|
18
|
+
pygeai.gam
|
|
19
|
+
pygeai.health
|
|
20
|
+
pygeai.lab
|
|
21
|
+
pygeai.man
|
|
22
|
+
pygeai.migration
|
|
23
|
+
pygeai.organization
|
|
24
|
+
pygeai.proxy
|
|
25
|
+
pygeai.tests
|
|
26
|
+
|
|
27
|
+
Module contents
|
|
28
|
+
---------------
|
|
29
|
+
|
|
30
|
+
.. automodule:: pygeai
|
|
31
|
+
:members:
|
|
32
|
+
:show-inheritance:
|
|
33
|
+
:undoc-members:
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
pygeai.tests.admin package
|
|
2
|
+
==========================
|
|
3
|
+
|
|
4
|
+
Submodules
|
|
5
|
+
----------
|
|
6
|
+
|
|
7
|
+
pygeai.tests.admin.test\_clients module
|
|
8
|
+
---------------------------------------
|
|
9
|
+
|
|
10
|
+
.. automodule:: pygeai.tests.admin.test_clients
|
|
11
|
+
:members:
|
|
12
|
+
:show-inheritance:
|
|
13
|
+
:undoc-members:
|
|
14
|
+
|
|
15
|
+
Module contents
|
|
16
|
+
---------------
|
|
17
|
+
|
|
18
|
+
.. automodule:: pygeai.tests.admin
|
|
19
|
+
:members:
|
|
20
|
+
:show-inheritance:
|
|
21
|
+
:undoc-members:
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
pygeai.tests.assistants.rag package
|
|
2
|
+
===================================
|
|
3
|
+
|
|
4
|
+
Submodules
|
|
5
|
+
----------
|
|
6
|
+
|
|
7
|
+
pygeai.tests.assistants.rag.test\_clients module
|
|
8
|
+
------------------------------------------------
|
|
9
|
+
|
|
10
|
+
.. automodule:: pygeai.tests.assistants.rag.test_clients
|
|
11
|
+
:members:
|
|
12
|
+
:show-inheritance:
|
|
13
|
+
:undoc-members:
|
|
14
|
+
|
|
15
|
+
pygeai.tests.assistants.rag.test\_mappers module
|
|
16
|
+
------------------------------------------------
|
|
17
|
+
|
|
18
|
+
.. automodule:: pygeai.tests.assistants.rag.test_mappers
|
|
19
|
+
:members:
|
|
20
|
+
:show-inheritance:
|
|
21
|
+
:undoc-members:
|
|
22
|
+
|
|
23
|
+
pygeai.tests.assistants.rag.test\_models module
|
|
24
|
+
-----------------------------------------------
|
|
25
|
+
|
|
26
|
+
.. automodule:: pygeai.tests.assistants.rag.test_models
|
|
27
|
+
:members:
|
|
28
|
+
:show-inheritance:
|
|
29
|
+
:undoc-members:
|
|
30
|
+
|
|
31
|
+
Module contents
|
|
32
|
+
---------------
|
|
33
|
+
|
|
34
|
+
.. automodule:: pygeai.tests.assistants.rag
|
|
35
|
+
:members:
|
|
36
|
+
:show-inheritance:
|
|
37
|
+
:undoc-members:
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
pygeai.tests.assistants package
|
|
2
|
+
===============================
|
|
3
|
+
|
|
4
|
+
Subpackages
|
|
5
|
+
-----------
|
|
6
|
+
|
|
7
|
+
.. toctree::
|
|
8
|
+
:maxdepth: 4
|
|
9
|
+
|
|
10
|
+
pygeai.tests.assistants.rag
|
|
11
|
+
|
|
12
|
+
Submodules
|
|
13
|
+
----------
|
|
14
|
+
|
|
15
|
+
pygeai.tests.assistants.test\_clients module
|
|
16
|
+
--------------------------------------------
|
|
17
|
+
|
|
18
|
+
.. automodule:: pygeai.tests.assistants.test_clients
|
|
19
|
+
:members:
|
|
20
|
+
:show-inheritance:
|
|
21
|
+
:undoc-members:
|
|
22
|
+
|
|
23
|
+
pygeai.tests.assistants.test\_managers module
|
|
24
|
+
---------------------------------------------
|
|
25
|
+
|
|
26
|
+
.. automodule:: pygeai.tests.assistants.test_managers
|
|
27
|
+
:members:
|
|
28
|
+
:show-inheritance:
|
|
29
|
+
:undoc-members:
|
|
30
|
+
|
|
31
|
+
pygeai.tests.assistants.test\_mappers module
|
|
32
|
+
--------------------------------------------
|
|
33
|
+
|
|
34
|
+
.. automodule:: pygeai.tests.assistants.test_mappers
|
|
35
|
+
:members:
|
|
36
|
+
:show-inheritance:
|
|
37
|
+
:undoc-members:
|
|
38
|
+
|
|
39
|
+
Module contents
|
|
40
|
+
---------------
|
|
41
|
+
|
|
42
|
+
.. automodule:: pygeai.tests.assistants
|
|
43
|
+
:members:
|
|
44
|
+
:show-inheritance:
|
|
45
|
+
:undoc-members:
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
pygeai.tests.chat package
|
|
2
|
+
=========================
|
|
3
|
+
|
|
4
|
+
Submodules
|
|
5
|
+
----------
|
|
6
|
+
|
|
7
|
+
pygeai.tests.chat.test\_clients module
|
|
8
|
+
--------------------------------------
|
|
9
|
+
|
|
10
|
+
.. automodule:: pygeai.tests.chat.test_clients
|
|
11
|
+
:members:
|
|
12
|
+
:show-inheritance:
|
|
13
|
+
:undoc-members:
|
|
14
|
+
|
|
15
|
+
pygeai.tests.chat.test\_iris module
|
|
16
|
+
-----------------------------------
|
|
17
|
+
|
|
18
|
+
.. automodule:: pygeai.tests.chat.test_iris
|
|
19
|
+
:members:
|
|
20
|
+
:show-inheritance:
|
|
21
|
+
:undoc-members:
|
|
22
|
+
|
|
23
|
+
pygeai.tests.chat.test\_session module
|
|
24
|
+
--------------------------------------
|
|
25
|
+
|
|
26
|
+
.. automodule:: pygeai.tests.chat.test_session
|
|
27
|
+
:members:
|
|
28
|
+
:show-inheritance:
|
|
29
|
+
:undoc-members:
|
|
30
|
+
|
|
31
|
+
pygeai.tests.chat.test\_ui module
|
|
32
|
+
---------------------------------
|
|
33
|
+
|
|
34
|
+
.. automodule:: pygeai.tests.chat.test_ui
|
|
35
|
+
:members:
|
|
36
|
+
:show-inheritance:
|
|
37
|
+
:undoc-members:
|
|
38
|
+
|
|
39
|
+
Module contents
|
|
40
|
+
---------------
|
|
41
|
+
|
|
42
|
+
.. automodule:: pygeai.tests.chat
|
|
43
|
+
:members:
|
|
44
|
+
:show-inheritance:
|
|
45
|
+
:undoc-members:
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
pygeai.tests.cli.commands.lab package
|
|
2
|
+
=====================================
|
|
3
|
+
|
|
4
|
+
Submodules
|
|
5
|
+
----------
|
|
6
|
+
|
|
7
|
+
pygeai.tests.cli.commands.lab.test\_ai\_lab module
|
|
8
|
+
--------------------------------------------------
|
|
9
|
+
|
|
10
|
+
.. automodule:: pygeai.tests.cli.commands.lab.test_ai_lab
|
|
11
|
+
:members:
|
|
12
|
+
:show-inheritance:
|
|
13
|
+
:undoc-members:
|
|
14
|
+
|
|
15
|
+
pygeai.tests.cli.commands.lab.test\_common module
|
|
16
|
+
-------------------------------------------------
|
|
17
|
+
|
|
18
|
+
.. automodule:: pygeai.tests.cli.commands.lab.test_common
|
|
19
|
+
:members:
|
|
20
|
+
:show-inheritance:
|
|
21
|
+
:undoc-members:
|
|
22
|
+
|
|
23
|
+
pygeai.tests.cli.commands.lab.test\_spec module
|
|
24
|
+
-----------------------------------------------
|
|
25
|
+
|
|
26
|
+
.. automodule:: pygeai.tests.cli.commands.lab.test_spec
|
|
27
|
+
:members:
|
|
28
|
+
:show-inheritance:
|
|
29
|
+
:undoc-members:
|
|
30
|
+
|
|
31
|
+
Module contents
|
|
32
|
+
---------------
|
|
33
|
+
|
|
34
|
+
.. automodule:: pygeai.tests.cli.commands.lab
|
|
35
|
+
:members:
|
|
36
|
+
:show-inheritance:
|
|
37
|
+
:undoc-members:
|
|
@@ -0,0 +1,149 @@
|
|
|
1
|
+
pygeai.tests.cli.commands package
|
|
2
|
+
=================================
|
|
3
|
+
|
|
4
|
+
Subpackages
|
|
5
|
+
-----------
|
|
6
|
+
|
|
7
|
+
.. toctree::
|
|
8
|
+
:maxdepth: 4
|
|
9
|
+
|
|
10
|
+
pygeai.tests.cli.commands.lab
|
|
11
|
+
|
|
12
|
+
Submodules
|
|
13
|
+
----------
|
|
14
|
+
|
|
15
|
+
pygeai.tests.cli.commands.test\_assistant module
|
|
16
|
+
------------------------------------------------
|
|
17
|
+
|
|
18
|
+
.. automodule:: pygeai.tests.cli.commands.test_assistant
|
|
19
|
+
:members:
|
|
20
|
+
:show-inheritance:
|
|
21
|
+
:undoc-members:
|
|
22
|
+
|
|
23
|
+
pygeai.tests.cli.commands.test\_chat module
|
|
24
|
+
-------------------------------------------
|
|
25
|
+
|
|
26
|
+
.. automodule:: pygeai.tests.cli.commands.test_chat
|
|
27
|
+
:members:
|
|
28
|
+
:show-inheritance:
|
|
29
|
+
:undoc-members:
|
|
30
|
+
|
|
31
|
+
pygeai.tests.cli.commands.test\_common module
|
|
32
|
+
---------------------------------------------
|
|
33
|
+
|
|
34
|
+
.. automodule:: pygeai.tests.cli.commands.test_common
|
|
35
|
+
:members:
|
|
36
|
+
:show-inheritance:
|
|
37
|
+
:undoc-members:
|
|
38
|
+
|
|
39
|
+
pygeai.tests.cli.commands.test\_embeddings module
|
|
40
|
+
-------------------------------------------------
|
|
41
|
+
|
|
42
|
+
.. automodule:: pygeai.tests.cli.commands.test_embeddings
|
|
43
|
+
:members:
|
|
44
|
+
:show-inheritance:
|
|
45
|
+
:undoc-members:
|
|
46
|
+
|
|
47
|
+
pygeai.tests.cli.commands.test\_feedback module
|
|
48
|
+
-----------------------------------------------
|
|
49
|
+
|
|
50
|
+
.. automodule:: pygeai.tests.cli.commands.test_feedback
|
|
51
|
+
:members:
|
|
52
|
+
:show-inheritance:
|
|
53
|
+
:undoc-members:
|
|
54
|
+
|
|
55
|
+
pygeai.tests.cli.commands.test\_files module
|
|
56
|
+
--------------------------------------------
|
|
57
|
+
|
|
58
|
+
.. automodule:: pygeai.tests.cli.commands.test_files
|
|
59
|
+
:members:
|
|
60
|
+
:show-inheritance:
|
|
61
|
+
:undoc-members:
|
|
62
|
+
|
|
63
|
+
pygeai.tests.cli.commands.test\_gam module
|
|
64
|
+
------------------------------------------
|
|
65
|
+
|
|
66
|
+
.. automodule:: pygeai.tests.cli.commands.test_gam
|
|
67
|
+
:members:
|
|
68
|
+
:show-inheritance:
|
|
69
|
+
:undoc-members:
|
|
70
|
+
|
|
71
|
+
pygeai.tests.cli.commands.test\_llm module
|
|
72
|
+
------------------------------------------
|
|
73
|
+
|
|
74
|
+
.. automodule:: pygeai.tests.cli.commands.test_llm
|
|
75
|
+
:members:
|
|
76
|
+
:show-inheritance:
|
|
77
|
+
:undoc-members:
|
|
78
|
+
|
|
79
|
+
pygeai.tests.cli.commands.test\_migrate module
|
|
80
|
+
----------------------------------------------
|
|
81
|
+
|
|
82
|
+
.. automodule:: pygeai.tests.cli.commands.test_migrate
|
|
83
|
+
:members:
|
|
84
|
+
:show-inheritance:
|
|
85
|
+
:undoc-members:
|
|
86
|
+
|
|
87
|
+
pygeai.tests.cli.commands.test\_organization module
|
|
88
|
+
---------------------------------------------------
|
|
89
|
+
|
|
90
|
+
.. automodule:: pygeai.tests.cli.commands.test_organization
|
|
91
|
+
:members:
|
|
92
|
+
:show-inheritance:
|
|
93
|
+
:undoc-members:
|
|
94
|
+
|
|
95
|
+
pygeai.tests.cli.commands.test\_rag module
|
|
96
|
+
------------------------------------------
|
|
97
|
+
|
|
98
|
+
.. automodule:: pygeai.tests.cli.commands.test_rag
|
|
99
|
+
:members:
|
|
100
|
+
:show-inheritance:
|
|
101
|
+
:undoc-members:
|
|
102
|
+
|
|
103
|
+
pygeai.tests.cli.commands.test\_rerank module
|
|
104
|
+
---------------------------------------------
|
|
105
|
+
|
|
106
|
+
.. automodule:: pygeai.tests.cli.commands.test_rerank
|
|
107
|
+
:members:
|
|
108
|
+
:show-inheritance:
|
|
109
|
+
:undoc-members:
|
|
110
|
+
|
|
111
|
+
pygeai.tests.cli.commands.test\_show\_help module
|
|
112
|
+
-------------------------------------------------
|
|
113
|
+
|
|
114
|
+
.. automodule:: pygeai.tests.cli.commands.test_show_help
|
|
115
|
+
:members:
|
|
116
|
+
:show-inheritance:
|
|
117
|
+
:undoc-members:
|
|
118
|
+
|
|
119
|
+
pygeai.tests.cli.commands.test\_usage\_limits module
|
|
120
|
+
----------------------------------------------------
|
|
121
|
+
|
|
122
|
+
.. automodule:: pygeai.tests.cli.commands.test_usage_limits
|
|
123
|
+
:members:
|
|
124
|
+
:show-inheritance:
|
|
125
|
+
:undoc-members:
|
|
126
|
+
|
|
127
|
+
pygeai.tests.cli.commands.test\_validators module
|
|
128
|
+
-------------------------------------------------
|
|
129
|
+
|
|
130
|
+
.. automodule:: pygeai.tests.cli.commands.test_validators
|
|
131
|
+
:members:
|
|
132
|
+
:show-inheritance:
|
|
133
|
+
:undoc-members:
|
|
134
|
+
|
|
135
|
+
pygeai.tests.cli.commands.test\_version module
|
|
136
|
+
----------------------------------------------
|
|
137
|
+
|
|
138
|
+
.. automodule:: pygeai.tests.cli.commands.test_version
|
|
139
|
+
:members:
|
|
140
|
+
:show-inheritance:
|
|
141
|
+
:undoc-members:
|
|
142
|
+
|
|
143
|
+
Module contents
|
|
144
|
+
---------------
|
|
145
|
+
|
|
146
|
+
.. automodule:: pygeai.tests.cli.commands
|
|
147
|
+
:members:
|
|
148
|
+
:show-inheritance:
|
|
149
|
+
:undoc-members:
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
pygeai.tests.cli package
|
|
2
|
+
========================
|
|
3
|
+
|
|
4
|
+
Subpackages
|
|
5
|
+
-----------
|
|
6
|
+
|
|
7
|
+
.. toctree::
|
|
8
|
+
:maxdepth: 4
|
|
9
|
+
|
|
10
|
+
pygeai.tests.cli.commands
|
|
11
|
+
pygeai.tests.cli.docker
|
|
12
|
+
|
|
13
|
+
Submodules
|
|
14
|
+
----------
|
|
15
|
+
|
|
16
|
+
pygeai.tests.cli.test\_parsers module
|
|
17
|
+
-------------------------------------
|
|
18
|
+
|
|
19
|
+
.. automodule:: pygeai.tests.cli.test_parsers
|
|
20
|
+
:members:
|
|
21
|
+
:show-inheritance:
|
|
22
|
+
:undoc-members:
|
|
23
|
+
|
|
24
|
+
Module contents
|
|
25
|
+
---------------
|
|
26
|
+
|
|
27
|
+
.. automodule:: pygeai.tests.cli
|
|
28
|
+
:members:
|
|
29
|
+
:show-inheritance:
|
|
30
|
+
:undoc-members:
|