glaip-sdk 0.1.2__py3-none-any.whl → 0.7.17__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 (217) hide show
  1. glaip_sdk/__init__.py +44 -4
  2. glaip_sdk/_version.py +9 -0
  3. glaip_sdk/agents/__init__.py +27 -0
  4. glaip_sdk/agents/base.py +1413 -0
  5. glaip_sdk/branding.py +126 -2
  6. glaip_sdk/cli/account_store.py +555 -0
  7. glaip_sdk/cli/auth.py +260 -15
  8. glaip_sdk/cli/commands/__init__.py +2 -2
  9. glaip_sdk/cli/commands/accounts.py +746 -0
  10. glaip_sdk/cli/commands/agents/__init__.py +116 -0
  11. glaip_sdk/cli/commands/agents/_common.py +562 -0
  12. glaip_sdk/cli/commands/agents/create.py +155 -0
  13. glaip_sdk/cli/commands/agents/delete.py +64 -0
  14. glaip_sdk/cli/commands/agents/get.py +89 -0
  15. glaip_sdk/cli/commands/agents/list.py +129 -0
  16. glaip_sdk/cli/commands/agents/run.py +264 -0
  17. glaip_sdk/cli/commands/agents/sync_langflow.py +72 -0
  18. glaip_sdk/cli/commands/agents/update.py +112 -0
  19. glaip_sdk/cli/commands/common_config.py +104 -0
  20. glaip_sdk/cli/commands/configure.py +728 -113
  21. glaip_sdk/cli/commands/mcps/__init__.py +94 -0
  22. glaip_sdk/cli/commands/mcps/_common.py +459 -0
  23. glaip_sdk/cli/commands/mcps/connect.py +82 -0
  24. glaip_sdk/cli/commands/mcps/create.py +152 -0
  25. glaip_sdk/cli/commands/mcps/delete.py +73 -0
  26. glaip_sdk/cli/commands/mcps/get.py +212 -0
  27. glaip_sdk/cli/commands/mcps/list.py +69 -0
  28. glaip_sdk/cli/commands/mcps/tools.py +235 -0
  29. glaip_sdk/cli/commands/mcps/update.py +190 -0
  30. glaip_sdk/cli/commands/models.py +12 -8
  31. glaip_sdk/cli/commands/shared/__init__.py +21 -0
  32. glaip_sdk/cli/commands/shared/formatters.py +91 -0
  33. glaip_sdk/cli/commands/tools/__init__.py +69 -0
  34. glaip_sdk/cli/commands/tools/_common.py +80 -0
  35. glaip_sdk/cli/commands/tools/create.py +228 -0
  36. glaip_sdk/cli/commands/tools/delete.py +61 -0
  37. glaip_sdk/cli/commands/tools/get.py +103 -0
  38. glaip_sdk/cli/commands/tools/list.py +69 -0
  39. glaip_sdk/cli/commands/tools/script.py +49 -0
  40. glaip_sdk/cli/commands/tools/update.py +102 -0
  41. glaip_sdk/cli/commands/transcripts/__init__.py +90 -0
  42. glaip_sdk/cli/commands/transcripts/_common.py +9 -0
  43. glaip_sdk/cli/commands/transcripts/clear.py +5 -0
  44. glaip_sdk/cli/commands/transcripts/detail.py +5 -0
  45. glaip_sdk/cli/commands/transcripts_original.py +756 -0
  46. glaip_sdk/cli/commands/update.py +163 -17
  47. glaip_sdk/cli/config.py +49 -4
  48. glaip_sdk/cli/constants.py +38 -0
  49. glaip_sdk/cli/context.py +8 -0
  50. glaip_sdk/cli/core/__init__.py +79 -0
  51. glaip_sdk/cli/core/context.py +124 -0
  52. glaip_sdk/cli/core/output.py +851 -0
  53. glaip_sdk/cli/core/prompting.py +649 -0
  54. glaip_sdk/cli/core/rendering.py +187 -0
  55. glaip_sdk/cli/display.py +41 -20
  56. glaip_sdk/cli/entrypoint.py +20 -0
  57. glaip_sdk/cli/hints.py +57 -0
  58. glaip_sdk/cli/io.py +6 -3
  59. glaip_sdk/cli/main.py +340 -143
  60. glaip_sdk/cli/masking.py +21 -33
  61. glaip_sdk/cli/pager.py +12 -13
  62. glaip_sdk/cli/parsers/__init__.py +1 -3
  63. glaip_sdk/cli/resolution.py +2 -1
  64. glaip_sdk/cli/slash/__init__.py +0 -9
  65. glaip_sdk/cli/slash/accounts_controller.py +580 -0
  66. glaip_sdk/cli/slash/accounts_shared.py +75 -0
  67. glaip_sdk/cli/slash/agent_session.py +62 -21
  68. glaip_sdk/cli/slash/prompt.py +21 -0
  69. glaip_sdk/cli/slash/remote_runs_controller.py +568 -0
  70. glaip_sdk/cli/slash/session.py +1105 -153
  71. glaip_sdk/cli/slash/tui/__init__.py +36 -0
  72. glaip_sdk/cli/slash/tui/accounts.tcss +177 -0
  73. glaip_sdk/cli/slash/tui/accounts_app.py +1853 -0
  74. glaip_sdk/cli/slash/tui/background_tasks.py +72 -0
  75. glaip_sdk/cli/slash/tui/clipboard.py +195 -0
  76. glaip_sdk/cli/slash/tui/context.py +92 -0
  77. glaip_sdk/cli/slash/tui/indicators.py +341 -0
  78. glaip_sdk/cli/slash/tui/keybind_registry.py +235 -0
  79. glaip_sdk/cli/slash/tui/layouts/__init__.py +14 -0
  80. glaip_sdk/cli/slash/tui/layouts/harlequin.py +184 -0
  81. glaip_sdk/cli/slash/tui/loading.py +80 -0
  82. glaip_sdk/cli/slash/tui/remote_runs_app.py +760 -0
  83. glaip_sdk/cli/slash/tui/terminal.py +407 -0
  84. glaip_sdk/cli/slash/tui/theme/__init__.py +15 -0
  85. glaip_sdk/cli/slash/tui/theme/catalog.py +79 -0
  86. glaip_sdk/cli/slash/tui/theme/manager.py +112 -0
  87. glaip_sdk/cli/slash/tui/theme/tokens.py +55 -0
  88. glaip_sdk/cli/slash/tui/toast.py +388 -0
  89. glaip_sdk/cli/transcript/__init__.py +12 -52
  90. glaip_sdk/cli/transcript/cache.py +255 -44
  91. glaip_sdk/cli/transcript/capture.py +66 -1
  92. glaip_sdk/cli/transcript/history.py +815 -0
  93. glaip_sdk/cli/transcript/viewer.py +72 -463
  94. glaip_sdk/cli/tui_settings.py +125 -0
  95. glaip_sdk/cli/update_notifier.py +227 -10
  96. glaip_sdk/cli/validators.py +5 -6
  97. glaip_sdk/client/__init__.py +3 -1
  98. glaip_sdk/client/_schedule_payloads.py +89 -0
  99. glaip_sdk/client/agent_runs.py +147 -0
  100. glaip_sdk/client/agents.py +576 -44
  101. glaip_sdk/client/base.py +26 -0
  102. glaip_sdk/client/hitl.py +136 -0
  103. glaip_sdk/client/main.py +25 -14
  104. glaip_sdk/client/mcps.py +165 -24
  105. glaip_sdk/client/payloads/agent/__init__.py +23 -0
  106. glaip_sdk/client/{_agent_payloads.py → payloads/agent/requests.py} +63 -47
  107. glaip_sdk/client/payloads/agent/responses.py +43 -0
  108. glaip_sdk/client/run_rendering.py +546 -92
  109. glaip_sdk/client/schedules.py +439 -0
  110. glaip_sdk/client/shared.py +21 -0
  111. glaip_sdk/client/tools.py +206 -32
  112. glaip_sdk/config/constants.py +33 -2
  113. glaip_sdk/guardrails/__init__.py +80 -0
  114. glaip_sdk/guardrails/serializer.py +89 -0
  115. glaip_sdk/hitl/__init__.py +48 -0
  116. glaip_sdk/hitl/base.py +64 -0
  117. glaip_sdk/hitl/callback.py +43 -0
  118. glaip_sdk/hitl/local.py +121 -0
  119. glaip_sdk/hitl/remote.py +523 -0
  120. glaip_sdk/mcps/__init__.py +21 -0
  121. glaip_sdk/mcps/base.py +345 -0
  122. glaip_sdk/models/__init__.py +136 -0
  123. glaip_sdk/models/_provider_mappings.py +101 -0
  124. glaip_sdk/models/_validation.py +97 -0
  125. glaip_sdk/models/agent.py +48 -0
  126. glaip_sdk/models/agent_runs.py +117 -0
  127. glaip_sdk/models/common.py +42 -0
  128. glaip_sdk/models/constants.py +141 -0
  129. glaip_sdk/models/mcp.py +33 -0
  130. glaip_sdk/models/model.py +170 -0
  131. glaip_sdk/models/schedule.py +224 -0
  132. glaip_sdk/models/tool.py +33 -0
  133. glaip_sdk/payload_schemas/__init__.py +1 -13
  134. glaip_sdk/payload_schemas/agent.py +1 -0
  135. glaip_sdk/payload_schemas/guardrails.py +34 -0
  136. glaip_sdk/registry/__init__.py +55 -0
  137. glaip_sdk/registry/agent.py +164 -0
  138. glaip_sdk/registry/base.py +139 -0
  139. glaip_sdk/registry/mcp.py +253 -0
  140. glaip_sdk/registry/tool.py +445 -0
  141. glaip_sdk/rich_components.py +58 -2
  142. glaip_sdk/runner/__init__.py +76 -0
  143. glaip_sdk/runner/base.py +84 -0
  144. glaip_sdk/runner/deps.py +115 -0
  145. glaip_sdk/runner/langgraph.py +1055 -0
  146. glaip_sdk/runner/logging_config.py +77 -0
  147. glaip_sdk/runner/mcp_adapter/__init__.py +13 -0
  148. glaip_sdk/runner/mcp_adapter/base_mcp_adapter.py +43 -0
  149. glaip_sdk/runner/mcp_adapter/langchain_mcp_adapter.py +257 -0
  150. glaip_sdk/runner/mcp_adapter/mcp_config_builder.py +116 -0
  151. glaip_sdk/runner/tool_adapter/__init__.py +18 -0
  152. glaip_sdk/runner/tool_adapter/base_tool_adapter.py +44 -0
  153. glaip_sdk/runner/tool_adapter/langchain_tool_adapter.py +242 -0
  154. glaip_sdk/schedules/__init__.py +22 -0
  155. glaip_sdk/schedules/base.py +291 -0
  156. glaip_sdk/tools/__init__.py +22 -0
  157. glaip_sdk/tools/base.py +488 -0
  158. glaip_sdk/utils/__init__.py +59 -12
  159. glaip_sdk/utils/a2a/__init__.py +34 -0
  160. glaip_sdk/utils/a2a/event_processor.py +188 -0
  161. glaip_sdk/utils/agent_config.py +8 -2
  162. glaip_sdk/utils/bundler.py +403 -0
  163. glaip_sdk/utils/client.py +111 -0
  164. glaip_sdk/utils/client_utils.py +39 -7
  165. glaip_sdk/utils/datetime_helpers.py +58 -0
  166. glaip_sdk/utils/discovery.py +78 -0
  167. glaip_sdk/utils/display.py +23 -15
  168. glaip_sdk/utils/export.py +143 -0
  169. glaip_sdk/utils/general.py +0 -33
  170. glaip_sdk/utils/import_export.py +12 -7
  171. glaip_sdk/utils/import_resolver.py +524 -0
  172. glaip_sdk/utils/instructions.py +101 -0
  173. glaip_sdk/utils/rendering/__init__.py +115 -1
  174. glaip_sdk/utils/rendering/formatting.py +5 -30
  175. glaip_sdk/utils/rendering/layout/__init__.py +64 -0
  176. glaip_sdk/utils/rendering/{renderer → layout}/panels.py +9 -0
  177. glaip_sdk/utils/rendering/{renderer → layout}/progress.py +70 -1
  178. glaip_sdk/utils/rendering/layout/summary.py +74 -0
  179. glaip_sdk/utils/rendering/layout/transcript.py +606 -0
  180. glaip_sdk/utils/rendering/models.py +1 -0
  181. glaip_sdk/utils/rendering/renderer/__init__.py +9 -47
  182. glaip_sdk/utils/rendering/renderer/base.py +299 -1434
  183. glaip_sdk/utils/rendering/renderer/config.py +1 -5
  184. glaip_sdk/utils/rendering/renderer/debug.py +26 -20
  185. glaip_sdk/utils/rendering/renderer/factory.py +138 -0
  186. glaip_sdk/utils/rendering/renderer/stream.py +4 -33
  187. glaip_sdk/utils/rendering/renderer/summary_window.py +79 -0
  188. glaip_sdk/utils/rendering/renderer/thinking.py +273 -0
  189. glaip_sdk/utils/rendering/renderer/tool_panels.py +442 -0
  190. glaip_sdk/utils/rendering/renderer/transcript_mode.py +162 -0
  191. glaip_sdk/utils/rendering/state.py +204 -0
  192. glaip_sdk/utils/rendering/steps/__init__.py +34 -0
  193. glaip_sdk/utils/rendering/{steps.py → steps/event_processor.py} +53 -440
  194. glaip_sdk/utils/rendering/steps/format.py +176 -0
  195. glaip_sdk/utils/rendering/steps/manager.py +387 -0
  196. glaip_sdk/utils/rendering/timing.py +36 -0
  197. glaip_sdk/utils/rendering/viewer/__init__.py +21 -0
  198. glaip_sdk/utils/rendering/viewer/presenter.py +184 -0
  199. glaip_sdk/utils/resource_refs.py +25 -13
  200. glaip_sdk/utils/runtime_config.py +426 -0
  201. glaip_sdk/utils/serialization.py +18 -0
  202. glaip_sdk/utils/sync.py +162 -0
  203. glaip_sdk/utils/tool_detection.py +301 -0
  204. glaip_sdk/utils/tool_storage_provider.py +140 -0
  205. glaip_sdk/utils/validation.py +16 -24
  206. {glaip_sdk-0.1.2.dist-info → glaip_sdk-0.7.17.dist-info}/METADATA +69 -23
  207. glaip_sdk-0.7.17.dist-info/RECORD +224 -0
  208. {glaip_sdk-0.1.2.dist-info → glaip_sdk-0.7.17.dist-info}/WHEEL +2 -1
  209. glaip_sdk-0.7.17.dist-info/entry_points.txt +2 -0
  210. glaip_sdk-0.7.17.dist-info/top_level.txt +1 -0
  211. glaip_sdk/cli/commands/agents.py +0 -1369
  212. glaip_sdk/cli/commands/mcps.py +0 -1187
  213. glaip_sdk/cli/commands/tools.py +0 -584
  214. glaip_sdk/cli/utils.py +0 -1278
  215. glaip_sdk/models.py +0 -240
  216. glaip_sdk-0.1.2.dist-info/RECORD +0 -82
  217. glaip_sdk-0.1.2.dist-info/entry_points.txt +0 -3
