snowglobe 0.4.3__tar.gz → 0.4.5__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.
Files changed (25) hide show
  1. {snowglobe-0.4.3/src/snowglobe.egg-info → snowglobe-0.4.5}/PKG-INFO +3 -3
  2. {snowglobe-0.4.3 → snowglobe-0.4.5}/README.md +2 -2
  3. {snowglobe-0.4.3 → snowglobe-0.4.5}/pyproject.toml +1 -1
  4. {snowglobe-0.4.3 → snowglobe-0.4.5}/src/snowglobe/client/src/cli.py +5 -3
  5. {snowglobe-0.4.3 → snowglobe-0.4.5}/src/snowglobe/client/src/cli_utils.py +1 -1
  6. {snowglobe-0.4.3 → snowglobe-0.4.5/src/snowglobe.egg-info}/PKG-INFO +3 -3
  7. {snowglobe-0.4.3 → snowglobe-0.4.5}/tests/test_cli.py +1 -1
  8. {snowglobe-0.4.3 → snowglobe-0.4.5}/LICENSE +0 -0
  9. {snowglobe-0.4.3 → snowglobe-0.4.5}/setup.cfg +0 -0
  10. {snowglobe-0.4.3 → snowglobe-0.4.5}/src/snowglobe/client/__init__.py +0 -0
  11. {snowglobe-0.4.3 → snowglobe-0.4.5}/src/snowglobe/client/src/app.py +0 -0
  12. {snowglobe-0.4.3 → snowglobe-0.4.5}/src/snowglobe/client/src/config.py +0 -0
  13. {snowglobe-0.4.3 → snowglobe-0.4.5}/src/snowglobe/client/src/models.py +0 -0
  14. {snowglobe-0.4.3 → snowglobe-0.4.5}/src/snowglobe/client/src/project_manager.py +0 -0
  15. {snowglobe-0.4.3 → snowglobe-0.4.5}/src/snowglobe/client/src/stats.py +0 -0
  16. {snowglobe-0.4.3 → snowglobe-0.4.5}/src/snowglobe/client/src/utils.py +0 -0
  17. {snowglobe-0.4.3 → snowglobe-0.4.5}/src/snowglobe.egg-info/SOURCES.txt +0 -0
  18. {snowglobe-0.4.3 → snowglobe-0.4.5}/src/snowglobe.egg-info/dependency_links.txt +0 -0
  19. {snowglobe-0.4.3 → snowglobe-0.4.5}/src/snowglobe.egg-info/entry_points.txt +0 -0
  20. {snowglobe-0.4.3 → snowglobe-0.4.5}/src/snowglobe.egg-info/requires.txt +0 -0
  21. {snowglobe-0.4.3 → snowglobe-0.4.5}/src/snowglobe.egg-info/top_level.txt +0 -0
  22. {snowglobe-0.4.3 → snowglobe-0.4.5}/tests/test_app.py +0 -0
  23. {snowglobe-0.4.3 → snowglobe-0.4.5}/tests/test_config.py +0 -0
  24. {snowglobe-0.4.3 → snowglobe-0.4.5}/tests/test_heartbeat.py +0 -0
  25. {snowglobe-0.4.3 → snowglobe-0.4.5}/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
3
+ Version: 0.4.5
4
4
  Summary: client server for usage with snowglobe experiments
5
5
  Author-email: Guardrails AI <contact@guardrailsai.com>
6
6
  License: MIT License
@@ -51,12 +51,12 @@ The Snowglobe Connect SDK helps you connect your AI agents to Snowglobe. It send
51
51
 
52
52
  ```
53
53
  # Install client
54
- pip install snowglobe-connect
54
+ pip install snowglobe
55
55
  ```
56
56
 
57
57
  If using uv, set the `--prerelease=allow` flag
58
58
  ```
59
- uv pip install --prerelease=allow snowglobe-connect
59
+ uv pip install --prerelease=allow snowglobe
60
60
  ```
61
61
 
62
62
 
