glaip-sdk 0.2.2__py3-none-any.whl → 0.4.0__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.
- glaip_sdk/cli/auth.py +2 -1
- glaip_sdk/cli/commands/agents.py +51 -36
- glaip_sdk/cli/commands/configure.py +2 -1
- glaip_sdk/cli/commands/mcps.py +219 -62
- glaip_sdk/cli/commands/models.py +3 -5
- glaip_sdk/cli/commands/tools.py +27 -16
- glaip_sdk/cli/commands/transcripts.py +1 -1
- glaip_sdk/cli/constants.py +3 -0
- glaip_sdk/cli/display.py +1 -1
- glaip_sdk/cli/hints.py +58 -0
- glaip_sdk/cli/io.py +6 -3
- glaip_sdk/cli/main.py +3 -4
- glaip_sdk/cli/slash/agent_session.py +4 -13
- glaip_sdk/cli/slash/prompt.py +3 -0
- glaip_sdk/cli/slash/remote_runs_controller.py +566 -0
- glaip_sdk/cli/slash/session.py +139 -48
- glaip_sdk/cli/slash/tui/__init__.py +9 -0
- glaip_sdk/cli/slash/tui/remote_runs_app.py +632 -0
- glaip_sdk/cli/transcript/capture.py +1 -1
- glaip_sdk/cli/transcript/viewer.py +19 -678
- glaip_sdk/cli/update_notifier.py +2 -1
- glaip_sdk/cli/utils.py +228 -101
- glaip_sdk/cli/validators.py +5 -6
- glaip_sdk/client/__init__.py +2 -1
- glaip_sdk/client/agent_runs.py +147 -0
- glaip_sdk/client/agents.py +40 -22
- glaip_sdk/client/main.py +2 -6
- glaip_sdk/client/mcps.py +13 -5
- glaip_sdk/client/run_rendering.py +90 -111
- glaip_sdk/client/shared.py +21 -0
- glaip_sdk/client/tools.py +2 -3
- glaip_sdk/config/constants.py +11 -0
- glaip_sdk/models/__init__.py +56 -0
- glaip_sdk/models/agent_runs.py +117 -0
- glaip_sdk/models.py +8 -7
- glaip_sdk/rich_components.py +58 -2
- glaip_sdk/utils/client_utils.py +13 -0
- glaip_sdk/utils/display.py +23 -15
- glaip_sdk/utils/export.py +143 -0
- glaip_sdk/utils/import_export.py +6 -9
- glaip_sdk/utils/rendering/__init__.py +115 -1
- glaip_sdk/utils/rendering/formatting.py +5 -30
- glaip_sdk/utils/rendering/layout/__init__.py +64 -0
- glaip_sdk/utils/rendering/{renderer → layout}/panels.py +9 -0
- glaip_sdk/utils/rendering/{renderer → layout}/progress.py +70 -1
- glaip_sdk/utils/rendering/layout/summary.py +74 -0
- glaip_sdk/utils/rendering/layout/transcript.py +606 -0
- glaip_sdk/utils/rendering/models.py +1 -0
- glaip_sdk/utils/rendering/renderer/__init__.py +10 -28
- glaip_sdk/utils/rendering/renderer/base.py +217 -1476
- glaip_sdk/utils/rendering/renderer/debug.py +24 -1
- glaip_sdk/utils/rendering/renderer/factory.py +138 -0
- glaip_sdk/utils/rendering/renderer/stream.py +4 -12
- glaip_sdk/utils/rendering/renderer/thinking.py +273 -0
- glaip_sdk/utils/rendering/renderer/tool_panels.py +442 -0
- glaip_sdk/utils/rendering/renderer/transcript_mode.py +162 -0
- glaip_sdk/utils/rendering/state.py +204 -0
- glaip_sdk/utils/rendering/steps/__init__.py +34 -0
- glaip_sdk/utils/rendering/{steps.py → steps/event_processor.py} +53 -439
- glaip_sdk/utils/rendering/steps/format.py +176 -0
- glaip_sdk/utils/rendering/steps/manager.py +387 -0
- glaip_sdk/utils/rendering/timing.py +36 -0
- glaip_sdk/utils/rendering/viewer/__init__.py +21 -0
- glaip_sdk/utils/rendering/viewer/presenter.py +184 -0
- glaip_sdk/utils/resource_refs.py +26 -15
- glaip_sdk/utils/validation.py +13 -21
- {glaip_sdk-0.2.2.dist-info → glaip_sdk-0.4.0.dist-info}/METADATA +24 -2
- glaip_sdk-0.4.0.dist-info/RECORD +110 -0
- glaip_sdk-0.2.2.dist-info/RECORD +0 -87
- {glaip_sdk-0.2.2.dist-info → glaip_sdk-0.4.0.dist-info}/WHEEL +0 -0
- {glaip_sdk-0.2.2.dist-info → glaip_sdk-0.4.0.dist-info}/entry_points.txt +0 -0
|
@@ -0,0 +1,184 @@
|
|
|
1
|
+
"""Shared presenter utilities for CLI/offline transcript viewing.
|
|
2
|
+
|
|
3
|
+
Authors:
|
|
4
|
+
Raymond Christopher (raymond.christopher@gdplabs.id)
|
|
5
|
+
"""
|
|
6
|
+
|
|
7
|
+
from __future__ import annotations
|
|
8
|
+
|
|
9
|
+
from dataclasses import dataclass
|
|
10
|
+
from typing import Any
|
|
11
|
+
|
|
12
|
+
from rich.console import Console
|
|
13
|
+
|
|
14
|
+
from glaip_sdk.utils.rendering.layout.transcript import (
|
|
15
|
+
DEFAULT_TRANSCRIPT_THEME,
|
|
16
|
+
TranscriptGlyphs,
|
|
17
|
+
TranscriptSnapshot,
|
|
18
|
+
build_transcript_snapshot,
|
|
19
|
+
build_transcript_view,
|
|
20
|
+
)
|
|
21
|
+
from glaip_sdk.utils.rendering.renderer.debug import render_debug_event_stream
|
|
22
|
+
from glaip_sdk.utils.rendering.state import RendererState, coerce_received_at
|
|
23
|
+
from glaip_sdk.utils.rendering.steps import StepManager
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
@dataclass(slots=True)
|
|
27
|
+
class ViewerContext:
|
|
28
|
+
"""Runtime context passed to transcript presenters."""
|
|
29
|
+
|
|
30
|
+
manifest_entry: dict[str, Any]
|
|
31
|
+
events: list[dict[str, Any]]
|
|
32
|
+
default_output: str
|
|
33
|
+
final_output: str
|
|
34
|
+
stream_started_at: float | None
|
|
35
|
+
meta: dict[str, Any]
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
def render_post_run_view(
|
|
39
|
+
console: Console,
|
|
40
|
+
ctx: ViewerContext,
|
|
41
|
+
*,
|
|
42
|
+
glyphs: TranscriptGlyphs | None = None,
|
|
43
|
+
theme: str = DEFAULT_TRANSCRIPT_THEME,
|
|
44
|
+
) -> TranscriptSnapshot:
|
|
45
|
+
"""Render the default summary view and return the snapshot used."""
|
|
46
|
+
snapshot, _state = prepare_viewer_snapshot(
|
|
47
|
+
ctx,
|
|
48
|
+
glyphs=glyphs,
|
|
49
|
+
theme=theme,
|
|
50
|
+
)
|
|
51
|
+
render_transcript_view(console, snapshot, theme=theme)
|
|
52
|
+
return snapshot
|
|
53
|
+
|
|
54
|
+
|
|
55
|
+
def render_transcript_view(
|
|
56
|
+
console: Console,
|
|
57
|
+
snapshot: TranscriptSnapshot,
|
|
58
|
+
*,
|
|
59
|
+
theme: str = DEFAULT_TRANSCRIPT_THEME,
|
|
60
|
+
) -> None:
|
|
61
|
+
"""Render the transcript summary using a prepared snapshot."""
|
|
62
|
+
header, body = build_transcript_view(snapshot, theme=theme)
|
|
63
|
+
_print_renderables(console, header + body)
|
|
64
|
+
|
|
65
|
+
|
|
66
|
+
def render_transcript_events(console: Console, events: list[dict[str, Any]]) -> None:
|
|
67
|
+
"""Pretty-print transcript events using shared debug presenter."""
|
|
68
|
+
if not events:
|
|
69
|
+
console.print("[dim]No SSE events were captured for this run.[/dim]")
|
|
70
|
+
console.print()
|
|
71
|
+
return
|
|
72
|
+
|
|
73
|
+
console.print("[bold]Transcript Events[/bold]")
|
|
74
|
+
console.print("[dim]────────────────────────────────────────────────────────[/dim]")
|
|
75
|
+
|
|
76
|
+
render_debug_event_stream(
|
|
77
|
+
events,
|
|
78
|
+
console,
|
|
79
|
+
resolve_timestamp=lambda event: coerce_received_at(event.get("received_at")),
|
|
80
|
+
)
|
|
81
|
+
console.print()
|
|
82
|
+
|
|
83
|
+
|
|
84
|
+
def prepare_viewer_snapshot(
|
|
85
|
+
ctx: ViewerContext,
|
|
86
|
+
*,
|
|
87
|
+
glyphs: TranscriptGlyphs | None,
|
|
88
|
+
theme: str,
|
|
89
|
+
) -> tuple[TranscriptSnapshot, RendererState]:
|
|
90
|
+
"""Build a transcript snapshot plus renderer state for reusable viewing."""
|
|
91
|
+
state = _build_renderer_state(ctx)
|
|
92
|
+
manager = _build_steps_from_events(ctx.events)
|
|
93
|
+
query = _extract_query_from_manifest(ctx)
|
|
94
|
+
merged_meta = _merge_meta(ctx)
|
|
95
|
+
snapshot = build_transcript_snapshot(
|
|
96
|
+
state,
|
|
97
|
+
manager,
|
|
98
|
+
glyphs=glyphs,
|
|
99
|
+
query_text=query,
|
|
100
|
+
meta=merged_meta,
|
|
101
|
+
theme=theme,
|
|
102
|
+
)
|
|
103
|
+
return snapshot, state
|
|
104
|
+
|
|
105
|
+
|
|
106
|
+
def _build_renderer_state(ctx: ViewerContext) -> RendererState:
|
|
107
|
+
state = RendererState()
|
|
108
|
+
state.meta = dict(ctx.meta or {})
|
|
109
|
+
|
|
110
|
+
final_text = (ctx.final_output or "").strip()
|
|
111
|
+
default_text = (ctx.default_output or "").strip()
|
|
112
|
+
if final_text:
|
|
113
|
+
state.final_text = final_text
|
|
114
|
+
elif default_text:
|
|
115
|
+
state.final_text = default_text
|
|
116
|
+
state.buffer.append(default_text)
|
|
117
|
+
|
|
118
|
+
duration = _extract_final_duration(ctx.events)
|
|
119
|
+
if duration:
|
|
120
|
+
state.final_duration_text = duration # pragma: no cover - exercised indirectly via end-to-end tests
|
|
121
|
+
state.events = list(ctx.events or [])
|
|
122
|
+
return state
|
|
123
|
+
|
|
124
|
+
|
|
125
|
+
def _build_steps_from_events(events: list[dict[str, Any]]) -> StepManager:
|
|
126
|
+
manager = StepManager()
|
|
127
|
+
for event in events or []:
|
|
128
|
+
payload = _coerce_step_event(event)
|
|
129
|
+
if not payload:
|
|
130
|
+
continue
|
|
131
|
+
try:
|
|
132
|
+
manager.apply_event(payload)
|
|
133
|
+
except ValueError:
|
|
134
|
+
continue
|
|
135
|
+
return manager
|
|
136
|
+
|
|
137
|
+
|
|
138
|
+
def _coerce_step_event(event: dict[str, Any]) -> dict[str, Any] | None:
|
|
139
|
+
metadata = event.get("metadata")
|
|
140
|
+
if not isinstance(metadata, dict):
|
|
141
|
+
return None
|
|
142
|
+
if not isinstance(metadata.get("step_id"), str):
|
|
143
|
+
return None
|
|
144
|
+
return {
|
|
145
|
+
"metadata": metadata,
|
|
146
|
+
"status": event.get("status"),
|
|
147
|
+
"task_state": event.get("task_state"),
|
|
148
|
+
"content": event.get("content"),
|
|
149
|
+
"task_id": event.get("task_id"),
|
|
150
|
+
"context_id": event.get("context_id"),
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
|
|
154
|
+
def _extract_final_duration(events: list[dict[str, Any]]) -> str | None:
|
|
155
|
+
for event in events or []:
|
|
156
|
+
metadata = event.get("metadata") or {}
|
|
157
|
+
if metadata.get("kind") != "final_response":
|
|
158
|
+
continue
|
|
159
|
+
time_value = metadata.get("time")
|
|
160
|
+
if isinstance(time_value, (int, float)):
|
|
161
|
+
return f"{float(time_value):.2f}s"
|
|
162
|
+
return None
|
|
163
|
+
|
|
164
|
+
|
|
165
|
+
def _extract_query_from_manifest(ctx: ViewerContext) -> str | None:
|
|
166
|
+
query = ctx.manifest_entry.get("input_message") or ctx.meta.get("input_message") or ctx.meta.get("query")
|
|
167
|
+
if isinstance(query, str) and query.strip():
|
|
168
|
+
return query.strip()
|
|
169
|
+
return None
|
|
170
|
+
|
|
171
|
+
|
|
172
|
+
def _merge_meta(ctx: ViewerContext) -> dict[str, Any]:
|
|
173
|
+
merged = dict(ctx.meta or {})
|
|
174
|
+
manifest = ctx.manifest_entry or {}
|
|
175
|
+
for key in ("agent_name", "agent_id", "model", "run_id", "input_message"):
|
|
176
|
+
if key in manifest and manifest[key] and key not in merged:
|
|
177
|
+
merged[key] = manifest[key]
|
|
178
|
+
return merged
|
|
179
|
+
|
|
180
|
+
|
|
181
|
+
def _print_renderables(console: Console, renderables: list[Any]) -> None:
|
|
182
|
+
for renderable in renderables:
|
|
183
|
+
console.print(renderable)
|
|
184
|
+
console.print()
|
glaip_sdk/utils/resource_refs.py
CHANGED
|
@@ -8,7 +8,6 @@ Authors:
|
|
|
8
8
|
Raymond Christopher (raymond.christopher@gdplabs.id)
|
|
9
9
|
"""
|
|
10
10
|
|
|
11
|
-
# pylint: disable=duplicate-code
|
|
12
11
|
import re
|
|
13
12
|
from typing import Any
|
|
14
13
|
from uuid import UUID
|
|
@@ -30,7 +29,29 @@ def is_uuid(value: str) -> bool:
|
|
|
30
29
|
return False
|
|
31
30
|
|
|
32
31
|
|
|
33
|
-
def
|
|
32
|
+
def _extract_id_from_item(item: Any, *, skip_missing: bool = False) -> str | None:
|
|
33
|
+
"""Extract ID from a single item.
|
|
34
|
+
|
|
35
|
+
Args:
|
|
36
|
+
item: Item that may be a string, object with .id, or dict with "id" key.
|
|
37
|
+
skip_missing: If True, return None for items without IDs. If False, convert to string.
|
|
38
|
+
|
|
39
|
+
Returns:
|
|
40
|
+
Extracted ID as string, or None if skip_missing=True and no ID found.
|
|
41
|
+
"""
|
|
42
|
+
if isinstance(item, str):
|
|
43
|
+
return item
|
|
44
|
+
if hasattr(item, "id"):
|
|
45
|
+
return str(item.id)
|
|
46
|
+
if isinstance(item, dict) and "id" in item:
|
|
47
|
+
return str(item["id"])
|
|
48
|
+
if skip_missing:
|
|
49
|
+
return None
|
|
50
|
+
# Fallback: convert to string
|
|
51
|
+
return str(item)
|
|
52
|
+
|
|
53
|
+
|
|
54
|
+
def extract_ids(items: list[str | Any] | None) -> list[str]:
|
|
34
55
|
"""Extract IDs from a list of objects or strings.
|
|
35
56
|
|
|
36
57
|
This function unifies the behavior between CLI and SDK layers, always
|
|
@@ -50,19 +71,9 @@ def extract_ids(items: list[str | Any] | None) -> list[str]: # pylint: disable=
|
|
|
50
71
|
if not items:
|
|
51
72
|
return []
|
|
52
73
|
|
|
53
|
-
|
|
54
|
-
for item in items
|
|
55
|
-
|
|
56
|
-
ids.append(item)
|
|
57
|
-
elif hasattr(item, "id"):
|
|
58
|
-
ids.append(str(item.id))
|
|
59
|
-
elif isinstance(item, dict) and "id" in item:
|
|
60
|
-
ids.append(str(item["id"]))
|
|
61
|
-
else:
|
|
62
|
-
# Fallback: convert to string
|
|
63
|
-
ids.append(str(item))
|
|
64
|
-
|
|
65
|
-
return ids
|
|
74
|
+
# Extract IDs from all items, converting non-ID items to strings
|
|
75
|
+
extracted_ids = [_extract_id_from_item(item, skip_missing=False) for item in items]
|
|
76
|
+
return [id_val for id_val in extracted_ids if id_val is not None]
|
|
66
77
|
|
|
67
78
|
|
|
68
79
|
def extract_names(items: list[str | Any] | None) -> list[str]:
|
glaip_sdk/utils/validation.py
CHANGED
|
@@ -18,6 +18,16 @@ from glaip_sdk.utils.resource_refs import validate_name_format
|
|
|
18
18
|
RESERVED_NAMES = ["admin", "root", "system", "api", "test", "demo"]
|
|
19
19
|
|
|
20
20
|
|
|
21
|
+
def _validate_named_resource(name: str, resource_type: str) -> str:
|
|
22
|
+
"""Shared validator that prevents reserved-name duplication."""
|
|
23
|
+
cleaned_name = validate_name_format(name, resource_type)
|
|
24
|
+
|
|
25
|
+
if cleaned_name.lower() in RESERVED_NAMES:
|
|
26
|
+
raise ValueError(f"{resource_type.capitalize()} name '{cleaned_name}' is reserved and cannot be used")
|
|
27
|
+
|
|
28
|
+
return cleaned_name
|
|
29
|
+
|
|
30
|
+
|
|
21
31
|
def validate_agent_name(name: str) -> str:
|
|
22
32
|
"""Validate agent name and return cleaned version.
|
|
23
33
|
|
|
@@ -30,13 +40,7 @@ def validate_agent_name(name: str) -> str:
|
|
|
30
40
|
Raises:
|
|
31
41
|
ValueError: If name is invalid
|
|
32
42
|
"""
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
# Check for reserved names
|
|
36
|
-
if cleaned_name.lower() in RESERVED_NAMES:
|
|
37
|
-
raise ValueError(f"'{cleaned_name}' is a reserved name and cannot be used")
|
|
38
|
-
|
|
39
|
-
return cleaned_name
|
|
43
|
+
return _validate_named_resource(name, "agent")
|
|
40
44
|
|
|
41
45
|
|
|
42
46
|
def validate_agent_instruction(instruction: str) -> str:
|
|
@@ -74,13 +78,7 @@ def validate_tool_name(name: str) -> str:
|
|
|
74
78
|
Raises:
|
|
75
79
|
ValueError: If name is invalid
|
|
76
80
|
"""
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
# Check for reserved names
|
|
80
|
-
if cleaned_name.lower() in RESERVED_NAMES:
|
|
81
|
-
raise ValueError(f"'{cleaned_name}' is a reserved name and cannot be used")
|
|
82
|
-
|
|
83
|
-
return cleaned_name
|
|
81
|
+
return _validate_named_resource(name, "tool")
|
|
84
82
|
|
|
85
83
|
|
|
86
84
|
def validate_mcp_name(name: str) -> str:
|
|
@@ -95,13 +93,7 @@ def validate_mcp_name(name: str) -> str:
|
|
|
95
93
|
Raises:
|
|
96
94
|
ValueError: If name is invalid
|
|
97
95
|
"""
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
# Check for reserved names
|
|
101
|
-
if cleaned_name.lower() in RESERVED_NAMES:
|
|
102
|
-
raise ValueError(f"'{cleaned_name}' is a reserved name and cannot be used")
|
|
103
|
-
|
|
104
|
-
return cleaned_name
|
|
96
|
+
return _validate_named_resource(name, "mcp")
|
|
105
97
|
|
|
106
98
|
|
|
107
99
|
def validate_timeout(timeout: int) -> int:
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: glaip-sdk
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.4.0
|
|
4
4
|
Summary: Python SDK for GL AIP (GDP Labs AI Agent Package) - Simplified CLI Design
|
|
5
5
|
License: MIT
|
|
6
6
|
Author: Raymond Christopher
|
|
7
7
|
Author-email: raymond.christopher@gdplabs.id
|
|
8
|
-
Requires-Python: >=3.10
|
|
8
|
+
Requires-Python: >=3.10,<4.0
|
|
9
9
|
Classifier: License :: OSI Approved :: MIT License
|
|
10
10
|
Classifier: Programming Language :: Python :: 3
|
|
11
11
|
Classifier: Programming Language :: Python :: 3.10
|
|
@@ -20,6 +20,7 @@ Requires-Dist: pyyaml (>=6.0.0)
|
|
|
20
20
|
Requires-Dist: questionary (>=2.1.0,<3.0.0)
|
|
21
21
|
Requires-Dist: readchar (>=4.2.1,<5.0.0)
|
|
22
22
|
Requires-Dist: rich (>=13.0.0)
|
|
23
|
+
Requires-Dist: textual (>=0.52.0)
|
|
23
24
|
Description-Content-Type: text/markdown
|
|
24
25
|
|
|
25
26
|
# GL AIP — GDP Labs AI Agents Package
|
|
@@ -193,3 +194,24 @@ Quick links:
|
|
|
193
194
|
- **[MCP Integration](https://gdplabs.gitbook.io/gl-aip/gl-aip-sdk/guides/mcps-guide)**: Connect external services
|
|
194
195
|
- **[API Reference](https://gdplabs.gitbook.io/gl-aip/gl-aip-sdk/reference/python-sdk-reference)**: Complete SDK reference
|
|
195
196
|
|
|
197
|
+
## 🧪 Simulate the Update Notifier
|
|
198
|
+
|
|
199
|
+
Need to verify the in-session upgrade flow without hitting PyPI or actually running `pip install`? Use the bundled helper:
|
|
200
|
+
|
|
201
|
+
```bash
|
|
202
|
+
cd python/glaip-sdk
|
|
203
|
+
poetry run python scripts/mock_update_notifier.py
|
|
204
|
+
# or customize the mock payload:
|
|
205
|
+
# poetry run python scripts/mock_update_notifier.py --version 3.3.3 --marker "[nightly build]"
|
|
206
|
+
```
|
|
207
|
+
|
|
208
|
+
The script:
|
|
209
|
+
|
|
210
|
+
- Launches a SlashSession with prompt-toolkit disabled (so it runs cleanly in tests/CI).
|
|
211
|
+
- Forces the notifier to believe a newer version exists (`--version 9.9.9` by default).
|
|
212
|
+
- Appends a visible marker (default `[mock update]`) to the banner so you can prove the branding reload happened; pass `--marker ""` to skip.
|
|
213
|
+
- Auto-selects “Update now”, mocks the install step, and runs the real branding refresh logic.
|
|
214
|
+
- Resets module metadata afterwards so your environment remains untouched.
|
|
215
|
+
|
|
216
|
+
You should see the Rich banner re-render with the mocked version (and optional marker) at the end of the run.
|
|
217
|
+
|
|
@@ -0,0 +1,110 @@
|
|
|
1
|
+
glaip_sdk/__init__.py,sha256=7ICOkPeiwQGkadqxIgJXOYPHcJOHYRIF_GU0xkjOtSE,366
|
|
2
|
+
glaip_sdk/_version.py,sha256=5CHGCxx_36fgmMWuEx6jJ2CzzM-i9eBFyQWFwBi23XE,2259
|
|
3
|
+
glaip_sdk/branding.py,sha256=tLqYCIHMkUf8p2smpuAGNptwaKUN38G4mlh0A0DOl_w,7823
|
|
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=wvzJJXKzOeRaGfuWSv7_VJMba-vbvID0Q5jRYpALOBg,15891
|
|
7
|
+
glaip_sdk/cli/commands/__init__.py,sha256=6Z3ASXDut0lAbUX_umBFtxPzzFyqoiZfVeTahThFu1A,219
|
|
8
|
+
glaip_sdk/cli/commands/agents.py,sha256=RTfL-Hj-ORbbsJoRZMJD_MM-zO6P765GPZzZvGxUpYE,47686
|
|
9
|
+
glaip_sdk/cli/commands/configure.py,sha256=urq9Wdnd2JbHSY2KJMCy0-4rBMhQLYsdlWL_YMVgVu8,11420
|
|
10
|
+
glaip_sdk/cli/commands/mcps.py,sha256=tttqQnfM89iI9Pm94u8YRhiHMQNYNouecFX0brsT4cQ,42551
|
|
11
|
+
glaip_sdk/cli/commands/models.py,sha256=vfcGprK5CHprQ0CNpNzQlNNTELvdgKC7JxTG_ijOwmE,2009
|
|
12
|
+
glaip_sdk/cli/commands/tools.py,sha256=7_RMTuTI1Guu7psClovbyt2umfk4rkp7jSW19GXKA44,18440
|
|
13
|
+
glaip_sdk/cli/commands/transcripts.py,sha256=4kI6FoaL9K5ch10tKr7vdT10UPdFi5f5ANZhCDytyss,26377
|
|
14
|
+
glaip_sdk/cli/commands/update.py,sha256=rIZo_x-tvpvcwpQLpwYwso1ix6qTHuNNTL4egmn5fEM,1812
|
|
15
|
+
glaip_sdk/cli/config.py,sha256=2NZxFyt8jc6CMRUbuxx7sq_wsfTJXmwQGn09hhYHGnE,1341
|
|
16
|
+
glaip_sdk/cli/constants.py,sha256=zqcVtzfj6huW97gbCmhkFqntge1H-c1vnkGqTazADgU,895
|
|
17
|
+
glaip_sdk/cli/context.py,sha256=--Y5vc6lgoAV7cRoUAr9UxSQaLmkMg29FolA7EwoRqM,3803
|
|
18
|
+
glaip_sdk/cli/display.py,sha256=845_VGCFeQJfvwyLtAIj4E6Rs-alFNmTQXOOWpF-F5U,12137
|
|
19
|
+
glaip_sdk/cli/hints.py,sha256=ZnBvQFgODCmKwRPNIjFswi7XAFsKOyVgFBroxI4jvq4,1597
|
|
20
|
+
glaip_sdk/cli/io.py,sha256=ChP6CRKbtuENsNomNEaMDfPDU0iqO-WuVvl4_y7F2io,3871
|
|
21
|
+
glaip_sdk/cli/main.py,sha256=lPX7IoUuQshAXQQPtdOl563H6VhLWvxCwW9tsFLoJqM,16967
|
|
22
|
+
glaip_sdk/cli/masking.py,sha256=QRtUeHBVCJG02EXLxnPzfhRmD-leMxWf6QKxh4TCax0,3666
|
|
23
|
+
glaip_sdk/cli/mcp_validators.py,sha256=cwbz7p_p7_9xVuuF96OBQOdmEgo5UObU6iWWQ2X03PI,10047
|
|
24
|
+
glaip_sdk/cli/pager.py,sha256=XygkAB6UW3bte7I4KmK7-PUGCJiq2Pv-4-MfyXAmXCw,7925
|
|
25
|
+
glaip_sdk/cli/parsers/__init__.py,sha256=NzLrSH6GOdNoewXtKNpB6GwrauA8rb_IGYV6cz5Hn3o,113
|
|
26
|
+
glaip_sdk/cli/parsers/json_input.py,sha256=kxoxeIlgfsaH2jhe6apZAgSxAtwlpSINLTMRsZZYboQ,5630
|
|
27
|
+
glaip_sdk/cli/resolution.py,sha256=K-VaEHm9SYY_qfb9538VNHykL4_2N6F8iQqI1zMx_64,2402
|
|
28
|
+
glaip_sdk/cli/rich_helpers.py,sha256=kO47N8e506rxrN6Oc9mbAWN3Qb536oQPWZy1s9A616g,819
|
|
29
|
+
glaip_sdk/cli/slash/__init__.py,sha256=J9TPL2UcNTkW8eifG6nRmAEGHhyEgdYMYk4cHaaObC0,386
|
|
30
|
+
glaip_sdk/cli/slash/agent_session.py,sha256=F11RYVBGs86Ox2zW7czXSBjojPx9jMAdgAiSxWdZl6k,11304
|
|
31
|
+
glaip_sdk/cli/slash/prompt.py,sha256=2urqR3QqN3O09lHmKKSEbhsIdlS4B7hm9O8AP_VwCSU,8034
|
|
32
|
+
glaip_sdk/cli/slash/remote_runs_controller.py,sha256=1kdnrH6HNlblqpRtTJVlWzWUeFPlmd6Ef_IDkqZ01CI,21354
|
|
33
|
+
glaip_sdk/cli/slash/session.py,sha256=GB6rMHw5-5zl61XI1ShjtIKe6MOi3zc8biXJxPaw9do,57448
|
|
34
|
+
glaip_sdk/cli/slash/tui/__init__.py,sha256=ljBAeAFY2qNDkbJrZh5NgXxjwUlsv9-UxgKNIv0AF1Q,274
|
|
35
|
+
glaip_sdk/cli/slash/tui/remote_runs_app.py,sha256=MRAY8AeUML8dUaC9eHyDK1gwEa6H12bI1XgcO8w21MI,24763
|
|
36
|
+
glaip_sdk/cli/transcript/__init__.py,sha256=yiYHyNtebMCu3BXu56Xm5RBC2tDc865q8UGPnoe6QRs,920
|
|
37
|
+
glaip_sdk/cli/transcript/cache.py,sha256=Wi1uln6HP1U6F-MRTrfnxi9bn6XJTxwWXhREIRPoMqQ,17439
|
|
38
|
+
glaip_sdk/cli/transcript/capture.py,sha256=5Zmg0HXPs01-M8v37pNl_JmdMR6WGk7NxIvXVq-bFaI,10343
|
|
39
|
+
glaip_sdk/cli/transcript/export.py,sha256=reCvrZVzli8_LzYe5ZNdaa-MwZ1ov2RjnDzKZWr_6-E,1117
|
|
40
|
+
glaip_sdk/cli/transcript/history.py,sha256=2FBjawxP8CX9gRPMUMP8bDjG50BGM2j2zk6IfHvAMH4,26211
|
|
41
|
+
glaip_sdk/cli/transcript/launcher.py,sha256=z5ivkPXDQJpATIqtRLUK8jH3p3WIZ72PvOPqYRDMJvw,2327
|
|
42
|
+
glaip_sdk/cli/transcript/viewer.py,sha256=ar1SzRkhKIf3_DgFz1EG1RZGDmd2w2wogAe038DLL_M,13037
|
|
43
|
+
glaip_sdk/cli/update_notifier.py,sha256=qv-GfwTYZdrhlSbC_71I1AvKY9cV4QVBmtees16S2Xg,9807
|
|
44
|
+
glaip_sdk/cli/utils.py,sha256=rrkASWWpJMKrPPgV8UjrZdE3tsyH2rrCDQsyE0KBu6Y,53342
|
|
45
|
+
glaip_sdk/cli/validators.py,sha256=d-kq4y7HWMo6Gc7wLXWUsCt8JwFvJX_roZqRm1Nko1I,5622
|
|
46
|
+
glaip_sdk/client/__init__.py,sha256=F-eE_dRSzA0cc1it06oi0tZetZBHmSUjWSHGhJMLCls,263
|
|
47
|
+
glaip_sdk/client/_agent_payloads.py,sha256=VfBHoijuoqUOixGBf2SA2vlQIXQmBsjB3sXHZhXYiec,17681
|
|
48
|
+
glaip_sdk/client/agent_runs.py,sha256=tZSFEZZ3Yx0uYRgnwkLe-X0TlmgKJQ-ivzb6SrVnxY8,4862
|
|
49
|
+
glaip_sdk/client/agents.py,sha256=tKIjkU9-lMEehf1lJe8Bl35nNQntIiyvq02b4fsVN5c,43332
|
|
50
|
+
glaip_sdk/client/base.py,sha256=ikW33raz2M6rXzo3JmhttfXXuVdMv5zBRKEZkU1F-4I,18176
|
|
51
|
+
glaip_sdk/client/main.py,sha256=-grOD3mMNbjOPbx2s1ZIF0z0KpEaCaNuXLHX9dqcZgQ,8711
|
|
52
|
+
glaip_sdk/client/mcps.py,sha256=410HY1aC8hzaCDnEGnhrhKs8vC2xQ50PHvUy1PuuIIc,9364
|
|
53
|
+
glaip_sdk/client/run_rendering.py,sha256=ubBO-NzyZoYRELNwxVvrQFRGQVJCuLfqqJNiXrBZDoQ,14223
|
|
54
|
+
glaip_sdk/client/shared.py,sha256=esHlsR0LEfL-pFDaWebQjKKOLl09jsRY-2pllBUn4nU,522
|
|
55
|
+
glaip_sdk/client/tools.py,sha256=LP7ZRMMlaolBpsu6M14KUifiCM2MWrQoWwX_DYgNxhE,17293
|
|
56
|
+
glaip_sdk/client/validators.py,sha256=ioF9VCs-LG2yLkaRDd7Hff74lojDZZ0_Q3CiLbdm1RY,8381
|
|
57
|
+
glaip_sdk/config/constants.py,sha256=Y03c6op0e7K0jTQ8bmWXhWAqsnjWxkAhWniq8Z0iEKY,1081
|
|
58
|
+
glaip_sdk/exceptions.py,sha256=iAChFClkytXRBLP0vZq1_YjoZxA9i4m4bW1gDLiGR1g,2321
|
|
59
|
+
glaip_sdk/icons.py,sha256=J5THz0ReAmDwIiIooh1_G3Le-mwTJyEjhJDdJ13KRxM,524
|
|
60
|
+
glaip_sdk/models/__init__.py,sha256=DtFft8zH3eJjeedm6jov1z54wTLTcb6dyOKRwM9ZGbk,1756
|
|
61
|
+
glaip_sdk/models/agent_runs.py,sha256=oGUxS4UOq8C2QE4ilp0IQZ7ur1m0DPh6ybzTAOg2tcc,3808
|
|
62
|
+
glaip_sdk/models.py,sha256=OyaGkh1OoWJeVAbIjnkPC8XhtuxJ7aylDvwsKC8LPqs,8504
|
|
63
|
+
glaip_sdk/payload_schemas/__init__.py,sha256=nTJmzwn2BbEpzZdq-8U24eVHQHxqYO3_-SABMV9lS_Q,142
|
|
64
|
+
glaip_sdk/payload_schemas/agent.py,sha256=Nap68mI2Ba8eNGOhk79mGrYUoYUahcUJLof3DLWtVO4,3198
|
|
65
|
+
glaip_sdk/rich_components.py,sha256=44Z0V1ZQleVh9gUDGwRR5mriiYFnVGOhm7fFxZYbP8c,4052
|
|
66
|
+
glaip_sdk/utils/__init__.py,sha256=Fy11SCrasMRNnP-qbZ-Rr9JMhxgHHcSGG2v7jd7PP20,1087
|
|
67
|
+
glaip_sdk/utils/agent_config.py,sha256=RhcHsSOVwOaSC2ggnPuHn36Aa0keGJhs8KGb2InvzRk,7262
|
|
68
|
+
glaip_sdk/utils/client_utils.py,sha256=huMq2FWS4YnTTjWT23gaZABVdqRGRFLpcyhnQR8bs2c,14328
|
|
69
|
+
glaip_sdk/utils/datetime_helpers.py,sha256=QLknNLEAY56628-MTRKnCXAffATkF33erOqBubKmU98,1544
|
|
70
|
+
glaip_sdk/utils/display.py,sha256=zu3SYqxj9hPyEN8G1vIXv_yXBkV8jLLCXEg2rs8NlzM,4485
|
|
71
|
+
glaip_sdk/utils/export.py,sha256=1NxxE3wGsA1auzecG5oJw5ELB4VmPljoeIkGhrGOh1I,5006
|
|
72
|
+
glaip_sdk/utils/general.py,sha256=3HSVIopUsIymPaim-kP2lqLX75TkkdIVLe6g3UKabZ0,1507
|
|
73
|
+
glaip_sdk/utils/import_export.py,sha256=RCvoydm_6_L7_J1igcE6IYDunqgS5mQUbWT4VGrytMw,5510
|
|
74
|
+
glaip_sdk/utils/rendering/__init__.py,sha256=cJhhBEf46RnmUGJ1fivGkFuCoOn2pkJkSuRWoo1xlhE,3608
|
|
75
|
+
glaip_sdk/utils/rendering/formatting.py,sha256=tP-CKkKFDhiAHS1vpJQ3D6NmPVl0TX1ZOwBOoxia2eE,8009
|
|
76
|
+
glaip_sdk/utils/rendering/layout/__init__.py,sha256=Lz8eLXDO28wyK36BhKJ6o9YmsRjmQZrNhvZ2wwSjvPw,1609
|
|
77
|
+
glaip_sdk/utils/rendering/layout/panels.py,sha256=c7EhMznVxIiclrFERJuc3qem21t7sQI6BDcmujtdSAk,3905
|
|
78
|
+
glaip_sdk/utils/rendering/layout/progress.py,sha256=GhOhUPNQd8-e6JxTJsV76s6wIYhtTw2G1C3BY9yhtRk,6418
|
|
79
|
+
glaip_sdk/utils/rendering/layout/summary.py,sha256=K-gkDxwUxF67-4nF20y6hv95QEwRZCQI9Eb4KbA8eQY,2325
|
|
80
|
+
glaip_sdk/utils/rendering/layout/transcript.py,sha256=vbfywtbWCDzLY9B5Vvf4crhomftFq-UEz7zqySiLrD8,19052
|
|
81
|
+
glaip_sdk/utils/rendering/models.py,sha256=LtBgF0CyFnVW_oLAR8O62P-h8auCJwlgZaMUhmE8V-0,2882
|
|
82
|
+
glaip_sdk/utils/rendering/renderer/__init__.py,sha256=lpf0GnNGcPb8gq_hJM6Puflwy3eTigVK9qXP01nWRv0,1754
|
|
83
|
+
glaip_sdk/utils/rendering/renderer/base.py,sha256=YwUz0gS4C55BWEDmwD-gp35Tp_QCryxhld2gV--y8lE,38968
|
|
84
|
+
glaip_sdk/utils/rendering/renderer/config.py,sha256=FgSAZpG1g7Atm2MXg0tY0lOEciY90MR-RO6YuGFhp0E,626
|
|
85
|
+
glaip_sdk/utils/rendering/renderer/console.py,sha256=4cLOw4Q1fkHkApuj6dWW8eYpeYdcT0t2SO5MbVt5UTc,1844
|
|
86
|
+
glaip_sdk/utils/rendering/renderer/debug.py,sha256=qyqFXltYzKEqajwlu8QFSBU3P46JzMzIZqurejhx14o,5907
|
|
87
|
+
glaip_sdk/utils/rendering/renderer/factory.py,sha256=3p1Uga_UEN-wwTNerNaDB3qf3-yu1a9DfH4weXxeRdA,4711
|
|
88
|
+
glaip_sdk/utils/rendering/renderer/stream.py,sha256=htqm8pujXGKJncO86d-dfHixv9btACBgwPbO_brUQio,7812
|
|
89
|
+
glaip_sdk/utils/rendering/renderer/summary_window.py,sha256=ffBsVHaUyy2RfIuXLjhfiO31HeeprVcPP_pe4cjDLsU,2286
|
|
90
|
+
glaip_sdk/utils/rendering/renderer/thinking.py,sha256=09dYbtzpOrG5SlhuqpW9uqPCpiijPQuIntsNboMDDJ8,9399
|
|
91
|
+
glaip_sdk/utils/rendering/renderer/toggle.py,sha256=N3LB4g1r8EdDkQyItQdrP5gig6Sszz9uZ6WJuD0KUmk,5396
|
|
92
|
+
glaip_sdk/utils/rendering/renderer/tool_panels.py,sha256=ev7gZsakUMxfG4JoS_bBDey_MwMDyOLwVhTO536v608,17246
|
|
93
|
+
glaip_sdk/utils/rendering/renderer/transcript_mode.py,sha256=FBZVQYrXF5YH79g3gYizE6P_yL5k9ZSGViCmZhv6C4g,6013
|
|
94
|
+
glaip_sdk/utils/rendering/state.py,sha256=54ViIHCGoBHQE4yMOrB2ToK3FZuv7SsD0Qcyq3CEKe4,6540
|
|
95
|
+
glaip_sdk/utils/rendering/step_tree_state.py,sha256=EItKFTV2FYvm5pSyHbXk7lkzJ-0DW_s-VENIBZe8sp4,4062
|
|
96
|
+
glaip_sdk/utils/rendering/steps/__init__.py,sha256=y1BJUPeT4bclXPmsy6B66KNZWiY8W5p-LnLnlrxynP8,840
|
|
97
|
+
glaip_sdk/utils/rendering/steps/event_processor.py,sha256=sGOHpxm7WmKxxY68l9Su6_YbDkXcoFblwkv1fToSX5k,29048
|
|
98
|
+
glaip_sdk/utils/rendering/steps/format.py,sha256=Chnq7OBaj8XMeBntSBxrX5zSmrYeGcOszooNeBe7_pM,5654
|
|
99
|
+
glaip_sdk/utils/rendering/steps/manager.py,sha256=BiBmTeQMQhjRMykgICXsXNYh1hGsss-fH9BIGVMWFi0,13194
|
|
100
|
+
glaip_sdk/utils/rendering/timing.py,sha256=__F1eFPoocm7Dps7Y1O_gJV24HsNTbx_FMiqEDN4T9o,1063
|
|
101
|
+
glaip_sdk/utils/rendering/viewer/__init__.py,sha256=XrxmE2cMAozqrzo1jtDFm8HqNtvDcYi2mAhXLXn5CjI,457
|
|
102
|
+
glaip_sdk/utils/rendering/viewer/presenter.py,sha256=mlLMTjnyeyPVtsyrAbz1BJu9lFGQSlS-voZ-_Cuugv0,5725
|
|
103
|
+
glaip_sdk/utils/resource_refs.py,sha256=vF34kyAtFBLnaKnQVrsr2st1JiSxVbIZ4yq0DelJvCI,5966
|
|
104
|
+
glaip_sdk/utils/run_renderer.py,sha256=d_VMI6LbvHPUUeRmGqh5wK_lHqDEIAcym2iqpbtDad0,1365
|
|
105
|
+
glaip_sdk/utils/serialization.py,sha256=z-qpvWLSBrGK3wbUclcA1UIKLXJedTnMSwPdq-FF4lo,13308
|
|
106
|
+
glaip_sdk/utils/validation.py,sha256=Vt8oSnn7OM6ns5vjOl5FwGIMWBPb0yI6RD5XL_L5_4M,6826
|
|
107
|
+
glaip_sdk-0.4.0.dist-info/METADATA,sha256=3-W1vIpTHWJPyrCo9XrN1V-XSv_1cJRkctTVpIQiNdU,7053
|
|
108
|
+
glaip_sdk-0.4.0.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
|
109
|
+
glaip_sdk-0.4.0.dist-info/entry_points.txt,sha256=EGs8NO8J1fdFMWA3CsF7sKBEvtHb_fujdCoNPhfMouE,47
|
|
110
|
+
glaip_sdk-0.4.0.dist-info/RECORD,,
|
glaip_sdk-0.2.2.dist-info/RECORD
DELETED
|
@@ -1,87 +0,0 @@
|
|
|
1
|
-
glaip_sdk/__init__.py,sha256=7ICOkPeiwQGkadqxIgJXOYPHcJOHYRIF_GU0xkjOtSE,366
|
|
2
|
-
glaip_sdk/_version.py,sha256=5CHGCxx_36fgmMWuEx6jJ2CzzM-i9eBFyQWFwBi23XE,2259
|
|
3
|
-
glaip_sdk/branding.py,sha256=tLqYCIHMkUf8p2smpuAGNptwaKUN38G4mlh0A0DOl_w,7823
|
|
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=6Z3ASXDut0lAbUX_umBFtxPzzFyqoiZfVeTahThFu1A,219
|
|
8
|
-
glaip_sdk/cli/commands/agents.py,sha256=26LiI1TkGTcFS32OYcX6mi3_atSw1aBOG-a7WXEErnk,46711
|
|
9
|
-
glaip_sdk/cli/commands/configure.py,sha256=tcJeHMLXnkT_aeR5-5vsDAg2RwOvIMDxZcWCr6qbHqk,11389
|
|
10
|
-
glaip_sdk/cli/commands/mcps.py,sha256=v5UCvXlybNkaJCWfqSXJxo98eF7iqD0R3KB9I6sRuA0,37516
|
|
11
|
-
glaip_sdk/cli/commands/models.py,sha256=hd_X1ymn-fqIiU1YN5Imf_e5ayhhA0dxo-PNRqSpofs,2032
|
|
12
|
-
glaip_sdk/cli/commands/tools.py,sha256=Ojf3_HvCKT4uU4_weMXy4ahPnIBCeUEl00qEUD_ZBKY,18064
|
|
13
|
-
glaip_sdk/cli/commands/transcripts.py,sha256=5W_wRVzyCh813xEXh6UDwzRy4anbc2Shz03ZIVdBhyM,26379
|
|
14
|
-
glaip_sdk/cli/commands/update.py,sha256=rIZo_x-tvpvcwpQLpwYwso1ix6qTHuNNTL4egmn5fEM,1812
|
|
15
|
-
glaip_sdk/cli/config.py,sha256=2NZxFyt8jc6CMRUbuxx7sq_wsfTJXmwQGn09hhYHGnE,1341
|
|
16
|
-
glaip_sdk/cli/constants.py,sha256=8B56cYzJ6j-ietv8qgnfSxNO2QjhEZaV7LfhNzyXKQM,835
|
|
17
|
-
glaip_sdk/cli/context.py,sha256=--Y5vc6lgoAV7cRoUAr9UxSQaLmkMg29FolA7EwoRqM,3803
|
|
18
|
-
glaip_sdk/cli/display.py,sha256=RuBZxmdBesllMMmH4lYoaozolNHW8hLhxRDFzpTsbhs,12137
|
|
19
|
-
glaip_sdk/cli/io.py,sha256=_7qHA3K4VfzNXP7NYHShby_Bw9xigJ26oIaESXYDAQ8,3678
|
|
20
|
-
glaip_sdk/cli/main.py,sha256=RAgfiCsYyp_MnbPtUslQjjIrr_tAxSmUyI7CaclyPAk,16990
|
|
21
|
-
glaip_sdk/cli/masking.py,sha256=QRtUeHBVCJG02EXLxnPzfhRmD-leMxWf6QKxh4TCax0,3666
|
|
22
|
-
glaip_sdk/cli/mcp_validators.py,sha256=cwbz7p_p7_9xVuuF96OBQOdmEgo5UObU6iWWQ2X03PI,10047
|
|
23
|
-
glaip_sdk/cli/pager.py,sha256=XygkAB6UW3bte7I4KmK7-PUGCJiq2Pv-4-MfyXAmXCw,7925
|
|
24
|
-
glaip_sdk/cli/parsers/__init__.py,sha256=NzLrSH6GOdNoewXtKNpB6GwrauA8rb_IGYV6cz5Hn3o,113
|
|
25
|
-
glaip_sdk/cli/parsers/json_input.py,sha256=kxoxeIlgfsaH2jhe6apZAgSxAtwlpSINLTMRsZZYboQ,5630
|
|
26
|
-
glaip_sdk/cli/resolution.py,sha256=K-VaEHm9SYY_qfb9538VNHykL4_2N6F8iQqI1zMx_64,2402
|
|
27
|
-
glaip_sdk/cli/rich_helpers.py,sha256=kO47N8e506rxrN6Oc9mbAWN3Qb536oQPWZy1s9A616g,819
|
|
28
|
-
glaip_sdk/cli/slash/__init__.py,sha256=J9TPL2UcNTkW8eifG6nRmAEGHhyEgdYMYk4cHaaObC0,386
|
|
29
|
-
glaip_sdk/cli/slash/agent_session.py,sha256=N3ozibjAgCm8M1XFmkgHWnHffg0os-F4BD8IYNIBp6Y,11606
|
|
30
|
-
glaip_sdk/cli/slash/prompt.py,sha256=BB1V5B3zbBA6ZOqD8z4KSDLDmLpG0Kd39ydOouFsJDY,7878
|
|
31
|
-
glaip_sdk/cli/slash/session.py,sha256=1YZ7O8W72qHp7XlhN0Mg70HrK07PIyznpe4pjhc_q4k,53687
|
|
32
|
-
glaip_sdk/cli/transcript/__init__.py,sha256=yiYHyNtebMCu3BXu56Xm5RBC2tDc865q8UGPnoe6QRs,920
|
|
33
|
-
glaip_sdk/cli/transcript/cache.py,sha256=Wi1uln6HP1U6F-MRTrfnxi9bn6XJTxwWXhREIRPoMqQ,17439
|
|
34
|
-
glaip_sdk/cli/transcript/capture.py,sha256=PMmJGjdC3QEeBdjkmdAE2-aINqUGrSKYmT5lEINzZ08,10345
|
|
35
|
-
glaip_sdk/cli/transcript/export.py,sha256=reCvrZVzli8_LzYe5ZNdaa-MwZ1ov2RjnDzKZWr_6-E,1117
|
|
36
|
-
glaip_sdk/cli/transcript/history.py,sha256=2FBjawxP8CX9gRPMUMP8bDjG50BGM2j2zk6IfHvAMH4,26211
|
|
37
|
-
glaip_sdk/cli/transcript/launcher.py,sha256=z5ivkPXDQJpATIqtRLUK8jH3p3WIZ72PvOPqYRDMJvw,2327
|
|
38
|
-
glaip_sdk/cli/transcript/viewer.py,sha256=r7G8OHbN2Pj5n30nEUkpSU6lcBdojheRsp6P4WBz3Y8,33710
|
|
39
|
-
glaip_sdk/cli/update_notifier.py,sha256=t_qgKGPic8VO5O6h12SfglCpRpnkt65Bkg-EF3C79Bo,9776
|
|
40
|
-
glaip_sdk/cli/utils.py,sha256=UN4KQjXs7Zu4zw-fxMAuzkffXRN_mmiR23t7e3JPMws,48962
|
|
41
|
-
glaip_sdk/cli/validators.py,sha256=Squ2W-fMz9kfvhtTt7pCcAYnzFU28ZxxTEqH1vF9r00,5620
|
|
42
|
-
glaip_sdk/client/__init__.py,sha256=nYLXfBVTTWwKjP0e63iumPYO4k5FifwWaELQPaPIKIg,188
|
|
43
|
-
glaip_sdk/client/_agent_payloads.py,sha256=VfBHoijuoqUOixGBf2SA2vlQIXQmBsjB3sXHZhXYiec,17681
|
|
44
|
-
glaip_sdk/client/agents.py,sha256=dpXL14XbeH3uczdIE25THEKQ8DJOfRZ-WMmD93_yzmU,42217
|
|
45
|
-
glaip_sdk/client/base.py,sha256=ikW33raz2M6rXzo3JmhttfXXuVdMv5zBRKEZkU1F-4I,18176
|
|
46
|
-
glaip_sdk/client/main.py,sha256=HnwSwYEWRFymVCaXBge5I2_7p86X2zRvRu6gjgD9Ifw,8788
|
|
47
|
-
glaip_sdk/client/mcps.py,sha256=GQ1EBTSVc-WrFigyw8iocK34DT3TMW85XtnDeOawP9E,8945
|
|
48
|
-
glaip_sdk/client/run_rendering.py,sha256=COBU7xEXYIMzg7__U1-cV6RIg1bs3ys5Zb4YV28APoY,14069
|
|
49
|
-
glaip_sdk/client/tools.py,sha256=xCPqDqtVNePCBeJvbKDqzZI-jbaduIeWd-6XbCSg_2Y,17324
|
|
50
|
-
glaip_sdk/client/validators.py,sha256=ioF9VCs-LG2yLkaRDd7Hff74lojDZZ0_Q3CiLbdm1RY,8381
|
|
51
|
-
glaip_sdk/config/constants.py,sha256=B9CSlYG8LYjQuo_vNpqy-eSks3ej37FMcvJMy6d_F4U,888
|
|
52
|
-
glaip_sdk/exceptions.py,sha256=iAChFClkytXRBLP0vZq1_YjoZxA9i4m4bW1gDLiGR1g,2321
|
|
53
|
-
glaip_sdk/icons.py,sha256=J5THz0ReAmDwIiIooh1_G3Le-mwTJyEjhJDdJ13KRxM,524
|
|
54
|
-
glaip_sdk/models.py,sha256=3ghS29EjcE6A9iHEiSxbPco5bCHqnVGpVbE2kGliz_o,8751
|
|
55
|
-
glaip_sdk/payload_schemas/__init__.py,sha256=nTJmzwn2BbEpzZdq-8U24eVHQHxqYO3_-SABMV9lS_Q,142
|
|
56
|
-
glaip_sdk/payload_schemas/agent.py,sha256=Nap68mI2Ba8eNGOhk79mGrYUoYUahcUJLof3DLWtVO4,3198
|
|
57
|
-
glaip_sdk/rich_components.py,sha256=rU3CD55WZlwjY81usctfX-S0bmsQ2Yd4nWEXhueGv7U,2090
|
|
58
|
-
glaip_sdk/utils/__init__.py,sha256=Fy11SCrasMRNnP-qbZ-Rr9JMhxgHHcSGG2v7jd7PP20,1087
|
|
59
|
-
glaip_sdk/utils/agent_config.py,sha256=RhcHsSOVwOaSC2ggnPuHn36Aa0keGJhs8KGb2InvzRk,7262
|
|
60
|
-
glaip_sdk/utils/client_utils.py,sha256=UdyEtFlpZ3TNFrvx2NsjPNzx8sm5Lkz3S13-9OrFjnE,13894
|
|
61
|
-
glaip_sdk/utils/datetime_helpers.py,sha256=QLknNLEAY56628-MTRKnCXAffATkF33erOqBubKmU98,1544
|
|
62
|
-
glaip_sdk/utils/display.py,sha256=_lQ9fHLJnsSgY7nJkYlGLBk47bwNjbqMTr3_GvOyRyM,3983
|
|
63
|
-
glaip_sdk/utils/general.py,sha256=3HSVIopUsIymPaim-kP2lqLX75TkkdIVLe6g3UKabZ0,1507
|
|
64
|
-
glaip_sdk/utils/import_export.py,sha256=dRzQXpeCN0iD-ZM6qW_Oy0MMAWkq_EOMc70_X2lne7M,5734
|
|
65
|
-
glaip_sdk/utils/rendering/__init__.py,sha256=vXjwk5rPhhfPyD8S0DnV4GFFEtPJp4HCCg1Um9SXfs0,70
|
|
66
|
-
glaip_sdk/utils/rendering/formatting.py,sha256=PBT1jD6pxpkiUSs5RQOVWImmKgAwbWuQCUpgu0PNs3Q,8828
|
|
67
|
-
glaip_sdk/utils/rendering/models.py,sha256=wB9QtEiwN-AaY8k_YKBBT2qMQSBNMv27VcaZH88DdCM,2823
|
|
68
|
-
glaip_sdk/utils/rendering/renderer/__init__.py,sha256=kayCY7nluSRFFPBlXCp5dozM5sTfPydIGxbHmjuN_A8,2236
|
|
69
|
-
glaip_sdk/utils/rendering/renderer/base.py,sha256=Obm5J9UopxgPfYZSfXwU6AqhGDGNyFqsmiMVKGzgUZg,85660
|
|
70
|
-
glaip_sdk/utils/rendering/renderer/config.py,sha256=FgSAZpG1g7Atm2MXg0tY0lOEciY90MR-RO6YuGFhp0E,626
|
|
71
|
-
glaip_sdk/utils/rendering/renderer/console.py,sha256=4cLOw4Q1fkHkApuj6dWW8eYpeYdcT0t2SO5MbVt5UTc,1844
|
|
72
|
-
glaip_sdk/utils/rendering/renderer/debug.py,sha256=XaBgLvQRc6tF9K2iz1f7W6QIZ27742j_YqeUTIMY2H0,5095
|
|
73
|
-
glaip_sdk/utils/rendering/renderer/panels.py,sha256=tbExgFXzK6NHlvuJlVwsejznGJY1ALwTi9KfIej9aWM,3784
|
|
74
|
-
glaip_sdk/utils/rendering/renderer/progress.py,sha256=iwAx76q0hdnjDrHMF_MB2AYQ2kAA4pwfIn0FiSAEkyg,4068
|
|
75
|
-
glaip_sdk/utils/rendering/renderer/stream.py,sha256=Y0egKCdWSdM5kGiiDG5Bwc1VQuimI-NUlal2kDojb08,7862
|
|
76
|
-
glaip_sdk/utils/rendering/renderer/summary_window.py,sha256=ffBsVHaUyy2RfIuXLjhfiO31HeeprVcPP_pe4cjDLsU,2286
|
|
77
|
-
glaip_sdk/utils/rendering/renderer/toggle.py,sha256=N3LB4g1r8EdDkQyItQdrP5gig6Sszz9uZ6WJuD0KUmk,5396
|
|
78
|
-
glaip_sdk/utils/rendering/step_tree_state.py,sha256=EItKFTV2FYvm5pSyHbXk7lkzJ-0DW_s-VENIBZe8sp4,4062
|
|
79
|
-
glaip_sdk/utils/rendering/steps.py,sha256=wySeMsTSH6RKRQa-dDrDkwEts85dw_RL4HlUFbAmFMo,42356
|
|
80
|
-
glaip_sdk/utils/resource_refs.py,sha256=C0ov4RwQBGQqur_UuxpFaKLQdHsTAzt9-o22VLAMEcc,5485
|
|
81
|
-
glaip_sdk/utils/run_renderer.py,sha256=d_VMI6LbvHPUUeRmGqh5wK_lHqDEIAcym2iqpbtDad0,1365
|
|
82
|
-
glaip_sdk/utils/serialization.py,sha256=z-qpvWLSBrGK3wbUclcA1UIKLXJedTnMSwPdq-FF4lo,13308
|
|
83
|
-
glaip_sdk/utils/validation.py,sha256=NPDexNgGUIoLkEIz6hl3K6EG7ZKSEkcNLDElqm8-Ng4,7019
|
|
84
|
-
glaip_sdk-0.2.2.dist-info/METADATA,sha256=oRvtzI2LA0lMGEE_WIRmFNS3Ug0-6HW0Y6rW5YX72Ok,6023
|
|
85
|
-
glaip_sdk-0.2.2.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
|
86
|
-
glaip_sdk-0.2.2.dist-info/entry_points.txt,sha256=EGs8NO8J1fdFMWA3CsF7sKBEvtHb_fujdCoNPhfMouE,47
|
|
87
|
-
glaip_sdk-0.2.2.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|