glaip-sdk 0.7.8__py3-none-any.whl → 0.7.9__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/slash/tui/accounts_app.py +8 -1
- {glaip_sdk-0.7.8.dist-info → glaip_sdk-0.7.9.dist-info}/METADATA +4 -4
- {glaip_sdk-0.7.8.dist-info → glaip_sdk-0.7.9.dist-info}/RECORD +6 -6
- {glaip_sdk-0.7.8.dist-info → glaip_sdk-0.7.9.dist-info}/WHEEL +0 -0
- {glaip_sdk-0.7.8.dist-info → glaip_sdk-0.7.9.dist-info}/entry_points.txt +0 -0
- {glaip_sdk-0.7.8.dist-info → glaip_sdk-0.7.9.dist-info}/top_level.txt +0 -0
|
@@ -44,6 +44,7 @@ try: # pragma: no cover - optional dependency
|
|
|
44
44
|
from textual.binding import Binding
|
|
45
45
|
from textual.containers import Container, Horizontal, Vertical
|
|
46
46
|
from textual.screen import ModalScreen
|
|
47
|
+
from textual.suggester import SuggestFromList
|
|
47
48
|
from textual.widgets import Button, Checkbox, DataTable, Footer, Header, Input, LoadingIndicator, Static
|
|
48
49
|
except Exception: # pragma: no cover - optional dependency
|
|
49
50
|
events = None # type: ignore[assignment]
|
|
@@ -62,6 +63,7 @@ except Exception: # pragma: no cover - optional dependency
|
|
|
62
63
|
LoadingIndicator = None # type: ignore[assignment]
|
|
63
64
|
ModalScreen = None # type: ignore[assignment]
|
|
64
65
|
Static = None # type: ignore[assignment]
|
|
66
|
+
SuggestFromList = None # type: ignore[assignment]
|
|
65
67
|
Theme = None # type: ignore[assignment]
|
|
66
68
|
|
|
67
69
|
if App is not None:
|
|
@@ -312,11 +314,16 @@ class AccountFormModal(_AccountFormBase): # pragma: no cover - interactive
|
|
|
312
314
|
id="form-name",
|
|
313
315
|
disabled=self._mode == "edit",
|
|
314
316
|
)
|
|
317
|
+
# Get API URL suggestions and create suggester
|
|
318
|
+
url_suggestions = self._get_api_url_suggestions("")
|
|
319
|
+
url_suggester = None
|
|
320
|
+
if SuggestFromList and url_suggestions:
|
|
321
|
+
url_suggester = SuggestFromList(url_suggestions, case_sensitive=False)
|
|
315
322
|
url_input = Input(
|
|
316
323
|
value=self._existing.get("api_url", ""),
|
|
317
324
|
placeholder="https://api.example.com",
|
|
318
325
|
id="form-url",
|
|
319
|
-
|
|
326
|
+
suggester=url_suggester,
|
|
320
327
|
)
|
|
321
328
|
key_input = Input(value="", placeholder="sk-...", password=True, id="form-key")
|
|
322
329
|
test_checkbox = Checkbox(
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: glaip-sdk
|
|
3
|
-
Version: 0.7.
|
|
3
|
+
Version: 0.7.9
|
|
4
4
|
Summary: Python SDK and CLI for GL AIP (GDP Labs AI Agent Package) - Build, run, and manage AI agents
|
|
5
5
|
Author-email: Raymond Christopher <raymond.christopher@gdplabs.id>
|
|
6
6
|
License: MIT
|
|
@@ -20,11 +20,11 @@ Requires-Dist: gllm-core-binary>=0.1.0
|
|
|
20
20
|
Requires-Dist: langchain-core>=0.3.0
|
|
21
21
|
Requires-Dist: gllm-tools-binary>=0.1.3
|
|
22
22
|
Provides-Extra: local
|
|
23
|
-
Requires-Dist: aip-agents-binary[local]>=0.5.
|
|
23
|
+
Requires-Dist: aip-agents-binary[local]>=0.5.23; (python_version >= "3.11" and python_version < "3.13") and extra == "local"
|
|
24
24
|
Provides-Extra: memory
|
|
25
|
-
Requires-Dist: aip-agents-binary[memory]>=0.5.
|
|
25
|
+
Requires-Dist: aip-agents-binary[memory]>=0.5.23; (python_version >= "3.11" and python_version < "3.13") and extra == "memory"
|
|
26
26
|
Provides-Extra: privacy
|
|
27
|
-
Requires-Dist: aip-agents-binary[privacy]>=0.5.
|
|
27
|
+
Requires-Dist: aip-agents-binary[privacy]>=0.5.23; (python_version >= "3.11" and python_version < "3.13") and extra == "privacy"
|
|
28
28
|
Provides-Extra: dev
|
|
29
29
|
Requires-Dist: pytest>=7.0.0; extra == "dev"
|
|
30
30
|
Requires-Dist: pytest-cov>=4.0.0; extra == "dev"
|
|
@@ -81,7 +81,7 @@ glaip_sdk/cli/slash/remote_runs_controller.py,sha256=a5X5rYgb9l6dHhvTewRUCj-hAo7
|
|
|
81
81
|
glaip_sdk/cli/slash/session.py,sha256=Zn2hXND_Tfameh_PI8g4VIMd7GPWxwhtPNMN9p6cF7M,65081
|
|
82
82
|
glaip_sdk/cli/slash/tui/__init__.py,sha256=oBUzeoslYwPKVlhqhgg4I7480b77vQNc9ec0NgdTC1s,977
|
|
83
83
|
glaip_sdk/cli/slash/tui/accounts.tcss,sha256=BCjIuTetmVjydv6DCliY38Cze2LUEu7IY44sL5nIuLU,1194
|
|
84
|
-
glaip_sdk/cli/slash/tui/accounts_app.py,sha256=
|
|
84
|
+
glaip_sdk/cli/slash/tui/accounts_app.py,sha256=pQYQz9ljPn4WcXEmyhMk3Lt1h_ZgrMvlYplxN3lbcy4,42411
|
|
85
85
|
glaip_sdk/cli/slash/tui/background_tasks.py,sha256=SAe1mV2vXB3mJcSGhelU950vf8Lifjhws9iomyIVFKw,2422
|
|
86
86
|
glaip_sdk/cli/slash/tui/clipboard.py,sha256=HL_RWIdONyRmDtTYuDzxJTS_mRcLxuR37Ac9Ug5nh40,4730
|
|
87
87
|
glaip_sdk/cli/slash/tui/context.py,sha256=XgHsXPl8LDDwIueP_jhP6xqpx_zHOk0FF19rWob_z5Q,3128
|
|
@@ -207,8 +207,8 @@ glaip_sdk/utils/rendering/steps/format.py,sha256=Chnq7OBaj8XMeBntSBxrX5zSmrYeGcO
|
|
|
207
207
|
glaip_sdk/utils/rendering/steps/manager.py,sha256=BiBmTeQMQhjRMykgICXsXNYh1hGsss-fH9BIGVMWFi0,13194
|
|
208
208
|
glaip_sdk/utils/rendering/viewer/__init__.py,sha256=XrxmE2cMAozqrzo1jtDFm8HqNtvDcYi2mAhXLXn5CjI,457
|
|
209
209
|
glaip_sdk/utils/rendering/viewer/presenter.py,sha256=mlLMTjnyeyPVtsyrAbz1BJu9lFGQSlS-voZ-_Cuugv0,5725
|
|
210
|
-
glaip_sdk-0.7.
|
|
211
|
-
glaip_sdk-0.7.
|
|
212
|
-
glaip_sdk-0.7.
|
|
213
|
-
glaip_sdk-0.7.
|
|
214
|
-
glaip_sdk-0.7.
|
|
210
|
+
glaip_sdk-0.7.9.dist-info/METADATA,sha256=Zv0LWJWtHBnmVcDY19GixzfzpVEIGpTUEQeqInAMd5E,8365
|
|
211
|
+
glaip_sdk-0.7.9.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
212
|
+
glaip_sdk-0.7.9.dist-info/entry_points.txt,sha256=NkhO6FfgX9Zrjn63GuKphf-dLw7KNJvucAcXc7P3aMk,54
|
|
213
|
+
glaip_sdk-0.7.9.dist-info/top_level.txt,sha256=td7yXttiYX2s94-4wFhv-5KdT0rSZ-pnJRSire341hw,10
|
|
214
|
+
glaip_sdk-0.7.9.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|