@@ -6,12 +6,12 @@ The Snowglobe Connect SDK helps you connect your AI agents to Snowglobe. It send
6
6
 
7
7
  ```
8
8
  # Install client
9
- pip install snowglobe-connect
9
+ pip install snowglobe
10
10
  ```
11
11
 
12
12
  If using uv, set the `--prerelease=allow` flag
13
13
  ```
14
- uv pip install --prerelease=allow snowglobe-connect
14
+ uv pip install --prerelease=allow snowglobe
15
15
  ```
16
16
 
17
17
 
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "snowglobe"
3
- version = "0.4.3"
3
+ version = "0.4.5"
4
4
  authors = [
5
5
  {name = "Guardrails AI", email = "contact@guardrailsai.com"}
6
6
  ]
@@ -40,7 +40,9 @@ from .project_manager import get_project_manager
40
40
  CONTROL_PLANE_URL = os.environ.get(
41
41
  "CONTROL_PLANE_URL", "https://api.snowglobe.guardrailsai.com"
42
42
  )
43
- UI_URL = os.environ.get("UI_URL", "https://snowglobe.guardrailsai.com")
43
+
44
+ UI_URL = os.environ.get("UI_URL", "https://snowglobe.so/app")
45
+
44
46
  SNOWGLOBE_AUTH_CONFIGURE_PORT = int(
45
47
  os.environ.get("SNOWGLOBE_AUTH_CONFIGURE_PORT", 9001)
46
48
  )
@@ -763,7 +765,7 @@ def start(
763
765
  app_id = agent_info.get("uuid")
764
766
  app_name = agent_info.get("name", "Application")
765
767
  if app_id:
766
- app_url = f"{UI_URL}/applications/{app_id}"
768
+ app_url = f"{UI_URL}/agents/{app_id}"
767
769
  console.print(
768
770
  "🔗 Agent connected! Go to your Snowglobe agent and kick off a simulation:"
769
771
  )
@@ -776,7 +778,7 @@ def start(
776
778
  app_id = agent_info.get("uuid")
777
779
  app_name = agent_info.get("name", "Application")
778
780
  if app_id:
779
- app_url = f"{UI_URL}/applications/{app_id}"
781
+ app_url = f"{UI_URL}/agents/{app_id}"
780
782
  console.print(
781
783
  f" - {app_name}: [link={app_url}]{app_url}[/link]"
782
784
  )
@@ -324,7 +324,7 @@ def select_stateful_interactive(
324
324
  info(
325
325
  "If your agent takes messages and completions on a single completion endpoint regardless of context, you can answer no to the following question."
326
326
  )
327
- if Confirm.ask("Would you like to create a new application?"):
327
+ if Confirm.ask("Would you like to initialize a stateful application?"):
328
328
  return True
329
329
  return False
330
330
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: snowglobe
3
- Version: 0.4.3
3
+ Version: 0.4.5
4
4
  Summary: client server for usage with snowglobe experiments
5
5
  Author-email: Guardrails AI <contact@guardrailsai.com>
6
6
  License: MIT License
@@ -51,12 +51,12 @@ The Snowglobe Connect SDK helps you connect your AI agents to Snowglobe. It send
51
51
 
52
52
  ```
53
53
  # Install client
54
- pip install snowglobe-connect
54
+ pip install snowglobe
55
55
  ```
56
56
 
57
57
  If using uv, set the `--prerelease=allow` flag
58
58
  ```
59
- uv pip install --prerelease=allow snowglobe-connect
59
+ uv pip install --prerelease=allow snowglobe
60
60
  ```
61
61
 
62
62
 
@@ -52,7 +52,7 @@ class TestCli(unittest.TestCase):
52
52
 
53
53
  # Check URL format
54
54
  self.assertIn(
55
- "snowglobe.guardrailsai.com/keys/client-connect",
55
+ "snowglobe.so/app/keys/client-connect",
56
56
  browser_url,
57
57
  )
58
58
  self.assertIn("port=9001", browser_url) # Default port
File without changes
File without changes
File without changes
File without changes