snowglobe 0.4.0__tar.gz → 0.4.1__tar.gz
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.
- {snowglobe-0.4.0/src/snowglobe.egg-info → snowglobe-0.4.1}/PKG-INFO +3 -10
- {snowglobe-0.4.0 → snowglobe-0.4.1}/README.md +2 -9
- {snowglobe-0.4.0 → snowglobe-0.4.1}/pyproject.toml +1 -1
- {snowglobe-0.4.0 → snowglobe-0.4.1/src/snowglobe.egg-info}/PKG-INFO +3 -10
- {snowglobe-0.4.0 → snowglobe-0.4.1}/LICENSE +0 -0
- {snowglobe-0.4.0 → snowglobe-0.4.1}/setup.cfg +0 -0
- {snowglobe-0.4.0 → snowglobe-0.4.1}/src/snowglobe/client/__init__.py +0 -0
- {snowglobe-0.4.0 → snowglobe-0.4.1}/src/snowglobe/client/src/app.py +0 -0
- {snowglobe-0.4.0 → snowglobe-0.4.1}/src/snowglobe/client/src/cli.py +0 -0
- {snowglobe-0.4.0 → snowglobe-0.4.1}/src/snowglobe/client/src/cli_utils.py +0 -0
- {snowglobe-0.4.0 → snowglobe-0.4.1}/src/snowglobe/client/src/config.py +0 -0
- {snowglobe-0.4.0 → snowglobe-0.4.1}/src/snowglobe/client/src/models.py +0 -0
- {snowglobe-0.4.0 → snowglobe-0.4.1}/src/snowglobe/client/src/project_manager.py +0 -0
- {snowglobe-0.4.0 → snowglobe-0.4.1}/src/snowglobe/client/src/stats.py +0 -0
- {snowglobe-0.4.0 → snowglobe-0.4.1}/src/snowglobe/client/src/utils.py +0 -0
- {snowglobe-0.4.0 → snowglobe-0.4.1}/src/snowglobe.egg-info/SOURCES.txt +0 -0
- {snowglobe-0.4.0 → snowglobe-0.4.1}/src/snowglobe.egg-info/dependency_links.txt +0 -0
- {snowglobe-0.4.0 → snowglobe-0.4.1}/src/snowglobe.egg-info/entry_points.txt +0 -0
- {snowglobe-0.4.0 → snowglobe-0.4.1}/src/snowglobe.egg-info/requires.txt +0 -0
- {snowglobe-0.4.0 → snowglobe-0.4.1}/src/snowglobe.egg-info/top_level.txt +0 -0
- {snowglobe-0.4.0 → snowglobe-0.4.1}/tests/test_app.py +0 -0
- {snowglobe-0.4.0 → snowglobe-0.4.1}/tests/test_cli.py +0 -0
- {snowglobe-0.4.0 → snowglobe-0.4.1}/tests/test_config.py +0 -0
- {snowglobe-0.4.0 → snowglobe-0.4.1}/tests/test_heartbeat.py +0 -0
- {snowglobe-0.4.0 → snowglobe-0.4.1}/tests/test_utils.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: snowglobe
|
3
|
-
Version: 0.4.
|
3
|
+
Version: 0.4.1
|
4
4
|
Summary: client server for usage with snowglobe experiments
|
5
5
|
Author-email: Guardrails AI <contact@guardrailsai.com>
|
6
6
|
License: MIT License
|
@@ -49,21 +49,14 @@ The Snowglobe Connect SDK helps you connect your AI agents to Snowglobe. It send
|
|
49
49
|
|
50
50
|
## Installation
|
51
51
|
|
52
|
-
```bash
|
53
|
-
# Paste Guardrails Client or extract from guardrailsrc
|
54
|
-
export GUARDRAILS_TOKEN=$(cat ~/.guardrailsrc| awk -F 'token=' '{print $2}' | awk '{print $1}' | tr -d '\n')
|
55
|
-
```
|
56
|
-
|
57
52
|
```
|
58
53
|
# Install client
|
59
|
-
pip install -
|
60
|
-
--extra-index-url="https://pypi.org/simple" snowglobe-connect
|
54
|
+
pip install snowglobe-connect
|
61
55
|
```
|
62
56
|
|
63
57
|
If using uv, set the `--prerelease=allow` flag
|
64
58
|
```
|
65
|
-
pip install
|
66
|
-
--extra-index-url="https://pypi.org/simple" --prerelease=allow snowglobe-connect
|
59
|
+
uv pip install --prerelease=allow snowglobe-connect
|
67
60
|
```
|
68
61
|
|
69
62
|
|
@@ -4,21 +4,14 @@ The Snowglobe Connect SDK helps you connect your AI agents to Snowglobe. It send
|
|
4
4
|
|
5
5
|
## Installation
|
6
6
|
|
7
|
-
```bash
|
8
|
-
# Paste Guardrails Client or extract from guardrailsrc
|
9
|
-
export GUARDRAILS_TOKEN=$(cat ~/.guardrailsrc| awk -F 'token=' '{print $2}' | awk '{print $1}' | tr -d '\n')
|
10
|
-
```
|
11
|
-
|
12
7
|
```
|
13
8
|
# Install client
|
14
|
-
pip install -
|
15
|
-
--extra-index-url="https://pypi.org/simple" snowglobe-connect
|
9
|
+
pip install snowglobe-connect
|
16
10
|
```
|
17
11
|
|
18
12
|
If using uv, set the `--prerelease=allow` flag
|
19
13
|
```
|
20
|
-
pip install
|
21
|
-
--extra-index-url="https://pypi.org/simple" --prerelease=allow snowglobe-connect
|
14
|
+
uv pip install --prerelease=allow snowglobe-connect
|
22
15
|
```
|
23
16
|
|
24
17
|
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: snowglobe
|
3
|
-
Version: 0.4.
|
3
|
+
Version: 0.4.1
|
4
4
|
Summary: client server for usage with snowglobe experiments
|
5
5
|
Author-email: Guardrails AI <contact@guardrailsai.com>
|
6
6
|
License: MIT License
|
@@ -49,21 +49,14 @@ The Snowglobe Connect SDK helps you connect your AI agents to Snowglobe. It send
|
|
49
49
|
|
50
50
|
## Installation
|
51
51
|
|
52
|
-
```bash
|
53
|
-
# Paste Guardrails Client or extract from guardrailsrc
|
54
|
-
export GUARDRAILS_TOKEN=$(cat ~/.guardrailsrc| awk -F 'token=' '{print $2}' | awk '{print $1}' | tr -d '\n')
|
55
|
-
```
|
56
|
-
|
57
52
|
```
|
58
53
|
# Install client
|
59
|
-
pip install -
|
60
|
-
--extra-index-url="https://pypi.org/simple" snowglobe-connect
|
54
|
+
pip install snowglobe-connect
|
61
55
|
```
|
62
56
|
|
63
57
|
If using uv, set the `--prerelease=allow` flag
|
64
58
|
```
|
65
|
-
pip install
|
66
|
-
--extra-index-url="https://pypi.org/simple" --prerelease=allow snowglobe-connect
|
59
|
+
uv pip install --prerelease=allow snowglobe-connect
|
67
60
|
```
|
68
61
|
|
69
62
|
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|