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,85 @@
|
|
|
1
|
+
pygeai.tests.snippets.lab.tools package
|
|
2
|
+
=======================================
|
|
3
|
+
|
|
4
|
+
Submodules
|
|
5
|
+
----------
|
|
6
|
+
|
|
7
|
+
pygeai.tests.snippets.lab.tools.create\_tool module
|
|
8
|
+
---------------------------------------------------
|
|
9
|
+
|
|
10
|
+
.. automodule:: pygeai.tests.snippets.lab.tools.create_tool
|
|
11
|
+
:members:
|
|
12
|
+
:show-inheritance:
|
|
13
|
+
:undoc-members:
|
|
14
|
+
|
|
15
|
+
pygeai.tests.snippets.lab.tools.create\_tool\_edge\_case module
|
|
16
|
+
---------------------------------------------------------------
|
|
17
|
+
|
|
18
|
+
.. automodule:: pygeai.tests.snippets.lab.tools.create_tool_edge_case
|
|
19
|
+
:members:
|
|
20
|
+
:show-inheritance:
|
|
21
|
+
:undoc-members:
|
|
22
|
+
|
|
23
|
+
pygeai.tests.snippets.lab.tools.delete\_tool module
|
|
24
|
+
---------------------------------------------------
|
|
25
|
+
|
|
26
|
+
.. automodule:: pygeai.tests.snippets.lab.tools.delete_tool
|
|
27
|
+
:members:
|
|
28
|
+
:show-inheritance:
|
|
29
|
+
:undoc-members:
|
|
30
|
+
|
|
31
|
+
pygeai.tests.snippets.lab.tools.get\_parameter module
|
|
32
|
+
-----------------------------------------------------
|
|
33
|
+
|
|
34
|
+
.. automodule:: pygeai.tests.snippets.lab.tools.get_parameter
|
|
35
|
+
:members:
|
|
36
|
+
:show-inheritance:
|
|
37
|
+
:undoc-members:
|
|
38
|
+
|
|
39
|
+
pygeai.tests.snippets.lab.tools.get\_tool module
|
|
40
|
+
------------------------------------------------
|
|
41
|
+
|
|
42
|
+
.. automodule:: pygeai.tests.snippets.lab.tools.get_tool
|
|
43
|
+
:members:
|
|
44
|
+
:show-inheritance:
|
|
45
|
+
:undoc-members:
|
|
46
|
+
|
|
47
|
+
pygeai.tests.snippets.lab.tools.list\_tools module
|
|
48
|
+
--------------------------------------------------
|
|
49
|
+
|
|
50
|
+
.. automodule:: pygeai.tests.snippets.lab.tools.list_tools
|
|
51
|
+
:members:
|
|
52
|
+
:show-inheritance:
|
|
53
|
+
:undoc-members:
|
|
54
|
+
|
|
55
|
+
pygeai.tests.snippets.lab.tools.publish\_tool\_revision module
|
|
56
|
+
--------------------------------------------------------------
|
|
57
|
+
|
|
58
|
+
.. automodule:: pygeai.tests.snippets.lab.tools.publish_tool_revision
|
|
59
|
+
:members:
|
|
60
|
+
:show-inheritance:
|
|
61
|
+
:undoc-members:
|
|
62
|
+
|
|
63
|
+
pygeai.tests.snippets.lab.tools.set\_parameters module
|
|
64
|
+
------------------------------------------------------
|
|
65
|
+
|
|
66
|
+
.. automodule:: pygeai.tests.snippets.lab.tools.set_parameters
|
|
67
|
+
:members:
|
|
68
|
+
:show-inheritance:
|
|
69
|
+
:undoc-members:
|
|
70
|
+
|
|
71
|
+
pygeai.tests.snippets.lab.tools.update\_tool module
|
|
72
|
+
---------------------------------------------------
|
|
73
|
+
|
|
74
|
+
.. automodule:: pygeai.tests.snippets.lab.tools.update_tool
|
|
75
|
+
:members:
|
|
76
|
+
:show-inheritance:
|
|
77
|
+
:undoc-members:
|
|
78
|
+
|
|
79
|
+
Module contents
|
|
80
|
+
---------------
|
|
81
|
+
|
|
82
|
+
.. automodule:: pygeai.tests.snippets.lab.tools
|
|
83
|
+
:members:
|
|
84
|
+
:show-inheritance:
|
|
85
|
+
:undoc-members:
|
|
@@ -0,0 +1,117 @@
|
|
|
1
|
+
pygeai.tests.snippets.lab.use\_cases package
|
|
2
|
+
============================================
|
|
3
|
+
|
|
4
|
+
Submodules
|
|
5
|
+
----------
|
|
6
|
+
|
|
7
|
+
pygeai.tests.snippets.lab.use\_cases.c\_code\_fixer\_agent\_flow module
|
|
8
|
+
-----------------------------------------------------------------------
|
|
9
|
+
|
|
10
|
+
.. automodule:: pygeai.tests.snippets.lab.use_cases.c_code_fixer_agent_flow
|
|
11
|
+
:members:
|
|
12
|
+
:show-inheritance:
|
|
13
|
+
:undoc-members:
|
|
14
|
+
|
|
15
|
+
pygeai.tests.snippets.lab.use\_cases.create\_cli\_expert module
|
|
16
|
+
---------------------------------------------------------------
|
|
17
|
+
|
|
18
|
+
.. automodule:: pygeai.tests.snippets.lab.use_cases.create_cli_expert
|
|
19
|
+
:members:
|
|
20
|
+
:show-inheritance:
|
|
21
|
+
:undoc-members:
|
|
22
|
+
|
|
23
|
+
pygeai.tests.snippets.lab.use\_cases.create\_lab\_expert module
|
|
24
|
+
---------------------------------------------------------------
|
|
25
|
+
|
|
26
|
+
.. automodule:: pygeai.tests.snippets.lab.use_cases.create_lab_expert
|
|
27
|
+
:members:
|
|
28
|
+
:show-inheritance:
|
|
29
|
+
:undoc-members:
|
|
30
|
+
|
|
31
|
+
pygeai.tests.snippets.lab.use\_cases.create\_tool\_headless\_web\_browser module
|
|
32
|
+
--------------------------------------------------------------------------------
|
|
33
|
+
|
|
34
|
+
.. automodule:: pygeai.tests.snippets.lab.use_cases.create_tool_headless_web_browser
|
|
35
|
+
:members:
|
|
36
|
+
:show-inheritance:
|
|
37
|
+
:undoc-members:
|
|
38
|
+
|
|
39
|
+
pygeai.tests.snippets.lab.use\_cases.create\_web\_designer module
|
|
40
|
+
-----------------------------------------------------------------
|
|
41
|
+
|
|
42
|
+
.. automodule:: pygeai.tests.snippets.lab.use_cases.create_web_designer
|
|
43
|
+
:members:
|
|
44
|
+
:show-inheritance:
|
|
45
|
+
:undoc-members:
|
|
46
|
+
|
|
47
|
+
pygeai.tests.snippets.lab.use\_cases.create\_web\_reader module
|
|
48
|
+
---------------------------------------------------------------
|
|
49
|
+
|
|
50
|
+
.. automodule:: pygeai.tests.snippets.lab.use_cases.create_web_reader
|
|
51
|
+
:members:
|
|
52
|
+
:show-inheritance:
|
|
53
|
+
:undoc-members:
|
|
54
|
+
|
|
55
|
+
pygeai.tests.snippets.lab.use\_cases.file\_summarizer\_example module
|
|
56
|
+
---------------------------------------------------------------------
|
|
57
|
+
|
|
58
|
+
.. automodule:: pygeai.tests.snippets.lab.use_cases.file_summarizer_example
|
|
59
|
+
:members:
|
|
60
|
+
:show-inheritance:
|
|
61
|
+
:undoc-members:
|
|
62
|
+
|
|
63
|
+
pygeai.tests.snippets.lab.use\_cases.file\_summarizer\_example\_2 module
|
|
64
|
+
------------------------------------------------------------------------
|
|
65
|
+
|
|
66
|
+
.. automodule:: pygeai.tests.snippets.lab.use_cases.file_summarizer_example_2
|
|
67
|
+
:members:
|
|
68
|
+
:show-inheritance:
|
|
69
|
+
:undoc-members:
|
|
70
|
+
|
|
71
|
+
pygeai.tests.snippets.lab.use\_cases.update\_cli\_expert module
|
|
72
|
+
---------------------------------------------------------------
|
|
73
|
+
|
|
74
|
+
.. automodule:: pygeai.tests.snippets.lab.use_cases.update_cli_expert
|
|
75
|
+
:members:
|
|
76
|
+
:show-inheritance:
|
|
77
|
+
:undoc-members:
|
|
78
|
+
|
|
79
|
+
pygeai.tests.snippets.lab.use\_cases.update\_lab\_expert module
|
|
80
|
+
---------------------------------------------------------------
|
|
81
|
+
|
|
82
|
+
.. automodule:: pygeai.tests.snippets.lab.use_cases.update_lab_expert
|
|
83
|
+
:members:
|
|
84
|
+
:show-inheritance:
|
|
85
|
+
:undoc-members:
|
|
86
|
+
|
|
87
|
+
pygeai.tests.snippets.lab.use\_cases.update\_web\_designer module
|
|
88
|
+
-----------------------------------------------------------------
|
|
89
|
+
|
|
90
|
+
.. automodule:: pygeai.tests.snippets.lab.use_cases.update_web_designer
|
|
91
|
+
:members:
|
|
92
|
+
:show-inheritance:
|
|
93
|
+
:undoc-members:
|
|
94
|
+
|
|
95
|
+
pygeai.tests.snippets.lab.use\_cases.update\_web\_reader module
|
|
96
|
+
---------------------------------------------------------------
|
|
97
|
+
|
|
98
|
+
.. automodule:: pygeai.tests.snippets.lab.use_cases.update_web_reader
|
|
99
|
+
:members:
|
|
100
|
+
:show-inheritance:
|
|
101
|
+
:undoc-members:
|
|
102
|
+
|
|
103
|
+
pygeai.tests.snippets.lab.use\_cases.update\_web\_reader\_with\_tool module
|
|
104
|
+
---------------------------------------------------------------------------
|
|
105
|
+
|
|
106
|
+
.. automodule:: pygeai.tests.snippets.lab.use_cases.update_web_reader_with_tool
|
|
107
|
+
:members:
|
|
108
|
+
:show-inheritance:
|
|
109
|
+
:undoc-members:
|
|
110
|
+
|
|
111
|
+
Module contents
|
|
112
|
+
---------------
|
|
113
|
+
|
|
114
|
+
.. automodule:: pygeai.tests.snippets.lab.use_cases
|
|
115
|
+
:members:
|
|
116
|
+
:show-inheritance:
|
|
117
|
+
:undoc-members:
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
pygeai.tests.snippets.organization package
|
|
2
|
+
==========================================
|
|
3
|
+
|
|
4
|
+
Submodules
|
|
5
|
+
----------
|
|
6
|
+
|
|
7
|
+
pygeai.tests.snippets.organization.create\_project module
|
|
8
|
+
---------------------------------------------------------
|
|
9
|
+
|
|
10
|
+
.. automodule:: pygeai.tests.snippets.organization.create_project
|
|
11
|
+
:members:
|
|
12
|
+
:show-inheritance:
|
|
13
|
+
:undoc-members:
|
|
14
|
+
|
|
15
|
+
pygeai.tests.snippets.organization.delete\_project module
|
|
16
|
+
---------------------------------------------------------
|
|
17
|
+
|
|
18
|
+
.. automodule:: pygeai.tests.snippets.organization.delete_project
|
|
19
|
+
:members:
|
|
20
|
+
:show-inheritance:
|
|
21
|
+
:undoc-members:
|
|
22
|
+
|
|
23
|
+
pygeai.tests.snippets.organization.export\_request\_data module
|
|
24
|
+
---------------------------------------------------------------
|
|
25
|
+
|
|
26
|
+
.. automodule:: pygeai.tests.snippets.organization.export_request_data
|
|
27
|
+
:members:
|
|
28
|
+
:show-inheritance:
|
|
29
|
+
:undoc-members:
|
|
30
|
+
|
|
31
|
+
pygeai.tests.snippets.organization.get\_project\_data module
|
|
32
|
+
------------------------------------------------------------
|
|
33
|
+
|
|
34
|
+
.. automodule:: pygeai.tests.snippets.organization.get_project_data
|
|
35
|
+
:members:
|
|
36
|
+
:show-inheritance:
|
|
37
|
+
:undoc-members:
|
|
38
|
+
|
|
39
|
+
pygeai.tests.snippets.organization.get\_project\_list module
|
|
40
|
+
------------------------------------------------------------
|
|
41
|
+
|
|
42
|
+
.. automodule:: pygeai.tests.snippets.organization.get_project_list
|
|
43
|
+
:members:
|
|
44
|
+
:show-inheritance:
|
|
45
|
+
:undoc-members:
|
|
46
|
+
|
|
47
|
+
pygeai.tests.snippets.organization.get\_project\_tokens module
|
|
48
|
+
--------------------------------------------------------------
|
|
49
|
+
|
|
50
|
+
.. automodule:: pygeai.tests.snippets.organization.get_project_tokens
|
|
51
|
+
:members:
|
|
52
|
+
:show-inheritance:
|
|
53
|
+
:undoc-members:
|
|
54
|
+
|
|
55
|
+
pygeai.tests.snippets.organization.update\_project module
|
|
56
|
+
---------------------------------------------------------
|
|
57
|
+
|
|
58
|
+
.. automodule:: pygeai.tests.snippets.organization.update_project
|
|
59
|
+
:members:
|
|
60
|
+
:show-inheritance:
|
|
61
|
+
:undoc-members:
|
|
62
|
+
|
|
63
|
+
Module contents
|
|
64
|
+
---------------
|
|
65
|
+
|
|
66
|
+
.. automodule:: pygeai.tests.snippets.organization
|
|
67
|
+
:members:
|
|
68
|
+
:show-inheritance:
|
|
69
|
+
:undoc-members:
|
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
pygeai.tests.snippets.rag package
|
|
2
|
+
=================================
|
|
3
|
+
|
|
4
|
+
Submodules
|
|
5
|
+
----------
|
|
6
|
+
|
|
7
|
+
pygeai.tests.snippets.rag.create\_rag\_assistant module
|
|
8
|
+
-------------------------------------------------------
|
|
9
|
+
|
|
10
|
+
.. automodule:: pygeai.tests.snippets.rag.create_rag_assistant
|
|
11
|
+
:members:
|
|
12
|
+
:show-inheritance:
|
|
13
|
+
:undoc-members:
|
|
14
|
+
|
|
15
|
+
pygeai.tests.snippets.rag.delete\_al\_documents module
|
|
16
|
+
------------------------------------------------------
|
|
17
|
+
|
|
18
|
+
.. automodule:: pygeai.tests.snippets.rag.delete_al_documents
|
|
19
|
+
:members:
|
|
20
|
+
:show-inheritance:
|
|
21
|
+
:undoc-members:
|
|
22
|
+
|
|
23
|
+
pygeai.tests.snippets.rag.delete\_document module
|
|
24
|
+
-------------------------------------------------
|
|
25
|
+
|
|
26
|
+
.. automodule:: pygeai.tests.snippets.rag.delete_document
|
|
27
|
+
:members:
|
|
28
|
+
:show-inheritance:
|
|
29
|
+
:undoc-members:
|
|
30
|
+
|
|
31
|
+
pygeai.tests.snippets.rag.delete\_rag\_assistant module
|
|
32
|
+
-------------------------------------------------------
|
|
33
|
+
|
|
34
|
+
.. automodule:: pygeai.tests.snippets.rag.delete_rag_assistant
|
|
35
|
+
:members:
|
|
36
|
+
:show-inheritance:
|
|
37
|
+
:undoc-members:
|
|
38
|
+
|
|
39
|
+
pygeai.tests.snippets.rag.get\_document module
|
|
40
|
+
----------------------------------------------
|
|
41
|
+
|
|
42
|
+
.. automodule:: pygeai.tests.snippets.rag.get_document
|
|
43
|
+
:members:
|
|
44
|
+
:show-inheritance:
|
|
45
|
+
:undoc-members:
|
|
46
|
+
|
|
47
|
+
pygeai.tests.snippets.rag.get\_documents module
|
|
48
|
+
-----------------------------------------------
|
|
49
|
+
|
|
50
|
+
.. automodule:: pygeai.tests.snippets.rag.get_documents
|
|
51
|
+
:members:
|
|
52
|
+
:show-inheritance:
|
|
53
|
+
:undoc-members:
|
|
54
|
+
|
|
55
|
+
pygeai.tests.snippets.rag.get\_rag\_assistant\_data module
|
|
56
|
+
----------------------------------------------------------
|
|
57
|
+
|
|
58
|
+
.. automodule:: pygeai.tests.snippets.rag.get_rag_assistant_data
|
|
59
|
+
:members:
|
|
60
|
+
:show-inheritance:
|
|
61
|
+
:undoc-members:
|
|
62
|
+
|
|
63
|
+
pygeai.tests.snippets.rag.update\_rag\_assistant module
|
|
64
|
+
-------------------------------------------------------
|
|
65
|
+
|
|
66
|
+
.. automodule:: pygeai.tests.snippets.rag.update_rag_assistant
|
|
67
|
+
:members:
|
|
68
|
+
:show-inheritance:
|
|
69
|
+
:undoc-members:
|
|
70
|
+
|
|
71
|
+
pygeai.tests.snippets.rag.upload\_document module
|
|
72
|
+
-------------------------------------------------
|
|
73
|
+
|
|
74
|
+
.. automodule:: pygeai.tests.snippets.rag.upload_document
|
|
75
|
+
:members:
|
|
76
|
+
:show-inheritance:
|
|
77
|
+
:undoc-members:
|
|
78
|
+
|
|
79
|
+
Module contents
|
|
80
|
+
---------------
|
|
81
|
+
|
|
82
|
+
.. automodule:: pygeai.tests.snippets.rag
|
|
83
|
+
:members:
|
|
84
|
+
:show-inheritance:
|
|
85
|
+
:undoc-members:
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
pygeai.tests.snippets.rerank package
|
|
2
|
+
====================================
|
|
3
|
+
|
|
4
|
+
Submodules
|
|
5
|
+
----------
|
|
6
|
+
|
|
7
|
+
pygeai.tests.snippets.rerank.rerank\_chunks module
|
|
8
|
+
--------------------------------------------------
|
|
9
|
+
|
|
10
|
+
.. automodule:: pygeai.tests.snippets.rerank.rerank_chunks
|
|
11
|
+
:members:
|
|
12
|
+
:show-inheritance:
|
|
13
|
+
:undoc-members:
|
|
14
|
+
|
|
15
|
+
Module contents
|
|
16
|
+
---------------
|
|
17
|
+
|
|
18
|
+
.. automodule:: pygeai.tests.snippets.rerank
|
|
19
|
+
:members:
|
|
20
|
+
:show-inheritance:
|
|
21
|
+
:undoc-members:
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
pygeai.tests.snippets package
|
|
2
|
+
=============================
|
|
3
|
+
|
|
4
|
+
Subpackages
|
|
5
|
+
-----------
|
|
6
|
+
|
|
7
|
+
.. toctree::
|
|
8
|
+
:maxdepth: 4
|
|
9
|
+
|
|
10
|
+
pygeai.tests.snippets.assistants
|
|
11
|
+
pygeai.tests.snippets.chat
|
|
12
|
+
pygeai.tests.snippets.embeddings
|
|
13
|
+
pygeai.tests.snippets.evaluation
|
|
14
|
+
pygeai.tests.snippets.extras
|
|
15
|
+
pygeai.tests.snippets.files
|
|
16
|
+
pygeai.tests.snippets.gam
|
|
17
|
+
pygeai.tests.snippets.lab
|
|
18
|
+
pygeai.tests.snippets.migrate
|
|
19
|
+
pygeai.tests.snippets.organization
|
|
20
|
+
pygeai.tests.snippets.rerank
|
|
21
|
+
pygeai.tests.snippets.secrets
|
|
22
|
+
pygeai.tests.snippets.usage_limit
|
|
23
|
+
|
|
24
|
+
Module contents
|
|
25
|
+
---------------
|
|
26
|
+
|
|
27
|
+
.. automodule:: pygeai.tests.snippets
|
|
28
|
+
:members:
|
|
29
|
+
:show-inheritance:
|
|
30
|
+
:undoc-members:
|
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
pygeai.tests.snippets.usage\_limit package
|
|
2
|
+
==========================================
|
|
3
|
+
|
|
4
|
+
Submodules
|
|
5
|
+
----------
|
|
6
|
+
|
|
7
|
+
pygeai.tests.snippets.usage\_limit.delete\_usage\_limit module
|
|
8
|
+
--------------------------------------------------------------
|
|
9
|
+
|
|
10
|
+
.. automodule:: pygeai.tests.snippets.usage_limit.delete_usage_limit
|
|
11
|
+
:members:
|
|
12
|
+
:show-inheritance:
|
|
13
|
+
:undoc-members:
|
|
14
|
+
|
|
15
|
+
pygeai.tests.snippets.usage\_limit.get\_all\_usage\_limit\_from\_organization module
|
|
16
|
+
------------------------------------------------------------------------------------
|
|
17
|
+
|
|
18
|
+
.. automodule:: pygeai.tests.snippets.usage_limit.get_all_usage_limit_from_organization
|
|
19
|
+
:members:
|
|
20
|
+
:show-inheritance:
|
|
21
|
+
:undoc-members:
|
|
22
|
+
|
|
23
|
+
pygeai.tests.snippets.usage\_limit.get\_usage\_limit\_from\_organization module
|
|
24
|
+
-------------------------------------------------------------------------------
|
|
25
|
+
|
|
26
|
+
.. automodule:: pygeai.tests.snippets.usage_limit.get_usage_limit_from_organization
|
|
27
|
+
:members:
|
|
28
|
+
:show-inheritance:
|
|
29
|
+
:undoc-members:
|
|
30
|
+
|
|
31
|
+
pygeai.tests.snippets.usage\_limit.get\_usage\_limit\_from\_project module
|
|
32
|
+
--------------------------------------------------------------------------
|
|
33
|
+
|
|
34
|
+
.. automodule:: pygeai.tests.snippets.usage_limit.get_usage_limit_from_project
|
|
35
|
+
:members:
|
|
36
|
+
:show-inheritance:
|
|
37
|
+
:undoc-members:
|
|
38
|
+
|
|
39
|
+
pygeai.tests.snippets.usage\_limit.set\_usage\_limit\_organization module
|
|
40
|
+
-------------------------------------------------------------------------
|
|
41
|
+
|
|
42
|
+
.. automodule:: pygeai.tests.snippets.usage_limit.set_usage_limit_organization
|
|
43
|
+
:members:
|
|
44
|
+
:show-inheritance:
|
|
45
|
+
:undoc-members:
|
|
46
|
+
|
|
47
|
+
pygeai.tests.snippets.usage\_limit.set\_usage\_limit\_project module
|
|
48
|
+
--------------------------------------------------------------------
|
|
49
|
+
|
|
50
|
+
.. automodule:: pygeai.tests.snippets.usage_limit.set_usage_limit_project
|
|
51
|
+
:members:
|
|
52
|
+
:show-inheritance:
|
|
53
|
+
:undoc-members:
|
|
54
|
+
|
|
55
|
+
pygeai.tests.snippets.usage\_limit.update\_usage\_limit\_organization module
|
|
56
|
+
----------------------------------------------------------------------------
|
|
57
|
+
|
|
58
|
+
.. automodule:: pygeai.tests.snippets.usage_limit.update_usage_limit_organization
|
|
59
|
+
:members:
|
|
60
|
+
:show-inheritance:
|
|
61
|
+
:undoc-members:
|
|
62
|
+
|
|
63
|
+
pygeai.tests.snippets.usage\_limit.update\_usage\_limit\_project module
|
|
64
|
+
-----------------------------------------------------------------------
|
|
65
|
+
|
|
66
|
+
.. automodule:: pygeai.tests.snippets.usage_limit.update_usage_limit_project
|
|
67
|
+
:members:
|
|
68
|
+
:show-inheritance:
|
|
69
|
+
:undoc-members:
|
|
70
|
+
|
|
71
|
+
Module contents
|
|
72
|
+
---------------
|
|
73
|
+
|
|
74
|
+
.. automodule:: pygeai.tests.snippets.usage_limit
|
|
75
|
+
:members:
|
|
76
|
+
:show-inheritance:
|
|
77
|
+
:undoc-members:
|
pygeai/cli/commands/base.py
CHANGED
|
@@ -275,15 +275,15 @@ base_commands = [
|
|
|
275
275
|
migrate_commands,
|
|
276
276
|
[]
|
|
277
277
|
),
|
|
278
|
-
Command(
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
),
|
|
278
|
+
#Command(
|
|
279
|
+
# "docs",
|
|
280
|
+
# ["docs"],
|
|
281
|
+
# "View PyGEAI SDK documentation",
|
|
282
|
+
# None,
|
|
283
|
+
# ArgumentsEnum.NOT_AVAILABLE,
|
|
284
|
+
# docs_commands,
|
|
285
|
+
# []
|
|
286
|
+
#),
|
|
287
287
|
|
|
288
288
|
]
|
|
289
289
|
|
pygeai/cli/commands/docs.py
CHANGED
|
@@ -43,8 +43,8 @@ def open_documentation():
|
|
|
43
43
|
Console.write_stdout("Installation cancelled. Documentation dependencies are required.")
|
|
44
44
|
return
|
|
45
45
|
|
|
46
|
-
|
|
47
|
-
docs_dir =
|
|
46
|
+
pygeai_package_dir = Path(__file__).parent.parent.parent
|
|
47
|
+
docs_dir = pygeai_package_dir / "_docs"
|
|
48
48
|
build_dir = docs_dir / "build" / "html"
|
|
49
49
|
index_file = build_dir / "index.html"
|
|
50
50
|
|