glaip-sdk 0.0.20__py3-none-any.whl → 0.1.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/commands/agents.py +19 -0
- glaip_sdk/cli/commands/mcps.py +1 -2
- glaip_sdk/cli/slash/session.py +0 -3
- glaip_sdk/cli/transcript/viewer.py +176 -6
- glaip_sdk/cli/utils.py +0 -1
- glaip_sdk/client/run_rendering.py +125 -20
- glaip_sdk/icons.py +9 -3
- glaip_sdk/utils/rendering/formatting.py +50 -7
- glaip_sdk/utils/rendering/models.py +15 -2
- glaip_sdk/utils/rendering/renderer/__init__.py +0 -2
- glaip_sdk/utils/rendering/renderer/base.py +1131 -218
- glaip_sdk/utils/rendering/renderer/config.py +3 -5
- glaip_sdk/utils/rendering/renderer/stream.py +3 -3
- glaip_sdk/utils/rendering/renderer/toggle.py +184 -0
- glaip_sdk/utils/rendering/step_tree_state.py +102 -0
- glaip_sdk/utils/rendering/steps.py +944 -16
- {glaip_sdk-0.0.20.dist-info → glaip_sdk-0.1.0.dist-info}/METADATA +12 -1
- {glaip_sdk-0.0.20.dist-info → glaip_sdk-0.1.0.dist-info}/RECORD +20 -18
- {glaip_sdk-0.0.20.dist-info → glaip_sdk-0.1.0.dist-info}/WHEEL +0 -0
- {glaip_sdk-0.0.20.dist-info → glaip_sdk-0.1.0.dist-info}/entry_points.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: glaip-sdk
|
|
3
|
-
Version: 0.0
|
|
3
|
+
Version: 0.1.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
|
|
@@ -170,6 +170,17 @@ aip agents run <AGENT_ID> --input "Hello world, what's the weather like?"
|
|
|
170
170
|
- **🔄 Multi-Agent Patterns**: Hierarchical, parallel, sequential, router, and aggregator patterns
|
|
171
171
|
- **💻 Modern CLI**: Rich terminal interface with fuzzy search and multiple output formats
|
|
172
172
|
|
|
173
|
+
## 🌳 Live Steps Panel
|
|
174
|
+
|
|
175
|
+
The CLI steps panel now streams a fully hierarchical tree so you can audit complex agent runs without leaving the terminal.
|
|
176
|
+
|
|
177
|
+
- Renders parent/child relationships with `│├└` connectors, even when events arrive out of order
|
|
178
|
+
- Marks running steps with spinners and duration badges sourced from SSE metadata before local fallbacks
|
|
179
|
+
- Highlights failures inline (`✗ reason`) and raises warning glyphs on affected delegate branches
|
|
180
|
+
- Derives deterministic “💭 Thinking…” spans before/after each delegate or tool action to show scheduling gaps
|
|
181
|
+
- Flags parallel work with a dedicated glyph and argument-derived labels so simultaneous tool calls stay readable
|
|
182
|
+
- Try it locally: `poetry run python scripts/replay_steps_log.py --transcript tests/fixtures/rendering/transcripts/parallel_research.jsonl --output /tmp/parallel.log`
|
|
183
|
+
|
|
173
184
|
## 📚 Documentation
|
|
174
185
|
|
|
175
186
|
📖 **[Complete Documentation](https://gdplabs.gitbook.io/gl-aip/gl-aip-sdk/overview)** - Visit our GitBook for comprehensive guides, tutorials, and API reference.
|
|
@@ -5,9 +5,9 @@ glaip_sdk/cli/__init__.py,sha256=xCCfuF1Yc7mpCDcfhHZTX0vizvtrDSLeT8MJ3V7m5A0,156
|
|
|
5
5
|
glaip_sdk/cli/agent_config.py,sha256=VHjebw68wAdhGUzYdPH8qz10oADZPRgUQcPW6F7iHIU,2421
|
|
6
6
|
glaip_sdk/cli/auth.py,sha256=eMqMXss3v36yyimSgm4PN8uG85UvIFn1U_XOXUvcZmI,16026
|
|
7
7
|
glaip_sdk/cli/commands/__init__.py,sha256=N2go38u3C0MPxfDXk-K2zz93OnqSTpQyOE6dIC82lHg,191
|
|
8
|
-
glaip_sdk/cli/commands/agents.py,sha256=
|
|
8
|
+
glaip_sdk/cli/commands/agents.py,sha256=nIjJJor89TZ4RI3QUhpexIPxijImou8gW9STyHBRjy0,44449
|
|
9
9
|
glaip_sdk/cli/commands/configure.py,sha256=xpryuPXzuwfCKyolxRqh-WpzxIv7sBVp7ZUjlnNrkcQ,9338
|
|
10
|
-
glaip_sdk/cli/commands/mcps.py,sha256=
|
|
10
|
+
glaip_sdk/cli/commands/mcps.py,sha256=_gqylQvKR5UHNbvfeh-EAUsfwW2vzJK8Ll7TrQwsKf8,37822
|
|
11
11
|
glaip_sdk/cli/commands/models.py,sha256=EUC-_3QPAjtqId4WobWbQZVPjgQ9Eo_srcGIRlhhPq8,1790
|
|
12
12
|
glaip_sdk/cli/commands/tools.py,sha256=rWWgzyfLp_WOMYxU1XluombLkRzWQH8WrohlWc75piU,19212
|
|
13
13
|
glaip_sdk/cli/commands/update.py,sha256=nV0C08bHDYn5byFP_N8rzdKbDc5_tDKXC19L_HftJX8,1869
|
|
@@ -26,15 +26,15 @@ glaip_sdk/cli/rich_helpers.py,sha256=ByUOmK16IisoXWE7nEiI55BF1KWDrm6KCYAxqHu0XOU
|
|
|
26
26
|
glaip_sdk/cli/slash/__init__.py,sha256=3kAXgOAnXmWkDheNtRuWqCooyIDaNYZMLTrbdhMGz9w,738
|
|
27
27
|
glaip_sdk/cli/slash/agent_session.py,sha256=Q1WUOthWMc6PglFwN_LCg60Yi51nvzPdjVdeumo_I8Y,9491
|
|
28
28
|
glaip_sdk/cli/slash/prompt.py,sha256=JBwRvIJgK0MR2Wx0wt7XAqAKpVL2Etp28ifwtklIM9M,7669
|
|
29
|
-
glaip_sdk/cli/slash/session.py,sha256=
|
|
29
|
+
glaip_sdk/cli/slash/session.py,sha256=9Ti2cldFCSZKPE52ewlerkGwMLIwpd51SuQQVLb7nXU,41415
|
|
30
30
|
glaip_sdk/cli/transcript/__init__.py,sha256=zQNgAETJsj2tO3OmuINgXiCQCmh_ODzI6HQPPmxMXVs,1816
|
|
31
31
|
glaip_sdk/cli/transcript/cache.py,sha256=_YGv2M-tZASljGrzbJCgiV59KmIf0w-r6Qq0bqtkZqc,9860
|
|
32
32
|
glaip_sdk/cli/transcript/capture.py,sha256=EtSac3BBYGvcZTyCe9orPvKOZKZ8ooGBOlpKlmxAg_o,8325
|
|
33
33
|
glaip_sdk/cli/transcript/export.py,sha256=reCvrZVzli8_LzYe5ZNdaa-MwZ1ov2RjnDzKZWr_6-E,1117
|
|
34
34
|
glaip_sdk/cli/transcript/launcher.py,sha256=OBaTBcNywy8NbwfdYD4IIOlksXbLT_K3poGJDP6bNyE,2333
|
|
35
|
-
glaip_sdk/cli/transcript/viewer.py,sha256=
|
|
35
|
+
glaip_sdk/cli/transcript/viewer.py,sha256=tsPj4QmvwgTxYW_c4Ljt5uoCg3WeAR3vX3JHKBUnr-Q,27016
|
|
36
36
|
glaip_sdk/cli/update_notifier.py,sha256=Zy4VJVGI4rfYFnMQ3J2IwXLKhDZ95ODSTXgfg7gdrxU,4175
|
|
37
|
-
glaip_sdk/cli/utils.py,sha256=
|
|
37
|
+
glaip_sdk/cli/utils.py,sha256=0WaFszJdvJvDCAn5AyNsSWiQpoaNspBbvXOCjXmJGRg,41009
|
|
38
38
|
glaip_sdk/cli/validators.py,sha256=USbBgY86AwuDHO-Q_g8g7hu-ot4NgITBsWjTWIl62ms,5569
|
|
39
39
|
glaip_sdk/client/__init__.py,sha256=nYLXfBVTTWwKjP0e63iumPYO4k5FifwWaELQPaPIKIg,188
|
|
40
40
|
glaip_sdk/client/_agent_payloads.py,sha256=sYlMzrfAdd8KC37qxokLy2uDd3aOhzQirnv7UYlvwYc,16385
|
|
@@ -42,12 +42,12 @@ glaip_sdk/client/agents.py,sha256=nGXYIAkz3jDL2glNyoROGjiAUpLwXdeqYrnc4Qxl8o0,37
|
|
|
42
42
|
glaip_sdk/client/base.py,sha256=OPRlAWhZ77rUK0MRGA83-zW5NVhxJ1RgdfcfGOYr8rI,16267
|
|
43
43
|
glaip_sdk/client/main.py,sha256=tELAA36rzthnNKTgwZ6lLPb3Au8Wh1mF8Kz-9N-YtCg,8652
|
|
44
44
|
glaip_sdk/client/mcps.py,sha256=-O-I15qjbwfSA69mouHY6g5_qgPWC4rM98VJLpOkh1A,8975
|
|
45
|
-
glaip_sdk/client/run_rendering.py,sha256=
|
|
45
|
+
glaip_sdk/client/run_rendering.py,sha256=govFrOImeB-KtnbHtf82dIjGJ26KMT4B7qJA7ZOucBE,12296
|
|
46
46
|
glaip_sdk/client/tools.py,sha256=rWxfNO30sS468513IoE5PfEaqNq6HBwmcHVh4FzhvYQ,17532
|
|
47
47
|
glaip_sdk/client/validators.py,sha256=NtPsWjQLjj25LiUnmR-WuS8lL5p4MVRaYT9UVRmj9bo,8809
|
|
48
48
|
glaip_sdk/config/constants.py,sha256=B9CSlYG8LYjQuo_vNpqy-eSks3ej37FMcvJMy6d_F4U,888
|
|
49
49
|
glaip_sdk/exceptions.py,sha256=ILquxC4QGPFR9eY6RpeXzkQsblfsvZMGFqz38ZjeW3E,2345
|
|
50
|
-
glaip_sdk/icons.py,sha256=
|
|
50
|
+
glaip_sdk/icons.py,sha256=J5THz0ReAmDwIiIooh1_G3Le-mwTJyEjhJDdJ13KRxM,524
|
|
51
51
|
glaip_sdk/models.py,sha256=uXWsC5VdXSxPci8GRYOofZrIdsFgradayrIzJyhc7u8,9188
|
|
52
52
|
glaip_sdk/payload_schemas/__init__.py,sha256=fJamlkpS3IfS9xyKAQaUbnalvrtG5Ied69OUVAA3xvs,395
|
|
53
53
|
glaip_sdk/payload_schemas/agent.py,sha256=nlizuv2w4SVzmMJSE90rE6Ll0Hfpcr5hvPsW_NtXCV0,3204
|
|
@@ -59,22 +59,24 @@ glaip_sdk/utils/display.py,sha256=afHuUUKs6eQrCMh16r88kNufbEtOH6WQLT9yatPP610,40
|
|
|
59
59
|
glaip_sdk/utils/general.py,sha256=V5hJrIpYDvDsldU_nChHpuvV2AwhFLUI7Qvcaihq_8A,2270
|
|
60
60
|
glaip_sdk/utils/import_export.py,sha256=jEhl5U6hWWMR1wo5AXpV-_jN_56DcWcemOa2UaFHapk,5217
|
|
61
61
|
glaip_sdk/utils/rendering/__init__.py,sha256=vXjwk5rPhhfPyD8S0DnV4GFFEtPJp4HCCg1Um9SXfs0,70
|
|
62
|
-
glaip_sdk/utils/rendering/formatting.py,sha256=
|
|
63
|
-
glaip_sdk/utils/rendering/models.py,sha256=
|
|
64
|
-
glaip_sdk/utils/rendering/renderer/__init__.py,sha256=
|
|
65
|
-
glaip_sdk/utils/rendering/renderer/base.py,sha256=
|
|
66
|
-
glaip_sdk/utils/rendering/renderer/config.py,sha256
|
|
62
|
+
glaip_sdk/utils/rendering/formatting.py,sha256=3UKsWmtw7aJA41RV1qrqVDu9zqarMpxb7tIYPrDm9PQ,8849
|
|
63
|
+
glaip_sdk/utils/rendering/models.py,sha256=qH_TFm7J36G_O2blGIBUavbM6RQXil4aNazEjlKnaPI,2870
|
|
64
|
+
glaip_sdk/utils/rendering/renderer/__init__.py,sha256=UHJEw3co3ESSQja8DZRHByO_R1s7sDlYxobnSOt1G24,2857
|
|
65
|
+
glaip_sdk/utils/rendering/renderer/base.py,sha256=XDTp08zPFwGM0zby9ut9nZ61pihUpHPe08onzTybC9g,84375
|
|
66
|
+
glaip_sdk/utils/rendering/renderer/config.py,sha256=ePomLA3iBHkjk5bJftvuMx_qVtT83nbj4YrFSZqGRAs,734
|
|
67
67
|
glaip_sdk/utils/rendering/renderer/console.py,sha256=4cLOw4Q1fkHkApuj6dWW8eYpeYdcT0t2SO5MbVt5UTc,1844
|
|
68
68
|
glaip_sdk/utils/rendering/renderer/debug.py,sha256=uVaBs33mfXo44lWm4Fi5LXcrlfVmT1_Kp_IXf09RzfI,5651
|
|
69
69
|
glaip_sdk/utils/rendering/renderer/panels.py,sha256=Bv_dpUKiKlL6r0_aZ2okY7Ov7pp5-MxFjjftTWG71L4,3790
|
|
70
70
|
glaip_sdk/utils/rendering/renderer/progress.py,sha256=RnnAnw5rFd24Ij0U8Qm2oFHud8mmzDQ9Fwg3QFrRJNg,4128
|
|
71
|
-
glaip_sdk/utils/rendering/renderer/stream.py,sha256=
|
|
72
|
-
glaip_sdk/utils/rendering/
|
|
71
|
+
glaip_sdk/utils/rendering/renderer/stream.py,sha256=_dKICrMFhnhaz9mZXVctk6gWxeoWPt3HftoMPSNnEvE,8660
|
|
72
|
+
glaip_sdk/utils/rendering/renderer/toggle.py,sha256=ko5IpSDQUxTh5WmmrMYNgvgxYomrptLTSmoUosg3yLM,5418
|
|
73
|
+
glaip_sdk/utils/rendering/step_tree_state.py,sha256=j-O0P3KQ1hy-vKPiu-jbl6P9r0HWWChh05uXLPHvc-M,4076
|
|
74
|
+
glaip_sdk/utils/rendering/steps.py,sha256=CV1E96jiSllDsxUyBe5mDP-17jAQhxRkZr59WeUg4CQ,42778
|
|
73
75
|
glaip_sdk/utils/resource_refs.py,sha256=0YzblJNfRhz9xhpaKE9aE68XEV-6_ssr0fIkiMVOka0,5489
|
|
74
76
|
glaip_sdk/utils/run_renderer.py,sha256=d_VMI6LbvHPUUeRmGqh5wK_lHqDEIAcym2iqpbtDad0,1365
|
|
75
77
|
glaip_sdk/utils/serialization.py,sha256=3Bwxw2M0qR59Rx0GS0hrnWZz46Ht-gpda9dva07Pr_A,12893
|
|
76
78
|
glaip_sdk/utils/validation.py,sha256=6jv1fExRllOK6sIvU7YX3a-Sf0AlFHar4KYiTC0Pzs4,6987
|
|
77
|
-
glaip_sdk-0.0.
|
|
78
|
-
glaip_sdk-0.0.
|
|
79
|
-
glaip_sdk-0.0.
|
|
80
|
-
glaip_sdk-0.0.
|
|
79
|
+
glaip_sdk-0.1.0.dist-info/METADATA,sha256=3EmpdWW7BOec2_yqpwp-ts3nwF_-JZkIp5d_4SBGKes,6023
|
|
80
|
+
glaip_sdk-0.1.0.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
|
81
|
+
glaip_sdk-0.1.0.dist-info/entry_points.txt,sha256=EGs8NO8J1fdFMWA3CsF7sKBEvtHb_fujdCoNPhfMouE,47
|
|
82
|
+
glaip_sdk-0.1.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|