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,78 @@
|
|
|
1
|
+
pygeai.tests.snippets.assistants package
|
|
2
|
+
========================================
|
|
3
|
+
|
|
4
|
+
Subpackages
|
|
5
|
+
-----------
|
|
6
|
+
|
|
7
|
+
.. toctree::
|
|
8
|
+
:maxdepth: 4
|
|
9
|
+
|
|
10
|
+
pygeai.tests.snippets.assistants.data_analyst
|
|
11
|
+
pygeai.tests.snippets.assistants.rag
|
|
12
|
+
|
|
13
|
+
Submodules
|
|
14
|
+
----------
|
|
15
|
+
|
|
16
|
+
pygeai.tests.snippets.assistants.create\_chat\_assistant module
|
|
17
|
+
---------------------------------------------------------------
|
|
18
|
+
|
|
19
|
+
.. automodule:: pygeai.tests.snippets.assistants.create_chat_assistant
|
|
20
|
+
:members:
|
|
21
|
+
:show-inheritance:
|
|
22
|
+
:undoc-members:
|
|
23
|
+
|
|
24
|
+
pygeai.tests.snippets.assistants.create\_text\_assistant module
|
|
25
|
+
---------------------------------------------------------------
|
|
26
|
+
|
|
27
|
+
.. automodule:: pygeai.tests.snippets.assistants.create_text_assistant
|
|
28
|
+
:members:
|
|
29
|
+
:show-inheritance:
|
|
30
|
+
:undoc-members:
|
|
31
|
+
|
|
32
|
+
pygeai.tests.snippets.assistants.file\_summarizer\_assistant module
|
|
33
|
+
-------------------------------------------------------------------
|
|
34
|
+
|
|
35
|
+
.. automodule:: pygeai.tests.snippets.assistants.file_summarizer_assistant
|
|
36
|
+
:members:
|
|
37
|
+
:show-inheritance:
|
|
38
|
+
:undoc-members:
|
|
39
|
+
|
|
40
|
+
pygeai.tests.snippets.assistants.get\_assistant\_data module
|
|
41
|
+
------------------------------------------------------------
|
|
42
|
+
|
|
43
|
+
.. automodule:: pygeai.tests.snippets.assistants.get_assistant_data
|
|
44
|
+
:members:
|
|
45
|
+
:show-inheritance:
|
|
46
|
+
:undoc-members:
|
|
47
|
+
|
|
48
|
+
pygeai.tests.snippets.assistants.get\_assistant\_list module
|
|
49
|
+
------------------------------------------------------------
|
|
50
|
+
|
|
51
|
+
.. automodule:: pygeai.tests.snippets.assistants.get_assistant_list
|
|
52
|
+
:members:
|
|
53
|
+
:show-inheritance:
|
|
54
|
+
:undoc-members:
|
|
55
|
+
|
|
56
|
+
pygeai.tests.snippets.assistants.send\_feedback module
|
|
57
|
+
------------------------------------------------------
|
|
58
|
+
|
|
59
|
+
.. automodule:: pygeai.tests.snippets.assistants.send_feedback
|
|
60
|
+
:members:
|
|
61
|
+
:show-inheritance:
|
|
62
|
+
:undoc-members:
|
|
63
|
+
|
|
64
|
+
pygeai.tests.snippets.assistants.update\_chat\_assistant module
|
|
65
|
+
---------------------------------------------------------------
|
|
66
|
+
|
|
67
|
+
.. automodule:: pygeai.tests.snippets.assistants.update_chat_assistant
|
|
68
|
+
:members:
|
|
69
|
+
:show-inheritance:
|
|
70
|
+
:undoc-members:
|
|
71
|
+
|
|
72
|
+
Module contents
|
|
73
|
+
---------------
|
|
74
|
+
|
|
75
|
+
.. automodule:: pygeai.tests.snippets.assistants
|
|
76
|
+
:members:
|
|
77
|
+
:show-inheritance:
|
|
78
|
+
:undoc-members:
|
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
pygeai.tests.snippets.chat package
|
|
2
|
+
==================================
|
|
3
|
+
|
|
4
|
+
Submodules
|
|
5
|
+
----------
|
|
6
|
+
|
|
7
|
+
pygeai.tests.snippets.chat.cancel\_request module
|
|
8
|
+
-------------------------------------------------
|
|
9
|
+
|
|
10
|
+
.. automodule:: pygeai.tests.snippets.chat.cancel_request
|
|
11
|
+
:members:
|
|
12
|
+
:show-inheritance:
|
|
13
|
+
:undoc-members:
|
|
14
|
+
|
|
15
|
+
pygeai.tests.snippets.chat.chat\_completion module
|
|
16
|
+
--------------------------------------------------
|
|
17
|
+
|
|
18
|
+
.. automodule:: pygeai.tests.snippets.chat.chat_completion
|
|
19
|
+
:members:
|
|
20
|
+
:show-inheritance:
|
|
21
|
+
:undoc-members:
|
|
22
|
+
|
|
23
|
+
pygeai.tests.snippets.chat.chat\_completion\_1 module
|
|
24
|
+
-----------------------------------------------------
|
|
25
|
+
|
|
26
|
+
.. automodule:: pygeai.tests.snippets.chat.chat_completion_1
|
|
27
|
+
:members:
|
|
28
|
+
:show-inheritance:
|
|
29
|
+
:undoc-members:
|
|
30
|
+
|
|
31
|
+
pygeai.tests.snippets.chat.chat\_completion\_2 module
|
|
32
|
+
-----------------------------------------------------
|
|
33
|
+
|
|
34
|
+
.. automodule:: pygeai.tests.snippets.chat.chat_completion_2
|
|
35
|
+
:members:
|
|
36
|
+
:show-inheritance:
|
|
37
|
+
:undoc-members:
|
|
38
|
+
|
|
39
|
+
pygeai.tests.snippets.chat.chat\_completion\_3 module
|
|
40
|
+
-----------------------------------------------------
|
|
41
|
+
|
|
42
|
+
.. automodule:: pygeai.tests.snippets.chat.chat_completion_3
|
|
43
|
+
:members:
|
|
44
|
+
:show-inheritance:
|
|
45
|
+
:undoc-members:
|
|
46
|
+
|
|
47
|
+
pygeai.tests.snippets.chat.chat\_completion\_4 module
|
|
48
|
+
-----------------------------------------------------
|
|
49
|
+
|
|
50
|
+
.. automodule:: pygeai.tests.snippets.chat.chat_completion_4
|
|
51
|
+
:members:
|
|
52
|
+
:show-inheritance:
|
|
53
|
+
:undoc-members:
|
|
54
|
+
|
|
55
|
+
pygeai.tests.snippets.chat.chat\_completion\_streaming module
|
|
56
|
+
-------------------------------------------------------------
|
|
57
|
+
|
|
58
|
+
.. automodule:: pygeai.tests.snippets.chat.chat_completion_streaming
|
|
59
|
+
:members:
|
|
60
|
+
:show-inheritance:
|
|
61
|
+
:undoc-members:
|
|
62
|
+
|
|
63
|
+
pygeai.tests.snippets.chat.get\_request\_status module
|
|
64
|
+
------------------------------------------------------
|
|
65
|
+
|
|
66
|
+
.. automodule:: pygeai.tests.snippets.chat.get_request_status
|
|
67
|
+
:members:
|
|
68
|
+
:show-inheritance:
|
|
69
|
+
:undoc-members:
|
|
70
|
+
|
|
71
|
+
pygeai.tests.snippets.chat.send\_chat\_request module
|
|
72
|
+
-----------------------------------------------------
|
|
73
|
+
|
|
74
|
+
.. automodule:: pygeai.tests.snippets.chat.send_chat_request
|
|
75
|
+
:members:
|
|
76
|
+
:show-inheritance:
|
|
77
|
+
:undoc-members:
|
|
78
|
+
|
|
79
|
+
Module contents
|
|
80
|
+
---------------
|
|
81
|
+
|
|
82
|
+
.. automodule:: pygeai.tests.snippets.chat
|
|
83
|
+
:members:
|
|
84
|
+
:show-inheritance:
|
|
85
|
+
:undoc-members:
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
pygeai.tests.snippets.embeddings package
|
|
2
|
+
========================================
|
|
3
|
+
|
|
4
|
+
Submodules
|
|
5
|
+
----------
|
|
6
|
+
|
|
7
|
+
pygeai.tests.snippets.embeddings.generate\_embeddings module
|
|
8
|
+
------------------------------------------------------------
|
|
9
|
+
|
|
10
|
+
.. automodule:: pygeai.tests.snippets.embeddings.generate_embeddings
|
|
11
|
+
:members:
|
|
12
|
+
:show-inheritance:
|
|
13
|
+
:undoc-members:
|
|
14
|
+
|
|
15
|
+
Module contents
|
|
16
|
+
---------------
|
|
17
|
+
|
|
18
|
+
.. automodule:: pygeai.tests.snippets.embeddings
|
|
19
|
+
:members:
|
|
20
|
+
:show-inheritance:
|
|
21
|
+
:undoc-members:
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
pygeai.tests.snippets.extras package
|
|
2
|
+
====================================
|
|
3
|
+
|
|
4
|
+
Submodules
|
|
5
|
+
----------
|
|
6
|
+
|
|
7
|
+
pygeai.tests.snippets.extras.igor module
|
|
8
|
+
----------------------------------------
|
|
9
|
+
|
|
10
|
+
.. automodule:: pygeai.tests.snippets.extras.igor
|
|
11
|
+
:members:
|
|
12
|
+
:show-inheritance:
|
|
13
|
+
:undoc-members:
|
|
14
|
+
|
|
15
|
+
pygeai.tests.snippets.extras.igor\_2 module
|
|
16
|
+
-------------------------------------------
|
|
17
|
+
|
|
18
|
+
.. automodule:: pygeai.tests.snippets.extras.igor_2
|
|
19
|
+
:members:
|
|
20
|
+
:show-inheritance:
|
|
21
|
+
:undoc-members:
|
|
22
|
+
|
|
23
|
+
pygeai.tests.snippets.extras.igor\_test module
|
|
24
|
+
----------------------------------------------
|
|
25
|
+
|
|
26
|
+
.. automodule:: pygeai.tests.snippets.extras.igor_test
|
|
27
|
+
:members:
|
|
28
|
+
:show-inheritance:
|
|
29
|
+
:undoc-members:
|
|
30
|
+
|
|
31
|
+
Module contents
|
|
32
|
+
---------------
|
|
33
|
+
|
|
34
|
+
.. automodule:: pygeai.tests.snippets.extras
|
|
35
|
+
:members:
|
|
36
|
+
:show-inheritance:
|
|
37
|
+
:undoc-members:
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
pygeai.tests.snippets.files package
|
|
2
|
+
===================================
|
|
3
|
+
|
|
4
|
+
Submodules
|
|
5
|
+
----------
|
|
6
|
+
|
|
7
|
+
pygeai.tests.snippets.files.delete\_file module
|
|
8
|
+
-----------------------------------------------
|
|
9
|
+
|
|
10
|
+
.. automodule:: pygeai.tests.snippets.files.delete_file
|
|
11
|
+
:members:
|
|
12
|
+
:show-inheritance:
|
|
13
|
+
:undoc-members:
|
|
14
|
+
|
|
15
|
+
pygeai.tests.snippets.files.get\_file\_content module
|
|
16
|
+
-----------------------------------------------------
|
|
17
|
+
|
|
18
|
+
.. automodule:: pygeai.tests.snippets.files.get_file_content
|
|
19
|
+
:members:
|
|
20
|
+
:show-inheritance:
|
|
21
|
+
:undoc-members:
|
|
22
|
+
|
|
23
|
+
pygeai.tests.snippets.files.get\_file\_data module
|
|
24
|
+
--------------------------------------------------
|
|
25
|
+
|
|
26
|
+
.. automodule:: pygeai.tests.snippets.files.get_file_data
|
|
27
|
+
:members:
|
|
28
|
+
:show-inheritance:
|
|
29
|
+
:undoc-members:
|
|
30
|
+
|
|
31
|
+
pygeai.tests.snippets.files.get\_file\_list module
|
|
32
|
+
--------------------------------------------------
|
|
33
|
+
|
|
34
|
+
.. automodule:: pygeai.tests.snippets.files.get_file_list
|
|
35
|
+
:members:
|
|
36
|
+
:show-inheritance:
|
|
37
|
+
:undoc-members:
|
|
38
|
+
|
|
39
|
+
pygeai.tests.snippets.files.upload\_file module
|
|
40
|
+
-----------------------------------------------
|
|
41
|
+
|
|
42
|
+
.. automodule:: pygeai.tests.snippets.files.upload_file
|
|
43
|
+
:members:
|
|
44
|
+
:show-inheritance:
|
|
45
|
+
:undoc-members:
|
|
46
|
+
|
|
47
|
+
Module contents
|
|
48
|
+
---------------
|
|
49
|
+
|
|
50
|
+
.. automodule:: pygeai.tests.snippets.files
|
|
51
|
+
:members:
|
|
52
|
+
:show-inheritance:
|
|
53
|
+
:undoc-members:
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
pygeai.tests.snippets.gam package
|
|
2
|
+
=================================
|
|
3
|
+
|
|
4
|
+
Submodules
|
|
5
|
+
----------
|
|
6
|
+
|
|
7
|
+
pygeai.tests.snippets.gam.gam\_access\_token module
|
|
8
|
+
---------------------------------------------------
|
|
9
|
+
|
|
10
|
+
.. automodule:: pygeai.tests.snippets.gam.gam_access_token
|
|
11
|
+
:members:
|
|
12
|
+
:show-inheritance:
|
|
13
|
+
:undoc-members:
|
|
14
|
+
|
|
15
|
+
Module contents
|
|
16
|
+
---------------
|
|
17
|
+
|
|
18
|
+
.. automodule:: pygeai.tests.snippets.gam
|
|
19
|
+
:members:
|
|
20
|
+
:show-inheritance:
|
|
21
|
+
:undoc-members:
|
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
pygeai.tests.snippets.lab.agents package
|
|
2
|
+
========================================
|
|
3
|
+
|
|
4
|
+
Submodules
|
|
5
|
+
----------
|
|
6
|
+
|
|
7
|
+
pygeai.tests.snippets.lab.agents.create\_agent module
|
|
8
|
+
-----------------------------------------------------
|
|
9
|
+
|
|
10
|
+
.. automodule:: pygeai.tests.snippets.lab.agents.create_agent
|
|
11
|
+
:members:
|
|
12
|
+
:show-inheritance:
|
|
13
|
+
:undoc-members:
|
|
14
|
+
|
|
15
|
+
pygeai.tests.snippets.lab.agents.create\_agent\_2 module
|
|
16
|
+
--------------------------------------------------------
|
|
17
|
+
|
|
18
|
+
.. automodule:: pygeai.tests.snippets.lab.agents.create_agent_2
|
|
19
|
+
:members:
|
|
20
|
+
:show-inheritance:
|
|
21
|
+
:undoc-members:
|
|
22
|
+
|
|
23
|
+
pygeai.tests.snippets.lab.agents.create\_agent\_edge\_case module
|
|
24
|
+
-----------------------------------------------------------------
|
|
25
|
+
|
|
26
|
+
.. automodule:: pygeai.tests.snippets.lab.agents.create_agent_edge_case
|
|
27
|
+
:members:
|
|
28
|
+
:show-inheritance:
|
|
29
|
+
:undoc-members:
|
|
30
|
+
|
|
31
|
+
pygeai.tests.snippets.lab.agents.create\_agent\_without\_instructions module
|
|
32
|
+
----------------------------------------------------------------------------
|
|
33
|
+
|
|
34
|
+
.. automodule:: pygeai.tests.snippets.lab.agents.create_agent_without_instructions
|
|
35
|
+
:members:
|
|
36
|
+
:show-inheritance:
|
|
37
|
+
:undoc-members:
|
|
38
|
+
|
|
39
|
+
pygeai.tests.snippets.lab.agents.delete\_agent module
|
|
40
|
+
-----------------------------------------------------
|
|
41
|
+
|
|
42
|
+
.. automodule:: pygeai.tests.snippets.lab.agents.delete_agent
|
|
43
|
+
:members:
|
|
44
|
+
:show-inheritance:
|
|
45
|
+
:undoc-members:
|
|
46
|
+
|
|
47
|
+
pygeai.tests.snippets.lab.agents.get\_agent module
|
|
48
|
+
--------------------------------------------------
|
|
49
|
+
|
|
50
|
+
.. automodule:: pygeai.tests.snippets.lab.agents.get_agent
|
|
51
|
+
:members:
|
|
52
|
+
:show-inheritance:
|
|
53
|
+
:undoc-members:
|
|
54
|
+
|
|
55
|
+
pygeai.tests.snippets.lab.agents.get\_sharing\_link module
|
|
56
|
+
----------------------------------------------------------
|
|
57
|
+
|
|
58
|
+
.. automodule:: pygeai.tests.snippets.lab.agents.get_sharing_link
|
|
59
|
+
:members:
|
|
60
|
+
:show-inheritance:
|
|
61
|
+
:undoc-members:
|
|
62
|
+
|
|
63
|
+
pygeai.tests.snippets.lab.agents.list\_agents module
|
|
64
|
+
----------------------------------------------------
|
|
65
|
+
|
|
66
|
+
.. automodule:: pygeai.tests.snippets.lab.agents.list_agents
|
|
67
|
+
:members:
|
|
68
|
+
:show-inheritance:
|
|
69
|
+
:undoc-members:
|
|
70
|
+
|
|
71
|
+
pygeai.tests.snippets.lab.agents.publish\_agent\_revision module
|
|
72
|
+
----------------------------------------------------------------
|
|
73
|
+
|
|
74
|
+
.. automodule:: pygeai.tests.snippets.lab.agents.publish_agent_revision
|
|
75
|
+
:members:
|
|
76
|
+
:show-inheritance:
|
|
77
|
+
:undoc-members:
|
|
78
|
+
|
|
79
|
+
pygeai.tests.snippets.lab.agents.update\_agent module
|
|
80
|
+
-----------------------------------------------------
|
|
81
|
+
|
|
82
|
+
.. automodule:: pygeai.tests.snippets.lab.agents.update_agent
|
|
83
|
+
:members:
|
|
84
|
+
:show-inheritance:
|
|
85
|
+
:undoc-members:
|
|
86
|
+
|
|
87
|
+
Module contents
|
|
88
|
+
---------------
|
|
89
|
+
|
|
90
|
+
.. automodule:: pygeai.tests.snippets.lab.agents
|
|
91
|
+
:members:
|
|
92
|
+
:show-inheritance:
|
|
93
|
+
:undoc-members:
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
pygeai.tests.snippets.lab.processes.jobs package
|
|
2
|
+
================================================
|
|
3
|
+
|
|
4
|
+
Submodules
|
|
5
|
+
----------
|
|
6
|
+
|
|
7
|
+
pygeai.tests.snippets.lab.processes.jobs.list\_jobs module
|
|
8
|
+
----------------------------------------------------------
|
|
9
|
+
|
|
10
|
+
.. automodule:: pygeai.tests.snippets.lab.processes.jobs.list_jobs
|
|
11
|
+
:members:
|
|
12
|
+
:show-inheritance:
|
|
13
|
+
:undoc-members:
|
|
14
|
+
|
|
15
|
+
Module contents
|
|
16
|
+
---------------
|
|
17
|
+
|
|
18
|
+
.. automodule:: pygeai.tests.snippets.lab.processes.jobs
|
|
19
|
+
:members:
|
|
20
|
+
:show-inheritance:
|
|
21
|
+
:undoc-members:
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
pygeai.tests.snippets.lab.processes.kbs package
|
|
2
|
+
===============================================
|
|
3
|
+
|
|
4
|
+
Submodules
|
|
5
|
+
----------
|
|
6
|
+
|
|
7
|
+
pygeai.tests.snippets.lab.processes.kbs.create\_kb module
|
|
8
|
+
---------------------------------------------------------
|
|
9
|
+
|
|
10
|
+
.. automodule:: pygeai.tests.snippets.lab.processes.kbs.create_kb
|
|
11
|
+
:members:
|
|
12
|
+
:show-inheritance:
|
|
13
|
+
:undoc-members:
|
|
14
|
+
|
|
15
|
+
pygeai.tests.snippets.lab.processes.kbs.get\_kb module
|
|
16
|
+
------------------------------------------------------
|
|
17
|
+
|
|
18
|
+
.. automodule:: pygeai.tests.snippets.lab.processes.kbs.get_kb
|
|
19
|
+
:members:
|
|
20
|
+
:show-inheritance:
|
|
21
|
+
:undoc-members:
|
|
22
|
+
|
|
23
|
+
pygeai.tests.snippets.lab.processes.kbs.list\_kbs module
|
|
24
|
+
--------------------------------------------------------
|
|
25
|
+
|
|
26
|
+
.. automodule:: pygeai.tests.snippets.lab.processes.kbs.list_kbs
|
|
27
|
+
:members:
|
|
28
|
+
:show-inheritance:
|
|
29
|
+
:undoc-members:
|
|
30
|
+
|
|
31
|
+
pygeai.tests.snippets.lab.processes.kbs.try\_all module
|
|
32
|
+
-------------------------------------------------------
|
|
33
|
+
|
|
34
|
+
.. automodule:: pygeai.tests.snippets.lab.processes.kbs.try_all
|
|
35
|
+
:members:
|
|
36
|
+
:show-inheritance:
|
|
37
|
+
:undoc-members:
|
|
38
|
+
|
|
39
|
+
Module contents
|
|
40
|
+
---------------
|
|
41
|
+
|
|
42
|
+
.. automodule:: pygeai.tests.snippets.lab.processes.kbs
|
|
43
|
+
:members:
|
|
44
|
+
:show-inheritance:
|
|
45
|
+
:undoc-members:
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
pygeai.tests.snippets.lab.processes package
|
|
2
|
+
===========================================
|
|
3
|
+
|
|
4
|
+
Subpackages
|
|
5
|
+
-----------
|
|
6
|
+
|
|
7
|
+
.. toctree::
|
|
8
|
+
:maxdepth: 4
|
|
9
|
+
|
|
10
|
+
pygeai.tests.snippets.lab.processes.jobs
|
|
11
|
+
pygeai.tests.snippets.lab.processes.kbs
|
|
12
|
+
|
|
13
|
+
Submodules
|
|
14
|
+
----------
|
|
15
|
+
|
|
16
|
+
pygeai.tests.snippets.lab.processes.create\_process module
|
|
17
|
+
----------------------------------------------------------
|
|
18
|
+
|
|
19
|
+
.. automodule:: pygeai.tests.snippets.lab.processes.create_process
|
|
20
|
+
:members:
|
|
21
|
+
:show-inheritance:
|
|
22
|
+
:undoc-members:
|
|
23
|
+
|
|
24
|
+
pygeai.tests.snippets.lab.processes.create\_task module
|
|
25
|
+
-------------------------------------------------------
|
|
26
|
+
|
|
27
|
+
.. automodule:: pygeai.tests.snippets.lab.processes.create_task
|
|
28
|
+
:members:
|
|
29
|
+
:show-inheritance:
|
|
30
|
+
:undoc-members:
|
|
31
|
+
|
|
32
|
+
pygeai.tests.snippets.lab.processes.list\_processes module
|
|
33
|
+
----------------------------------------------------------
|
|
34
|
+
|
|
35
|
+
.. automodule:: pygeai.tests.snippets.lab.processes.list_processes
|
|
36
|
+
:members:
|
|
37
|
+
:show-inheritance:
|
|
38
|
+
:undoc-members:
|
|
39
|
+
|
|
40
|
+
Module contents
|
|
41
|
+
---------------
|
|
42
|
+
|
|
43
|
+
.. automodule:: pygeai.tests.snippets.lab.processes
|
|
44
|
+
:members:
|
|
45
|
+
:show-inheritance:
|
|
46
|
+
:undoc-members:
|
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
pygeai.tests.snippets.lab package
|
|
2
|
+
=================================
|
|
3
|
+
|
|
4
|
+
Subpackages
|
|
5
|
+
-----------
|
|
6
|
+
|
|
7
|
+
.. toctree::
|
|
8
|
+
:maxdepth: 4
|
|
9
|
+
|
|
10
|
+
pygeai.tests.snippets.lab.agents
|
|
11
|
+
pygeai.tests.snippets.lab.processes
|
|
12
|
+
pygeai.tests.snippets.lab.samples
|
|
13
|
+
pygeai.tests.snippets.lab.strategies
|
|
14
|
+
pygeai.tests.snippets.lab.tools
|
|
15
|
+
pygeai.tests.snippets.lab.use_cases
|
|
16
|
+
|
|
17
|
+
Submodules
|
|
18
|
+
----------
|
|
19
|
+
|
|
20
|
+
pygeai.tests.snippets.lab.agentic\_flow\_example\_1 module
|
|
21
|
+
----------------------------------------------------------
|
|
22
|
+
|
|
23
|
+
.. automodule:: pygeai.tests.snippets.lab.agentic_flow_example_1
|
|
24
|
+
:members:
|
|
25
|
+
:show-inheritance:
|
|
26
|
+
:undoc-members:
|
|
27
|
+
|
|
28
|
+
pygeai.tests.snippets.lab.agentic\_flow\_example\_2 module
|
|
29
|
+
----------------------------------------------------------
|
|
30
|
+
|
|
31
|
+
.. automodule:: pygeai.tests.snippets.lab.agentic_flow_example_2
|
|
32
|
+
:members:
|
|
33
|
+
:show-inheritance:
|
|
34
|
+
:undoc-members:
|
|
35
|
+
|
|
36
|
+
pygeai.tests.snippets.lab.agentic\_flow\_example\_3 module
|
|
37
|
+
----------------------------------------------------------
|
|
38
|
+
|
|
39
|
+
.. automodule:: pygeai.tests.snippets.lab.agentic_flow_example_3
|
|
40
|
+
:members:
|
|
41
|
+
:show-inheritance:
|
|
42
|
+
:undoc-members:
|
|
43
|
+
|
|
44
|
+
pygeai.tests.snippets.lab.agentic\_flow\_example\_4 module
|
|
45
|
+
----------------------------------------------------------
|
|
46
|
+
|
|
47
|
+
.. automodule:: pygeai.tests.snippets.lab.agentic_flow_example_4
|
|
48
|
+
:members:
|
|
49
|
+
:show-inheritance:
|
|
50
|
+
:undoc-members:
|
|
51
|
+
|
|
52
|
+
pygeai.tests.snippets.lab.assistant\_to\_agent module
|
|
53
|
+
-----------------------------------------------------
|
|
54
|
+
|
|
55
|
+
.. automodule:: pygeai.tests.snippets.lab.assistant_to_agent
|
|
56
|
+
:members:
|
|
57
|
+
:show-inheritance:
|
|
58
|
+
:undoc-members:
|
|
59
|
+
|
|
60
|
+
pygeai.tests.snippets.lab.crud\_ui module
|
|
61
|
+
-----------------------------------------
|
|
62
|
+
|
|
63
|
+
.. automodule:: pygeai.tests.snippets.lab.crud_ui
|
|
64
|
+
:members:
|
|
65
|
+
:show-inheritance:
|
|
66
|
+
:undoc-members:
|
|
67
|
+
|
|
68
|
+
pygeai.tests.snippets.lab.runner\_1 module
|
|
69
|
+
------------------------------------------
|
|
70
|
+
|
|
71
|
+
.. automodule:: pygeai.tests.snippets.lab.runner_1
|
|
72
|
+
:members:
|
|
73
|
+
:show-inheritance:
|
|
74
|
+
:undoc-members:
|
|
75
|
+
|
|
76
|
+
Module contents
|
|
77
|
+
---------------
|
|
78
|
+
|
|
79
|
+
.. automodule:: pygeai.tests.snippets.lab
|
|
80
|
+
:members:
|
|
81
|
+
:show-inheritance:
|
|
82
|
+
:undoc-members:
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
pygeai.tests.snippets.lab.samples package
|
|
2
|
+
=========================================
|
|
3
|
+
|
|
4
|
+
Submodules
|
|
5
|
+
----------
|
|
6
|
+
|
|
7
|
+
pygeai.tests.snippets.lab.samples.summarize\_files module
|
|
8
|
+
---------------------------------------------------------
|
|
9
|
+
|
|
10
|
+
.. automodule:: pygeai.tests.snippets.lab.samples.summarize_files
|
|
11
|
+
:members:
|
|
12
|
+
:show-inheritance:
|
|
13
|
+
:undoc-members:
|
|
14
|
+
|
|
15
|
+
Module contents
|
|
16
|
+
---------------
|
|
17
|
+
|
|
18
|
+
.. automodule:: pygeai.tests.snippets.lab.samples
|
|
19
|
+
:members:
|
|
20
|
+
:show-inheritance:
|
|
21
|
+
:undoc-members:
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
pygeai.tests.snippets.lab.strategies package
|
|
2
|
+
============================================
|
|
3
|
+
|
|
4
|
+
Submodules
|
|
5
|
+
----------
|
|
6
|
+
|
|
7
|
+
pygeai.tests.snippets.lab.strategies.create\_reasoning\_strategy module
|
|
8
|
+
-----------------------------------------------------------------------
|
|
9
|
+
|
|
10
|
+
.. automodule:: pygeai.tests.snippets.lab.strategies.create_reasoning_strategy
|
|
11
|
+
:members:
|
|
12
|
+
:show-inheritance:
|
|
13
|
+
:undoc-members:
|
|
14
|
+
|
|
15
|
+
pygeai.tests.snippets.lab.strategies.get\_reasoning\_strategy module
|
|
16
|
+
--------------------------------------------------------------------
|
|
17
|
+
|
|
18
|
+
.. automodule:: pygeai.tests.snippets.lab.strategies.get_reasoning_strategy
|
|
19
|
+
:members:
|
|
20
|
+
:show-inheritance:
|
|
21
|
+
:undoc-members:
|
|
22
|
+
|
|
23
|
+
pygeai.tests.snippets.lab.strategies.list\_reasoning\_strategies module
|
|
24
|
+
-----------------------------------------------------------------------
|
|
25
|
+
|
|
26
|
+
.. automodule:: pygeai.tests.snippets.lab.strategies.list_reasoning_strategies
|
|
27
|
+
:members:
|
|
28
|
+
:show-inheritance:
|
|
29
|
+
:undoc-members:
|
|
30
|
+
|
|
31
|
+
pygeai.tests.snippets.lab.strategies.update\_reasoning\_strategy module
|
|
32
|
+
-----------------------------------------------------------------------
|
|
33
|
+
|
|
34
|
+
.. automodule:: pygeai.tests.snippets.lab.strategies.update_reasoning_strategy
|
|
35
|
+
:members:
|
|
36
|
+
:show-inheritance:
|
|
37
|
+
:undoc-members:
|
|
38
|
+
|
|
39
|
+
Module contents
|
|
40
|
+
---------------
|
|
41
|
+
|
|
42
|
+
.. automodule:: pygeai.tests.snippets.lab.strategies
|
|
43
|
+
:members:
|
|
44
|
+
:show-inheritance:
|
|
45
|
+
:undoc-members:
|