agentwatch-dev 0.1.0__tar.gz → 0.1.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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: agentwatch-dev
3
- Version: 0.1.0
3
+ Version: 0.1.1
4
4
  Summary: Predict when production AI agents degrade — before they visibly fail. Python SDK.
5
5
  Project-URL: Homepage, https://agentwatch.dev
6
6
  Author: AgentWatch
@@ -22,7 +22,7 @@ from typing import Any, Callable, Dict, Optional
22
22
 
23
23
  from .client import AgentWatchClient
24
24
 
25
- __version__ = "0.1.0"
25
+ __version__ = "0.1.1"
26
26
  __all__ = [
27
27
  "AgentWatchClient",
28
28
  "configure",
@@ -12,7 +12,7 @@ import threading
12
12
  import urllib.request
13
13
  from typing import Any, Dict
14
14
 
15
- SDK_VERSION = "0.1.0"
15
+ SDK_VERSION = "0.1.1"
16
16
 
17
17
 
18
18
  def post_trace(endpoint: str, api_key: str, payload: Dict[str, Any], timeout: float) -> None:
@@ -17,7 +17,7 @@ from typing import Any, Callable, Dict, List, Optional
17
17
  from . import _extract
18
18
  from ._transport import post_trace
19
19
 
20
- DEFAULT_ENDPOINT = "https://api.agentwatch.dev"
20
+ DEFAULT_ENDPOINT = "https://a-w.up.railway.app"
21
21
  DEFAULT_MAX_PREVIEW = 5000
22
22
  DEFAULT_TIMEOUT = 5.0 # seconds
23
23
  MAX_LATENCY_MS = 600_000
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "agentwatch-dev"
7
- version = "0.1.0"
7
+ version = "0.1.1"
8
8
  description = "Predict when production AI agents degrade — before they visibly fail. Python SDK."
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.8"
File without changes
File without changes