glaip_sdk/models.py DELETED
@@ -1,240 +0,0 @@
1
- #!/usr/bin/env python3
2
- """Data models for AIP SDK.
3
-
4
- Authors:
5
- Raymond Christopher (raymond.christopher@gdplabs.id)
6
- """
7
-
8
- from collections.abc import AsyncGenerator
9
- from datetime import datetime
10
- from typing import Any
11
-
12
- from pydantic import BaseModel
13
-
14
- from glaip_sdk.config.constants import DEFAULT_AGENT_RUN_TIMEOUT
15
-
16
- _AGENT_CLIENT_REQUIRED_MSG = "No client available. Use client.get_agent_by_id() to get a client-connected agent."
17
- _MCP_CLIENT_REQUIRED_MSG = "No client available. Use client.get_mcp_by_id() to get a client-connected MCP."
18
-
19
-
20
- class Agent(BaseModel):
21
- """Agent model for API responses."""
22
-
23
- id: str
24
- name: str
25
- instruction: str | None = None
26
- description: str | None = None # Add missing description field
27
- type: str | None = None
28
- framework: str | None = None
29
- version: str | None = None
30
- tools: list[dict[str, Any]] | None = None # Backend returns ToolReference objects
31
- agents: list[dict[str, Any]] | None = None # Backend returns AgentReference objects
32
- mcps: list[dict[str, Any]] | None = None # Backend returns MCPReference objects
33
- tool_configs: dict[str, Any] | None = None # Backend returns tool configurations keyed by tool UUID
34
- agent_config: dict[str, Any] | None = None
35
- timeout: int = DEFAULT_AGENT_RUN_TIMEOUT
36
- metadata: dict[str, Any] | None = None
37
- language_model_id: str | None = None
38
- a2a_profile: dict[str, Any] | None = None
39
- created_at: datetime | None = None # Backend returns creation timestamp
40
- updated_at: datetime | None = None # Backend returns last update timestamp
41
- _client: Any = None
42
-
43
- def _set_client(self, client: Any) -> "Agent":
44
- """Set the client reference for this resource."""
45
- self._client = client
46
- return self
47
-
48
- def run(self, message: str, verbose: bool = False, **kwargs) -> str:
49
- """Run the agent with a message.
50
-
51
- Args:
52
- message: The message to send to the agent
53
- verbose: Enable verbose output and event JSON logging
54
- **kwargs: Additional arguments passed to run_agent
55
- """
56
- if not self._client:
57
- raise RuntimeError(_AGENT_CLIENT_REQUIRED_MSG)
58
- # Automatically pass the agent name for better renderer display
59
- kwargs.setdefault("agent_name", self.name)
60
- # Pass the agent's configured timeout if not explicitly overridden
61
- if "timeout" not in kwargs:
62
- kwargs["timeout"] = self.timeout
63
- # Pass verbose flag through to enable event JSON output
64
- return self._client.run_agent(self.id, message, verbose=verbose, **kwargs)
65
-
66
- async def arun(self, message: str, **kwargs) -> AsyncGenerator[dict, None]:
67
- """Async run the agent with a message, yielding streaming JSON chunks.
68
-
69
- Args:
70
- message: The message to send to the agent
71
- **kwargs: Additional arguments passed to arun_agent
72
-
73
- Yields:
74
- Dictionary containing parsed JSON chunks from the streaming response
75
-
76
- Raises:
77
- RuntimeError: When no client is available
78
- AgentTimeoutError: When agent execution times out
79
- Exception: For other unexpected errors
80
- """
81
- if not self._client:
82
- raise RuntimeError(_AGENT_CLIENT_REQUIRED_MSG)
83
- # Automatically pass the agent name for better context
84
- kwargs.setdefault("agent_name", self.name)
85
- # Pass the agent's configured timeout if not explicitly overridden
86
- if "timeout" not in kwargs:
87
- kwargs["timeout"] = self.timeout
88
-
89
- async for chunk in self._client.arun_agent(self.id, message, **kwargs):
90
- yield chunk
91
-
92
- def update(self, **kwargs) -> "Agent":
93
- """Update agent attributes."""
94
- if not self._client:
95
- raise RuntimeError(_AGENT_CLIENT_REQUIRED_MSG)
96
- updated_agent = self._client.update_agent(self.id, **kwargs)
97
- # Update current instance with new data
98
- for key, value in updated_agent.model_dump().items():
99
- if hasattr(self, key):
100
- setattr(self, key, value)
101
- return self
102
-
103
- def delete(self) -> None:
104
- """Delete the agent."""
105
- if not self._client:
106
- raise RuntimeError(_AGENT_CLIENT_REQUIRED_MSG)
107
- self._client.delete_agent(self.id)
108
-
109
-
110
- class Tool(BaseModel):
111
- """Tool model for API responses."""
112
-
113
- id: str
114
- name: str
115
- tool_type: str | None = None
116
- description: str | None = None
117
- framework: str | None = None
118
- version: str | None = None
119
- tool_script: str | None = None
120
- tool_file: str | None = None
121
- tags: str | list[str] | None = None
122
- _client: Any = None # Will hold client reference
123
-
124
- def _set_client(self, client: Any) -> "Tool":
125
- """Set the client reference for this resource."""
126
- self._client = client
127
- return self
128
-
129
- def get_script(self) -> str:
130
- """Get the tool script content."""
131
- if self.tool_script:
132
- return self.tool_script
133
- elif self.tool_file:
134
- return f"Script content from file: {self.tool_file}"
135
- else:
136
- return "No script content available"
137
-
138
- def update(self, **kwargs) -> "Tool":
139
- """Update tool attributes.
140
-
141
- Supports both metadata updates and file uploads.
142
- Pass 'file' parameter to update tool code via file upload.
143
- """
144
- if not self._client:
145
- raise RuntimeError("No client available. Use client.get_tool_by_id() to get a client-connected tool.")
146
-
147
- # Check if file upload is requested
148
- if "file" in kwargs:
149
- file_path = kwargs.pop("file") # Remove file from kwargs for metadata
150
- updated_tool = self._client.tools.update_tool_via_file(self.id, file_path, **kwargs)
151
- else:
152
- # Regular metadata update
153
- updated_tool = self._client.tools.update_tool(self.id, **kwargs)
154
-
155
- # Update current instance with new data
156
- for key, value in updated_tool.model_dump().items():
157
- if hasattr(self, key):
158
- setattr(self, key, value)
159
- return self
160
-
161
- def delete(self) -> None:
162
- """Delete the tool."""
163
- if not self._client:
164
- raise RuntimeError("No client available. Use client.get_tool_by_id() to get a client-connected tool.")
165
- self._client.delete_tool(self.id)
166
-
167
-
168
- class MCP(BaseModel):
169
- """MCP model for API responses."""
170
-
171
- id: str
172
- name: str
173
- description: str | None = None
174
- config: dict[str, Any] | None = None
175
- transport: str | None = None # "sse" or "http"
176
- authentication: dict[str, Any] | None = None
177
- metadata: dict[str, Any] | None = None
178
- _client: Any = None # Will hold client reference
179
-
180
- def _set_client(self, client: Any) -> "MCP":
181
- """Set the client reference for this resource."""
182
- self._client = client
183
- return self
184
-
185
- def get_tools(self) -> list[dict[str, Any]]:
186
- """Get tools available from this MCP."""
187
- if not self._client:
188
- raise RuntimeError(_MCP_CLIENT_REQUIRED_MSG)
189
- # This would delegate to the client's MCP tools endpoint
190
- # For now, return empty list as placeholder
191
- return []
192
-
193
- def update(self, **kwargs) -> "MCP":
194
- """Update MCP attributes."""
195
- if not self._client:
196
- raise RuntimeError(_MCP_CLIENT_REQUIRED_MSG)
197
- updated_mcp = self._client.update_mcp(self.id, **kwargs)
198
- # Update current instance with new data
199
- for key, value in updated_mcp.model_dump().items():
200
- if hasattr(self, key):
201
- setattr(self, key, value)
202
- return self
203
-
204
- def delete(self) -> None:
205
- """Delete the MCP."""
206
- if not self._client:
207
- raise RuntimeError("No client available. Use client.get_mcp_by_id() to get a client-connected MCP.")
208
- self._client.delete_mcp(self.id)
209
-
210
-
211
- class LanguageModelResponse(BaseModel):
212
- """Language model response model."""
213
-
214
- name: str
215
- provider: str
216
- description: str | None = None
217
- capabilities: list[str] | None = None
218
- max_tokens: int | None = None
219
- supports_streaming: bool = False
220
-
221
-
222
- class TTYRenderer:
223
- """Simple TTY renderer for non-Rich environments."""
224
-
225
- def __init__(self, use_color: bool = True):
226
- """Initialize the TTY renderer.
227
-
228
- Args:
229
- use_color: Whether to use color output
230
- """
231
- self.use_color = use_color
232
-
233
- def render_message(self, message: str, event_type: str = "message") -> None:
234
- """Render a message with optional color."""
235
- if event_type == "error":
236
- print(f"ERROR: {message}", flush=True)
237
- elif event_type == "done":
238
- print(f"\n✅ {message}", flush=True)
239
- else:
240
- print(message, flush=True)
@@ -1,82 +0,0 @@
1
- glaip_sdk/__init__.py,sha256=-Itm_1dz4QwhIUmqagvCwwvSjKYKYJI3lZSHD2bwtko,366
2
- glaip_sdk/_version.py,sha256=OtLSiyZ-H-_74HFCQrCxYc3u5AAX5S7AlUKhIa28dvY,1977
3
- glaip_sdk/branding.py,sha256=K-q7OjRNNgKsd6Z_h_pfWN8BUiDjX9BVxT9ePJ3AZfw,7318
4
- glaip_sdk/cli/__init__.py,sha256=xCCfuF1Yc7mpCDcfhHZTX0vizvtrDSLeT8MJ3V7m5A0,156
5
- glaip_sdk/cli/agent_config.py,sha256=YAbFKrTNTRqNA6b0i0Q3pH-01rhHDRi5v8dxSFwGSwM,2401
6
- glaip_sdk/cli/auth.py,sha256=oZLgZTqVgx_o2ppcp1ueFwuu88acOUPUr9ed1WDe_HY,15860
7
- glaip_sdk/cli/commands/__init__.py,sha256=N2go38u3C0MPxfDXk-K2zz93OnqSTpQyOE6dIC82lHg,191
8
- glaip_sdk/cli/commands/agents.py,sha256=l2Uy6tN8SCZ4CEY7P__Wx3CrcIcaG51exbqUh63-cVs,43901
9
- glaip_sdk/cli/commands/configure.py,sha256=7dmMSs-rMRETtpWgUDEGeNedSJl04yrp6VCRiLEpBUI,9074
10
- glaip_sdk/cli/commands/mcps.py,sha256=oYzL52gUImi5x5mx8grbWkTwUTpAp7VoYGalOzEyLqU,37465
11
- glaip_sdk/cli/commands/models.py,sha256=CQrjIwVeZED6AQXJ321UVB8IvmGrEjOIWrtlgDBu6HI,1775
12
- glaip_sdk/cli/commands/tools.py,sha256=5y0ec1K1sNvLv0MwvEY0ggb5xiU2k2O2FsWL6k9NDxI,19102
13
- glaip_sdk/cli/commands/update.py,sha256=rIZo_x-tvpvcwpQLpwYwso1ix6qTHuNNTL4egmn5fEM,1812
14
- glaip_sdk/cli/config.py,sha256=sZLG0wPlLegl71g_J4PZxWb46wCZJgtEQQ5ppsr45CU,1297
15
- glaip_sdk/cli/context.py,sha256=M4weRf8dmp5bMtPLRF3w1StnRB7Lo8FPFq2GQMv3Rv8,3617
16
- glaip_sdk/cli/display.py,sha256=22L3dt8exPd4_dtjpTmg1vwYqoNLLkTB_8GLukMfkyg,11209
17
- glaip_sdk/cli/io.py,sha256=_7qHA3K4VfzNXP7NYHShby_Bw9xigJ26oIaESXYDAQ8,3678
18
- glaip_sdk/cli/main.py,sha256=ESxVe_m5NDXPUc9XMHhgneH4MtBVOZpxdwPyYDtNz64,17110
19
- glaip_sdk/cli/masking.py,sha256=BOZjwUqxQf3LQlYgUMwq7UYgve8x4_1Qk04ixiJJPZ8,4399
20
- glaip_sdk/cli/mcp_validators.py,sha256=cwbz7p_p7_9xVuuF96OBQOdmEgo5UObU6iWWQ2X03PI,10047
21
- glaip_sdk/cli/pager.py,sha256=Cp1t47ViCUW3T3IkHdRBF2yNOrVLrnIBIemTxBso17Q,8049
22
- glaip_sdk/cli/parsers/__init__.py,sha256=Ycd4HDfYmA7GUGFt0ndBPBo5uTbv15XsXnYUj-a89ug,183
23
- glaip_sdk/cli/parsers/json_input.py,sha256=kxoxeIlgfsaH2jhe6apZAgSxAtwlpSINLTMRsZZYboQ,5630
24
- glaip_sdk/cli/resolution.py,sha256=K-VaEHm9SYY_qfb9538VNHykL4_2N6F8iQqI1zMx_64,2402
25
- glaip_sdk/cli/rich_helpers.py,sha256=kO47N8e506rxrN6Oc9mbAWN3Qb536oQPWZy1s9A616g,819
26
- glaip_sdk/cli/slash/__init__.py,sha256=3kAXgOAnXmWkDheNtRuWqCooyIDaNYZMLTrbdhMGz9w,738
27
- glaip_sdk/cli/slash/agent_session.py,sha256=LbG7MLAptr_JB5YnU6CtDCKUtpmxRzJS0mcQwaZX-5o,9427
28
- glaip_sdk/cli/slash/prompt.py,sha256=4rCGSu56EEj24J42vHWAuJNwiUE5Cb6AK3gOhpms38k,7627
29
- glaip_sdk/cli/slash/session.py,sha256=A8xO4gKZENmEwVGp6BN8791kuo2cjEJlaLlhsITc5vI,41191
30
- glaip_sdk/cli/transcript/__init__.py,sha256=zQNgAETJsj2tO3OmuINgXiCQCmh_ODzI6HQPPmxMXVs,1816
31
- glaip_sdk/cli/transcript/cache.py,sha256=1jZdrLo9CebXuKnD1tIiMJy2-6D-zjf0WmJcBJ5gOvE,9760
32
- glaip_sdk/cli/transcript/capture.py,sha256=d3WZW13NQ3Xq_8qt-WScveFXzV06iV89IPqZBAGIGIc,8221
33
- glaip_sdk/cli/transcript/export.py,sha256=reCvrZVzli8_LzYe5ZNdaa-MwZ1ov2RjnDzKZWr_6-E,1117
34
- glaip_sdk/cli/transcript/launcher.py,sha256=z5ivkPXDQJpATIqtRLUK8jH3p3WIZ72PvOPqYRDMJvw,2327
35
- glaip_sdk/cli/transcript/viewer.py,sha256=goQiIAAR2nL0jWnRggFTcpSQE0rts7O8nfHDtSGV78c,26698
36
- glaip_sdk/cli/update_notifier.py,sha256=4h3F7q2DoMGyJSp8tu5NJHt8yeCVBOL-3A0ZyHyvRpw,9532
37
- glaip_sdk/cli/utils.py,sha256=JTcfMIJr-aN_g3iI2VD33h9W9Ai06TEzaVqzWhd6MGQ,40750
38
- glaip_sdk/cli/validators.py,sha256=Squ2W-fMz9kfvhtTt7pCcAYnzFU28ZxxTEqH1vF9r00,5620
39
- glaip_sdk/client/__init__.py,sha256=nYLXfBVTTWwKjP0e63iumPYO4k5FifwWaELQPaPIKIg,188
40
- glaip_sdk/client/_agent_payloads.py,sha256=QjaSqXZvDNX0bQVKC7Eb5nHj7KxhU0zLSfNUQiKf2J8,16269
41
- glaip_sdk/client/agents.py,sha256=hRkt-D2ZRkeWamPqKsqKwl74ZjScKL4UHLbbVezGCWc,37597
42
- glaip_sdk/client/base.py,sha256=ikW33raz2M6rXzo3JmhttfXXuVdMv5zBRKEZkU1F-4I,18176
43
- glaip_sdk/client/main.py,sha256=tELAA36rzthnNKTgwZ6lLPb3Au8Wh1mF8Kz-9N-YtCg,8652
44
- glaip_sdk/client/mcps.py,sha256=GQ1EBTSVc-WrFigyw8iocK34DT3TMW85XtnDeOawP9E,8945
45
- glaip_sdk/client/run_rendering.py,sha256=T6NF3SjTWSV6IpU2TexBq8AFKU1yq98NLsTp1N4B2yk,12209
46
- glaip_sdk/client/tools.py,sha256=xCPqDqtVNePCBeJvbKDqzZI-jbaduIeWd-6XbCSg_2Y,17324
47
- glaip_sdk/client/validators.py,sha256=ioF9VCs-LG2yLkaRDd7Hff74lojDZZ0_Q3CiLbdm1RY,8381
48
- glaip_sdk/config/constants.py,sha256=B9CSlYG8LYjQuo_vNpqy-eSks3ej37FMcvJMy6d_F4U,888
49
- glaip_sdk/exceptions.py,sha256=iAChFClkytXRBLP0vZq1_YjoZxA9i4m4bW1gDLiGR1g,2321
50
- glaip_sdk/icons.py,sha256=J5THz0ReAmDwIiIooh1_G3Le-mwTJyEjhJDdJ13KRxM,524
51
- glaip_sdk/models.py,sha256=3ghS29EjcE6A9iHEiSxbPco5bCHqnVGpVbE2kGliz_o,8751
52
- glaip_sdk/payload_schemas/__init__.py,sha256=fJamlkpS3IfS9xyKAQaUbnalvrtG5Ied69OUVAA3xvs,395
53
- glaip_sdk/payload_schemas/agent.py,sha256=Nap68mI2Ba8eNGOhk79mGrYUoYUahcUJLof3DLWtVO4,3198
54
- glaip_sdk/rich_components.py,sha256=rU3CD55WZlwjY81usctfX-S0bmsQ2Yd4nWEXhueGv7U,2090
55
- glaip_sdk/utils/__init__.py,sha256=HLL4AX31lWo9gJn1dL1S-IPs2q4yPxqeHVCLJfSYyx4,892
56
- glaip_sdk/utils/agent_config.py,sha256=RhcHsSOVwOaSC2ggnPuHn36Aa0keGJhs8KGb2InvzRk,7262
57
- glaip_sdk/utils/client_utils.py,sha256=UdyEtFlpZ3TNFrvx2NsjPNzx8sm5Lkz3S13-9OrFjnE,13894
58
- glaip_sdk/utils/display.py,sha256=_lQ9fHLJnsSgY7nJkYlGLBk47bwNjbqMTr3_GvOyRyM,3983
59
- glaip_sdk/utils/general.py,sha256=RKRNWrwaxqj0F8Akg3it5lzsgfuCxjbfcl0c4donmAk,2264
60
- glaip_sdk/utils/import_export.py,sha256=qeAlTycM2Tv4bV4_dI_X_0cNswCVNtxDMmnKxl9Y1-M,5192
61
- glaip_sdk/utils/rendering/__init__.py,sha256=vXjwk5rPhhfPyD8S0DnV4GFFEtPJp4HCCg1Um9SXfs0,70
62
- glaip_sdk/utils/rendering/formatting.py,sha256=PBT1jD6pxpkiUSs5RQOVWImmKgAwbWuQCUpgu0PNs3Q,8828
63
- glaip_sdk/utils/rendering/models.py,sha256=wB9QtEiwN-AaY8k_YKBBT2qMQSBNMv27VcaZH88DdCM,2823
64
- glaip_sdk/utils/rendering/renderer/__init__.py,sha256=gQEbZhZl9qXEVKDDTy0ijd-RnHWdqcazcJyOmORDwEk,2843
65
- glaip_sdk/utils/rendering/renderer/base.py,sha256=yQbZv5iihsL-Nov9N0Ko80NrIXV60T9kEakL2RoDPNg,82992
66
- glaip_sdk/utils/rendering/renderer/config.py,sha256=ePomLA3iBHkjk5bJftvuMx_qVtT83nbj4YrFSZqGRAs,734
67
- glaip_sdk/utils/rendering/renderer/console.py,sha256=4cLOw4Q1fkHkApuj6dWW8eYpeYdcT0t2SO5MbVt5UTc,1844
68
- glaip_sdk/utils/rendering/renderer/debug.py,sha256=_qPP03RicGhCCCAEEJ2zoSEJaUT2ZvgL4xOF5ikg9Uw,5569
69
- glaip_sdk/utils/rendering/renderer/panels.py,sha256=tbExgFXzK6NHlvuJlVwsejznGJY1ALwTi9KfIej9aWM,3784
70
- glaip_sdk/utils/rendering/renderer/progress.py,sha256=iwAx76q0hdnjDrHMF_MB2AYQ2kAA4pwfIn0FiSAEkyg,4068
71
- glaip_sdk/utils/rendering/renderer/stream.py,sha256=41JF-0rj-Tbp_ze7WVbHxDINf7bQRTu5sFzRjluQIBk,8545
72
- glaip_sdk/utils/rendering/renderer/toggle.py,sha256=N3LB4g1r8EdDkQyItQdrP5gig6Sszz9uZ6WJuD0KUmk,5396
73
- glaip_sdk/utils/rendering/step_tree_state.py,sha256=EItKFTV2FYvm5pSyHbXk7lkzJ-0DW_s-VENIBZe8sp4,4062
74
- glaip_sdk/utils/rendering/steps.py,sha256=J9qEZLnGqxeEWrlsDczvAJS1pbCN19sjD5_OZbMoinA,42275
75
- glaip_sdk/utils/resource_refs.py,sha256=OpwJxTCKq3RIqLAmKE0xspJplD4IhKqLCo0OqPafmAk,5418
76
- glaip_sdk/utils/run_renderer.py,sha256=d_VMI6LbvHPUUeRmGqh5wK_lHqDEIAcym2iqpbtDad0,1365
77
- glaip_sdk/utils/serialization.py,sha256=cvlPQ73y4jhsbJeQ6Bv7vaq0NV8uZ27p2vD_R-nyiRQ,12646
78
- glaip_sdk/utils/validation.py,sha256=NPDexNgGUIoLkEIz6hl3K6EG7ZKSEkcNLDElqm8-Ng4,7019
79
- glaip_sdk-0.1.2.dist-info/METADATA,sha256=VQWPGOU1y8-yuf8bUrODnK24DVrobD9GJ_wJxAfhybk,6023
80
- glaip_sdk-0.1.2.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
81
- glaip_sdk-0.1.2.dist-info/entry_points.txt,sha256=EGs8NO8J1fdFMWA3CsF7sKBEvtHb_fujdCoNPhfMouE,47
82
- glaip_sdk-0.1.2.dist-info/RECORD,,
@@ -1,3 +0,0 @@
1
- [console_scripts]
2
- aip=glaip_sdk.cli.main:main
3
-