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.
Files changed (145) hide show
  1. pygeai/_docs/Makefile +20 -0
  2. pygeai/_docs/make.bat +35 -0
  3. pygeai/_docs/source/conf.py +45 -0
  4. pygeai/_docs/source/content/ai_lab/cli.rst +747 -0
  5. pygeai/_docs/source/content/ai_lab/models.rst +1600 -0
  6. pygeai/_docs/source/content/ai_lab/runner.rst +253 -0
  7. pygeai/_docs/source/content/ai_lab/spec.rst +431 -0
  8. pygeai/_docs/source/content/ai_lab/usage.rst +1011 -0
  9. pygeai/_docs/source/content/ai_lab.rst +102 -0
  10. pygeai/_docs/source/content/api_reference/chat.rst +328 -0
  11. pygeai/_docs/source/content/api_reference/embeddings.rst +124 -0
  12. pygeai/_docs/source/content/api_reference/project.rst +552 -0
  13. pygeai/_docs/source/content/api_reference/rag.rst +710 -0
  14. pygeai/_docs/source/content/api_reference.rst +46 -0
  15. pygeai/_docs/source/content/chat_gui.rst +121 -0
  16. pygeai/_docs/source/content/cli.rst +126 -0
  17. pygeai/_docs/source/content/debugger.rst +188 -0
  18. pygeai/_docs/source/content/intro.rst +67 -0
  19. pygeai/_docs/source/content/modules.rst +7 -0
  20. pygeai/_docs/source/content/quickstart.rst +143 -0
  21. pygeai/_docs/source/content/samples.rst +394 -0
  22. pygeai/_docs/source/index.rst +21 -0
  23. pygeai/_docs/source/modules.rst +7 -0
  24. pygeai/_docs/source/pygeai.admin.rst +29 -0
  25. pygeai/_docs/source/pygeai.assistant.data.rst +21 -0
  26. pygeai/_docs/source/pygeai.assistant.data_analyst.rst +29 -0
  27. pygeai/_docs/source/pygeai.assistant.rag.rst +53 -0
  28. pygeai/_docs/source/pygeai.assistant.rst +55 -0
  29. pygeai/_docs/source/pygeai.chat.rst +69 -0
  30. pygeai/_docs/source/pygeai.cli.commands.flows.rst +10 -0
  31. pygeai/_docs/source/pygeai.cli.commands.lab.rst +53 -0
  32. pygeai/_docs/source/pygeai.cli.commands.rst +198 -0
  33. pygeai/_docs/source/pygeai.cli.rst +54 -0
  34. pygeai/_docs/source/pygeai.cli.texts.rst +21 -0
  35. pygeai/_docs/source/pygeai.core.base.rst +53 -0
  36. pygeai/_docs/source/pygeai.core.common.rst +37 -0
  37. pygeai/_docs/source/pygeai.core.embeddings.rst +61 -0
  38. pygeai/_docs/source/pygeai.core.feedback.rst +37 -0
  39. pygeai/_docs/source/pygeai.core.files.rst +61 -0
  40. pygeai/_docs/source/pygeai.core.llm.rst +29 -0
  41. pygeai/_docs/source/pygeai.core.plugins.rst +37 -0
  42. pygeai/_docs/source/pygeai.core.rerank.rst +53 -0
  43. pygeai/_docs/source/pygeai.core.rst +63 -0
  44. pygeai/_docs/source/pygeai.core.secrets.rst +29 -0
  45. pygeai/_docs/source/pygeai.core.services.llm.rst +29 -0
  46. pygeai/_docs/source/pygeai.core.services.rst +37 -0
  47. pygeai/_docs/source/pygeai.core.utils.rst +21 -0
  48. pygeai/_docs/source/pygeai.dbg.rst +21 -0
  49. pygeai/_docs/source/pygeai.evaluation.dataset.rst +29 -0
  50. pygeai/_docs/source/pygeai.evaluation.plan.rst +29 -0
  51. pygeai/_docs/source/pygeai.evaluation.result.rst +29 -0
  52. pygeai/_docs/source/pygeai.evaluation.rst +31 -0
  53. pygeai/_docs/source/pygeai.flows.rst +29 -0
  54. pygeai/_docs/source/pygeai.gam.rst +29 -0
  55. pygeai/_docs/source/pygeai.health.rst +29 -0
  56. pygeai/_docs/source/pygeai.lab.agents.rst +37 -0
  57. pygeai/_docs/source/pygeai.lab.processes.rst +37 -0
  58. pygeai/_docs/source/pygeai.lab.rst +65 -0
  59. pygeai/_docs/source/pygeai.lab.spec.rst +29 -0
  60. pygeai/_docs/source/pygeai.lab.strategies.rst +37 -0
  61. pygeai/_docs/source/pygeai.lab.tools.rst +37 -0
  62. pygeai/_docs/source/pygeai.man.man1.rst +10 -0
  63. pygeai/_docs/source/pygeai.man.rst +18 -0
  64. pygeai/_docs/source/pygeai.migration.rst +29 -0
  65. pygeai/_docs/source/pygeai.organization.limits.rst +45 -0
  66. pygeai/_docs/source/pygeai.organization.rst +61 -0
  67. pygeai/_docs/source/pygeai.proxy.rst +53 -0
  68. pygeai/_docs/source/pygeai.rst +33 -0
  69. pygeai/_docs/source/pygeai.tests.admin.rst +21 -0
  70. pygeai/_docs/source/pygeai.tests.assistants.rag.rst +37 -0
  71. pygeai/_docs/source/pygeai.tests.assistants.rst +45 -0
  72. pygeai/_docs/source/pygeai.tests.chat.rst +45 -0
  73. pygeai/_docs/source/pygeai.tests.cli.commands.lab.rst +37 -0
  74. pygeai/_docs/source/pygeai.tests.cli.commands.rst +149 -0
  75. pygeai/_docs/source/pygeai.tests.cli.docker.rst +10 -0
  76. pygeai/_docs/source/pygeai.tests.cli.rst +30 -0
  77. pygeai/_docs/source/pygeai.tests.core.base.data.rst +29 -0
  78. pygeai/_docs/source/pygeai.tests.core.base.rst +37 -0
  79. pygeai/_docs/source/pygeai.tests.core.common.data.rst +10 -0
  80. pygeai/_docs/source/pygeai.tests.core.common.rst +37 -0
  81. pygeai/_docs/source/pygeai.tests.core.embeddings.rst +21 -0
  82. pygeai/_docs/source/pygeai.tests.core.feedback.rst +21 -0
  83. pygeai/_docs/source/pygeai.tests.core.files.rst +45 -0
  84. pygeai/_docs/source/pygeai.tests.core.llm.rst +21 -0
  85. pygeai/_docs/source/pygeai.tests.core.rerank.rst +37 -0
  86. pygeai/_docs/source/pygeai.tests.core.rst +38 -0
  87. pygeai/_docs/source/pygeai.tests.core.secrets.rst +21 -0
  88. pygeai/_docs/source/pygeai.tests.core.services.rst +21 -0
  89. pygeai/_docs/source/pygeai.tests.core.utils.rst +21 -0
  90. pygeai/_docs/source/pygeai.tests.dbg.rst +21 -0
  91. pygeai/_docs/source/pygeai.tests.gam.rst +21 -0
  92. pygeai/_docs/source/pygeai.tests.health.rst +21 -0
  93. pygeai/_docs/source/pygeai.tests.integration.assistants.rag.rst +21 -0
  94. pygeai/_docs/source/pygeai.tests.integration.assistants.rst +18 -0
  95. pygeai/_docs/source/pygeai.tests.integration.chat.rst +21 -0
  96. pygeai/_docs/source/pygeai.tests.integration.lab.agents.rst +69 -0
  97. pygeai/_docs/source/pygeai.tests.integration.lab.processes.rst +69 -0
  98. pygeai/_docs/source/pygeai.tests.integration.lab.reasoning_strategies.rst +37 -0
  99. pygeai/_docs/source/pygeai.tests.integration.lab.rst +21 -0
  100. pygeai/_docs/source/pygeai.tests.integration.lab.tools.rst +77 -0
  101. pygeai/_docs/source/pygeai.tests.integration.rst +20 -0
  102. pygeai/_docs/source/pygeai.tests.lab.agents.rst +29 -0
  103. pygeai/_docs/source/pygeai.tests.lab.processes.rst +29 -0
  104. pygeai/_docs/source/pygeai.tests.lab.rst +49 -0
  105. pygeai/_docs/source/pygeai.tests.lab.spec.rst +29 -0
  106. pygeai/_docs/source/pygeai.tests.lab.strategies.rst +29 -0
  107. pygeai/_docs/source/pygeai.tests.lab.tools.rst +29 -0
  108. pygeai/_docs/source/pygeai.tests.migration.rst +29 -0
  109. pygeai/_docs/source/pygeai.tests.organization.limits.rst +29 -0
  110. pygeai/_docs/source/pygeai.tests.organization.rst +45 -0
  111. pygeai/_docs/source/pygeai.tests.proxy.rst +61 -0
  112. pygeai/_docs/source/pygeai.tests.rst +31 -0
  113. pygeai/_docs/source/pygeai.tests.snippets.assistants.data_analyst.rst +37 -0
  114. pygeai/_docs/source/pygeai.tests.snippets.assistants.rag.rst +85 -0
  115. pygeai/_docs/source/pygeai.tests.snippets.assistants.rst +78 -0
  116. pygeai/_docs/source/pygeai.tests.snippets.chat.rst +85 -0
  117. pygeai/_docs/source/pygeai.tests.snippets.embeddings.rst +21 -0
  118. pygeai/_docs/source/pygeai.tests.snippets.evaluation.rst +10 -0
  119. pygeai/_docs/source/pygeai.tests.snippets.extras.rst +37 -0
  120. pygeai/_docs/source/pygeai.tests.snippets.files.rst +53 -0
  121. pygeai/_docs/source/pygeai.tests.snippets.gam.rst +21 -0
  122. pygeai/_docs/source/pygeai.tests.snippets.lab.agents.rst +93 -0
  123. pygeai/_docs/source/pygeai.tests.snippets.lab.processes.jobs.rst +21 -0
  124. pygeai/_docs/source/pygeai.tests.snippets.lab.processes.kbs.rst +45 -0
  125. pygeai/_docs/source/pygeai.tests.snippets.lab.processes.rst +46 -0
  126. pygeai/_docs/source/pygeai.tests.snippets.lab.rst +82 -0
  127. pygeai/_docs/source/pygeai.tests.snippets.lab.samples.rst +21 -0
  128. pygeai/_docs/source/pygeai.tests.snippets.lab.strategies.rst +45 -0
  129. pygeai/_docs/source/pygeai.tests.snippets.lab.tools.rst +85 -0
  130. pygeai/_docs/source/pygeai.tests.snippets.lab.use_cases.rst +117 -0
  131. pygeai/_docs/source/pygeai.tests.snippets.migrate.rst +10 -0
  132. pygeai/_docs/source/pygeai.tests.snippets.organization.rst +69 -0
  133. pygeai/_docs/source/pygeai.tests.snippets.rag.rst +85 -0
  134. pygeai/_docs/source/pygeai.tests.snippets.rerank.rst +21 -0
  135. pygeai/_docs/source/pygeai.tests.snippets.rst +30 -0
  136. pygeai/_docs/source/pygeai.tests.snippets.secrets.rst +10 -0
  137. pygeai/_docs/source/pygeai.tests.snippets.usage_limit.rst +77 -0
  138. pygeai/cli/commands/base.py +9 -9
  139. pygeai/cli/commands/docs.py +2 -2
  140. {pygeai-0.6.0b3.dist-info → pygeai-0.6.0b6.dist-info}/METADATA +1 -1
  141. {pygeai-0.6.0b3.dist-info → pygeai-0.6.0b6.dist-info}/RECORD +145 -8
  142. {pygeai-0.6.0b3.dist-info → pygeai-0.6.0b6.dist-info}/WHEEL +0 -0
  143. {pygeai-0.6.0b3.dist-info → pygeai-0.6.0b6.dist-info}/entry_points.txt +0 -0
  144. {pygeai-0.6.0b3.dist-info → pygeai-0.6.0b6.dist-info}/licenses/LICENSE +0 -0
  145. {pygeai-0.6.0b3.dist-info → pygeai-0.6.0b6.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,55 @@
1
+ pygeai.assistant package
2
+ ========================
3
+
4
+ Subpackages
5
+ -----------
6
+
7
+ .. toctree::
8
+ :maxdepth: 4
9
+
10
+ pygeai.assistant.data
11
+ pygeai.assistant.data_analyst
12
+ pygeai.assistant.rag
13
+
14
+ Submodules
15
+ ----------
16
+
17
+ pygeai.assistant.clients module
18
+ -------------------------------
19
+
20
+ .. automodule:: pygeai.assistant.clients
21
+ :members:
22
+ :show-inheritance:
23
+ :undoc-members:
24
+
25
+ pygeai.assistant.endpoints module
26
+ ---------------------------------
27
+
28
+ .. automodule:: pygeai.assistant.endpoints
29
+ :members:
30
+ :show-inheritance:
31
+ :undoc-members:
32
+
33
+ pygeai.assistant.managers module
34
+ --------------------------------
35
+
36
+ .. automodule:: pygeai.assistant.managers
37
+ :members:
38
+ :show-inheritance:
39
+ :undoc-members:
40
+
41
+ pygeai.assistant.mappers module
42
+ -------------------------------
43
+
44
+ .. automodule:: pygeai.assistant.mappers
45
+ :members:
46
+ :show-inheritance:
47
+ :undoc-members:
48
+
49
+ Module contents
50
+ ---------------
51
+
52
+ .. automodule:: pygeai.assistant
53
+ :members:
54
+ :show-inheritance:
55
+ :undoc-members:
@@ -0,0 +1,69 @@
1
+ pygeai.chat package
2
+ ===================
3
+
4
+ Submodules
5
+ ----------
6
+
7
+ pygeai.chat.clients module
8
+ --------------------------
9
+
10
+ .. automodule:: pygeai.chat.clients
11
+ :members:
12
+ :show-inheritance:
13
+ :undoc-members:
14
+
15
+ pygeai.chat.endpoints module
16
+ ----------------------------
17
+
18
+ .. automodule:: pygeai.chat.endpoints
19
+ :members:
20
+ :show-inheritance:
21
+ :undoc-members:
22
+
23
+ pygeai.chat.iris module
24
+ -----------------------
25
+
26
+ .. automodule:: pygeai.chat.iris
27
+ :members:
28
+ :show-inheritance:
29
+ :undoc-members:
30
+
31
+ pygeai.chat.managers module
32
+ ---------------------------
33
+
34
+ .. automodule:: pygeai.chat.managers
35
+ :members:
36
+ :show-inheritance:
37
+ :undoc-members:
38
+
39
+ pygeai.chat.session module
40
+ --------------------------
41
+
42
+ .. automodule:: pygeai.chat.session
43
+ :members:
44
+ :show-inheritance:
45
+ :undoc-members:
46
+
47
+ pygeai.chat.settings module
48
+ ---------------------------
49
+
50
+ .. automodule:: pygeai.chat.settings
51
+ :members:
52
+ :show-inheritance:
53
+ :undoc-members:
54
+
55
+ pygeai.chat.ui module
56
+ ---------------------
57
+
58
+ .. automodule:: pygeai.chat.ui
59
+ :members:
60
+ :show-inheritance:
61
+ :undoc-members:
62
+
63
+ Module contents
64
+ ---------------
65
+
66
+ .. automodule:: pygeai.chat
67
+ :members:
68
+ :show-inheritance:
69
+ :undoc-members:
@@ -0,0 +1,10 @@
1
+ pygeai.cli.commands.flows package
2
+ =================================
3
+
4
+ Module contents
5
+ ---------------
6
+
7
+ .. automodule:: pygeai.cli.commands.flows
8
+ :members:
9
+ :show-inheritance:
10
+ :undoc-members:
@@ -0,0 +1,53 @@
1
+ pygeai.cli.commands.lab package
2
+ ===============================
3
+
4
+ Submodules
5
+ ----------
6
+
7
+ pygeai.cli.commands.lab.ai\_lab module
8
+ --------------------------------------
9
+
10
+ .. automodule:: pygeai.cli.commands.lab.ai_lab
11
+ :members:
12
+ :show-inheritance:
13
+ :undoc-members:
14
+
15
+ pygeai.cli.commands.lab.common module
16
+ -------------------------------------
17
+
18
+ .. automodule:: pygeai.cli.commands.lab.common
19
+ :members:
20
+ :show-inheritance:
21
+ :undoc-members:
22
+
23
+ pygeai.cli.commands.lab.options module
24
+ --------------------------------------
25
+
26
+ .. automodule:: pygeai.cli.commands.lab.options
27
+ :members:
28
+ :show-inheritance:
29
+ :undoc-members:
30
+
31
+ pygeai.cli.commands.lab.spec module
32
+ -----------------------------------
33
+
34
+ .. automodule:: pygeai.cli.commands.lab.spec
35
+ :members:
36
+ :show-inheritance:
37
+ :undoc-members:
38
+
39
+ pygeai.cli.commands.lab.utils module
40
+ ------------------------------------
41
+
42
+ .. automodule:: pygeai.cli.commands.lab.utils
43
+ :members:
44
+ :show-inheritance:
45
+ :undoc-members:
46
+
47
+ Module contents
48
+ ---------------
49
+
50
+ .. automodule:: pygeai.cli.commands.lab
51
+ :members:
52
+ :show-inheritance:
53
+ :undoc-members:
@@ -0,0 +1,198 @@
1
+ pygeai.cli.commands package
2
+ ===========================
3
+
4
+ Subpackages
5
+ -----------
6
+
7
+ .. toctree::
8
+ :maxdepth: 4
9
+
10
+ pygeai.cli.commands.flows
11
+ pygeai.cli.commands.lab
12
+
13
+ Submodules
14
+ ----------
15
+
16
+ pygeai.cli.commands.admin module
17
+ --------------------------------
18
+
19
+ .. automodule:: pygeai.cli.commands.admin
20
+ :members:
21
+ :show-inheritance:
22
+ :undoc-members:
23
+
24
+ pygeai.cli.commands.assistant module
25
+ ------------------------------------
26
+
27
+ .. automodule:: pygeai.cli.commands.assistant
28
+ :members:
29
+ :show-inheritance:
30
+ :undoc-members:
31
+
32
+ pygeai.cli.commands.base module
33
+ -------------------------------
34
+
35
+ .. automodule:: pygeai.cli.commands.base
36
+ :members:
37
+ :show-inheritance:
38
+ :undoc-members:
39
+
40
+ pygeai.cli.commands.builders module
41
+ -----------------------------------
42
+
43
+ .. automodule:: pygeai.cli.commands.builders
44
+ :members:
45
+ :show-inheritance:
46
+ :undoc-members:
47
+
48
+ pygeai.cli.commands.chat module
49
+ -------------------------------
50
+
51
+ .. automodule:: pygeai.cli.commands.chat
52
+ :members:
53
+ :show-inheritance:
54
+ :undoc-members:
55
+
56
+ pygeai.cli.commands.common module
57
+ ---------------------------------
58
+
59
+ .. automodule:: pygeai.cli.commands.common
60
+ :members:
61
+ :show-inheritance:
62
+ :undoc-members:
63
+
64
+ pygeai.cli.commands.configuration module
65
+ ----------------------------------------
66
+
67
+ .. automodule:: pygeai.cli.commands.configuration
68
+ :members:
69
+ :show-inheritance:
70
+ :undoc-members:
71
+
72
+ pygeai.cli.commands.embeddings module
73
+ -------------------------------------
74
+
75
+ .. automodule:: pygeai.cli.commands.embeddings
76
+ :members:
77
+ :show-inheritance:
78
+ :undoc-members:
79
+
80
+ pygeai.cli.commands.evaluation module
81
+ -------------------------------------
82
+
83
+ .. automodule:: pygeai.cli.commands.evaluation
84
+ :members:
85
+ :show-inheritance:
86
+ :undoc-members:
87
+
88
+ pygeai.cli.commands.feedback module
89
+ -----------------------------------
90
+
91
+ .. automodule:: pygeai.cli.commands.feedback
92
+ :members:
93
+ :show-inheritance:
94
+ :undoc-members:
95
+
96
+ pygeai.cli.commands.files module
97
+ --------------------------------
98
+
99
+ .. automodule:: pygeai.cli.commands.files
100
+ :members:
101
+ :show-inheritance:
102
+ :undoc-members:
103
+
104
+ pygeai.cli.commands.gam module
105
+ ------------------------------
106
+
107
+ .. automodule:: pygeai.cli.commands.gam
108
+ :members:
109
+ :show-inheritance:
110
+ :undoc-members:
111
+
112
+ pygeai.cli.commands.llm module
113
+ ------------------------------
114
+
115
+ .. automodule:: pygeai.cli.commands.llm
116
+ :members:
117
+ :show-inheritance:
118
+ :undoc-members:
119
+
120
+ pygeai.cli.commands.migrate module
121
+ ----------------------------------
122
+
123
+ .. automodule:: pygeai.cli.commands.migrate
124
+ :members:
125
+ :show-inheritance:
126
+ :undoc-members:
127
+
128
+ pygeai.cli.commands.options module
129
+ ----------------------------------
130
+
131
+ .. automodule:: pygeai.cli.commands.options
132
+ :members:
133
+ :show-inheritance:
134
+ :undoc-members:
135
+
136
+ pygeai.cli.commands.organization module
137
+ ---------------------------------------
138
+
139
+ .. automodule:: pygeai.cli.commands.organization
140
+ :members:
141
+ :show-inheritance:
142
+ :undoc-members:
143
+
144
+ pygeai.cli.commands.rag module
145
+ ------------------------------
146
+
147
+ .. automodule:: pygeai.cli.commands.rag
148
+ :members:
149
+ :show-inheritance:
150
+ :undoc-members:
151
+
152
+ pygeai.cli.commands.rerank module
153
+ ---------------------------------
154
+
155
+ .. automodule:: pygeai.cli.commands.rerank
156
+ :members:
157
+ :show-inheritance:
158
+ :undoc-members:
159
+
160
+ pygeai.cli.commands.secrets module
161
+ ----------------------------------
162
+
163
+ .. automodule:: pygeai.cli.commands.secrets
164
+ :members:
165
+ :show-inheritance:
166
+ :undoc-members:
167
+
168
+ pygeai.cli.commands.usage\_limits module
169
+ ----------------------------------------
170
+
171
+ .. automodule:: pygeai.cli.commands.usage_limits
172
+ :members:
173
+ :show-inheritance:
174
+ :undoc-members:
175
+
176
+ pygeai.cli.commands.validators module
177
+ -------------------------------------
178
+
179
+ .. automodule:: pygeai.cli.commands.validators
180
+ :members:
181
+ :show-inheritance:
182
+ :undoc-members:
183
+
184
+ pygeai.cli.commands.version module
185
+ ----------------------------------
186
+
187
+ .. automodule:: pygeai.cli.commands.version
188
+ :members:
189
+ :show-inheritance:
190
+ :undoc-members:
191
+
192
+ Module contents
193
+ ---------------
194
+
195
+ .. automodule:: pygeai.cli.commands
196
+ :members:
197
+ :show-inheritance:
198
+ :undoc-members:
@@ -0,0 +1,54 @@
1
+ pygeai.cli package
2
+ ==================
3
+
4
+ Subpackages
5
+ -----------
6
+
7
+ .. toctree::
8
+ :maxdepth: 4
9
+
10
+ pygeai.cli.commands
11
+ pygeai.cli.texts
12
+
13
+ Submodules
14
+ ----------
15
+
16
+ pygeai.cli.geai module
17
+ ----------------------
18
+
19
+ .. automodule:: pygeai.cli.geai
20
+ :members:
21
+ :show-inheritance:
22
+ :undoc-members:
23
+
24
+ pygeai.cli.geai\_proxy module
25
+ -----------------------------
26
+
27
+ .. automodule:: pygeai.cli.geai_proxy
28
+ :members:
29
+ :show-inheritance:
30
+ :undoc-members:
31
+
32
+ pygeai.cli.install\_man module
33
+ ------------------------------
34
+
35
+ .. automodule:: pygeai.cli.install_man
36
+ :members:
37
+ :show-inheritance:
38
+ :undoc-members:
39
+
40
+ pygeai.cli.parsers module
41
+ -------------------------
42
+
43
+ .. automodule:: pygeai.cli.parsers
44
+ :members:
45
+ :show-inheritance:
46
+ :undoc-members:
47
+
48
+ Module contents
49
+ ---------------
50
+
51
+ .. automodule:: pygeai.cli
52
+ :members:
53
+ :show-inheritance:
54
+ :undoc-members:
@@ -0,0 +1,21 @@
1
+ pygeai.cli.texts package
2
+ ========================
3
+
4
+ Submodules
5
+ ----------
6
+
7
+ pygeai.cli.texts.help module
8
+ ----------------------------
9
+
10
+ .. automodule:: pygeai.cli.texts.help
11
+ :members:
12
+ :show-inheritance:
13
+ :undoc-members:
14
+
15
+ Module contents
16
+ ---------------
17
+
18
+ .. automodule:: pygeai.cli.texts
19
+ :members:
20
+ :show-inheritance:
21
+ :undoc-members:
@@ -0,0 +1,53 @@
1
+ pygeai.core.base package
2
+ ========================
3
+
4
+ Submodules
5
+ ----------
6
+
7
+ pygeai.core.base.clients module
8
+ -------------------------------
9
+
10
+ .. automodule:: pygeai.core.base.clients
11
+ :members:
12
+ :show-inheritance:
13
+ :undoc-members:
14
+
15
+ pygeai.core.base.mappers module
16
+ -------------------------------
17
+
18
+ .. automodule:: pygeai.core.base.mappers
19
+ :members:
20
+ :show-inheritance:
21
+ :undoc-members:
22
+
23
+ pygeai.core.base.models module
24
+ ------------------------------
25
+
26
+ .. automodule:: pygeai.core.base.models
27
+ :members:
28
+ :show-inheritance:
29
+ :undoc-members:
30
+
31
+ pygeai.core.base.responses module
32
+ ---------------------------------
33
+
34
+ .. automodule:: pygeai.core.base.responses
35
+ :members:
36
+ :show-inheritance:
37
+ :undoc-members:
38
+
39
+ pygeai.core.base.session module
40
+ -------------------------------
41
+
42
+ .. automodule:: pygeai.core.base.session
43
+ :members:
44
+ :show-inheritance:
45
+ :undoc-members:
46
+
47
+ Module contents
48
+ ---------------
49
+
50
+ .. automodule:: pygeai.core.base
51
+ :members:
52
+ :show-inheritance:
53
+ :undoc-members:
@@ -0,0 +1,37 @@
1
+ pygeai.core.common package
2
+ ==========================
3
+
4
+ Submodules
5
+ ----------
6
+
7
+ pygeai.core.common.config module
8
+ --------------------------------
9
+
10
+ .. automodule:: pygeai.core.common.config
11
+ :members:
12
+ :show-inheritance:
13
+ :undoc-members:
14
+
15
+ pygeai.core.common.decorators module
16
+ ------------------------------------
17
+
18
+ .. automodule:: pygeai.core.common.decorators
19
+ :members:
20
+ :show-inheritance:
21
+ :undoc-members:
22
+
23
+ pygeai.core.common.exceptions module
24
+ ------------------------------------
25
+
26
+ .. automodule:: pygeai.core.common.exceptions
27
+ :members:
28
+ :show-inheritance:
29
+ :undoc-members:
30
+
31
+ Module contents
32
+ ---------------
33
+
34
+ .. automodule:: pygeai.core.common
35
+ :members:
36
+ :show-inheritance:
37
+ :undoc-members:
@@ -0,0 +1,61 @@
1
+ pygeai.core.embeddings package
2
+ ==============================
3
+
4
+ Submodules
5
+ ----------
6
+
7
+ pygeai.core.embeddings.clients module
8
+ -------------------------------------
9
+
10
+ .. automodule:: pygeai.core.embeddings.clients
11
+ :members:
12
+ :show-inheritance:
13
+ :undoc-members:
14
+
15
+ pygeai.core.embeddings.endpoints module
16
+ ---------------------------------------
17
+
18
+ .. automodule:: pygeai.core.embeddings.endpoints
19
+ :members:
20
+ :show-inheritance:
21
+ :undoc-members:
22
+
23
+ pygeai.core.embeddings.managers module
24
+ --------------------------------------
25
+
26
+ .. automodule:: pygeai.core.embeddings.managers
27
+ :members:
28
+ :show-inheritance:
29
+ :undoc-members:
30
+
31
+ pygeai.core.embeddings.mappers module
32
+ -------------------------------------
33
+
34
+ .. automodule:: pygeai.core.embeddings.mappers
35
+ :members:
36
+ :show-inheritance:
37
+ :undoc-members:
38
+
39
+ pygeai.core.embeddings.models module
40
+ ------------------------------------
41
+
42
+ .. automodule:: pygeai.core.embeddings.models
43
+ :members:
44
+ :show-inheritance:
45
+ :undoc-members:
46
+
47
+ pygeai.core.embeddings.responses module
48
+ ---------------------------------------
49
+
50
+ .. automodule:: pygeai.core.embeddings.responses
51
+ :members:
52
+ :show-inheritance:
53
+ :undoc-members:
54
+
55
+ Module contents
56
+ ---------------
57
+
58
+ .. automodule:: pygeai.core.embeddings
59
+ :members:
60
+ :show-inheritance:
61
+ :undoc-members:
@@ -0,0 +1,37 @@
1
+ pygeai.core.feedback package
2
+ ============================
3
+
4
+ Submodules
5
+ ----------
6
+
7
+ pygeai.core.feedback.clients module
8
+ -----------------------------------
9
+
10
+ .. automodule:: pygeai.core.feedback.clients
11
+ :members:
12
+ :show-inheritance:
13
+ :undoc-members:
14
+
15
+ pygeai.core.feedback.endpoints module
16
+ -------------------------------------
17
+
18
+ .. automodule:: pygeai.core.feedback.endpoints
19
+ :members:
20
+ :show-inheritance:
21
+ :undoc-members:
22
+
23
+ pygeai.core.feedback.models module
24
+ ----------------------------------
25
+
26
+ .. automodule:: pygeai.core.feedback.models
27
+ :members:
28
+ :show-inheritance:
29
+ :undoc-members:
30
+
31
+ Module contents
32
+ ---------------
33
+
34
+ .. automodule:: pygeai.core.feedback
35
+ :members:
36
+ :show-inheritance:
37
+ :undoc-members:
@@ -0,0 +1,61 @@
1
+ pygeai.core.files package
2
+ =========================
3
+
4
+ Submodules
5
+ ----------
6
+
7
+ pygeai.core.files.clients module
8
+ --------------------------------
9
+
10
+ .. automodule:: pygeai.core.files.clients
11
+ :members:
12
+ :show-inheritance:
13
+ :undoc-members:
14
+
15
+ pygeai.core.files.endpoints module
16
+ ----------------------------------
17
+
18
+ .. automodule:: pygeai.core.files.endpoints
19
+ :members:
20
+ :show-inheritance:
21
+ :undoc-members:
22
+
23
+ pygeai.core.files.managers module
24
+ ---------------------------------
25
+
26
+ .. automodule:: pygeai.core.files.managers
27
+ :members:
28
+ :show-inheritance:
29
+ :undoc-members:
30
+
31
+ pygeai.core.files.mappers module
32
+ --------------------------------
33
+
34
+ .. automodule:: pygeai.core.files.mappers
35
+ :members:
36
+ :show-inheritance:
37
+ :undoc-members:
38
+
39
+ pygeai.core.files.models module
40
+ -------------------------------
41
+
42
+ .. automodule:: pygeai.core.files.models
43
+ :members:
44
+ :show-inheritance:
45
+ :undoc-members:
46
+
47
+ pygeai.core.files.responses module
48
+ ----------------------------------
49
+
50
+ .. automodule:: pygeai.core.files.responses
51
+ :members:
52
+ :show-inheritance:
53
+ :undoc-members:
54
+
55
+ Module contents
56
+ ---------------
57
+
58
+ .. automodule:: pygeai.core.files
59
+ :members:
60
+ :show-inheritance:
61
+ :undoc-members: