probe-research 0.6.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.
- probe/__init__.py +31 -0
- probe/_generated/__init__.py +0 -0
- probe/_generated/models.py +1189 -0
- probe/cli/__init__.py +16 -0
- probe/cli/main.py +1266 -0
- probe/client.py +5 -0
- probe/config.py +13 -0
- probe/connectors/__init__.py +2 -0
- probe/connectors/harbor.py +289 -0
- probe/errors.py +3 -0
- probe/mcp/__init__.py +6 -0
- probe/mcp/contract.py +95 -0
- probe/mcp/server.py +380 -0
- probe/mcp/service.py +537 -0
- probe/mcp/source.py +209 -0
- probe/models.py +112 -0
- probe/run.py +5 -0
- probe/sdk/__init__.py +23 -0
- probe/sdk/assets.py +169 -0
- probe/sdk/client.py +727 -0
- probe/sdk/config.py +118 -0
- probe/sdk/defaults.py +98 -0
- probe/sdk/device.py +164 -0
- probe/sdk/errors.py +94 -0
- probe/sdk/events.py +102 -0
- probe/sdk/run.py +486 -0
- probe/sdk/sessions.py +156 -0
- probe/sdk/snapshot.py +145 -0
- probe/sdk/spool.py +86 -0
- probe/sdk/transport.py +209 -0
- probe/snapshot.py +5 -0
- probe/spool.py +5 -0
- probe/transport.py +5 -0
- probe_research-0.6.0.data/data/share/probe-research/skills/manage-research-asset/SKILL.md +16 -0
- probe_research-0.6.0.data/data/share/probe-research/skills/manage-research-asset/agents/openai.yaml +4 -0
- probe_research-0.6.0.data/data/share/probe-research/skills/publish-experiment/SKILL.md +18 -0
- probe_research-0.6.0.data/data/share/probe-research/skills/publish-experiment/agents/openai.yaml +4 -0
- probe_research-0.6.0.data/data/share/probe-research/skills/track-experiment/SKILL.md +16 -0
- probe_research-0.6.0.data/data/share/probe-research/skills/track-experiment/agents/openai.yaml +4 -0
- probe_research-0.6.0.dist-info/METADATA +308 -0
- probe_research-0.6.0.dist-info/RECORD +43 -0
- probe_research-0.6.0.dist-info/WHEEL +4 -0
- probe_research-0.6.0.dist-info/entry_points.txt +4 -0
probe/__init__.py
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
"""probe - CLI + SDK client for Probe Research (experiment tracking).
|
|
2
|
+
|
|
3
|
+
Quick start (SDK):
|
|
4
|
+
import probe
|
|
5
|
+
client = probe.Client() # resolves token from env / `probe login`
|
|
6
|
+
run = client.run() # no token -> one-time browser approval (TTY);
|
|
7
|
+
# experiment/name/hypothesis default from context
|
|
8
|
+
run.log({"loss": 0.42, "dockq": 0.71}, step=42)
|
|
9
|
+
run.finish()
|
|
10
|
+
"""
|
|
11
|
+
|
|
12
|
+
from __future__ import annotations
|
|
13
|
+
|
|
14
|
+
from importlib import metadata as _metadata
|
|
15
|
+
|
|
16
|
+
from . import errors
|
|
17
|
+
from .sdk import Client, Run, Settings, resolve
|
|
18
|
+
|
|
19
|
+
__all__ = ["Client", "Run", "Settings", "resolve", "errors", "__version__"]
|
|
20
|
+
|
|
21
|
+
# The distribution name, not the import name (`probe`). Renamed from `probe-agent` on
|
|
22
|
+
# 2026-07-15: that name is an unrelated project on PyPI that we never owned, so
|
|
23
|
+
# `pip install probe-agent` fetched a stranger's package. Keep this in step with
|
|
24
|
+
# `[project].name` in pyproject.toml — a mismatch is silent, and degrades `probe
|
|
25
|
+
# --version` to the dev fallback below.
|
|
26
|
+
_DISTRIBUTION = "probe-research"
|
|
27
|
+
|
|
28
|
+
try: # the installed dist is the single source of version truth (pyproject)
|
|
29
|
+
__version__ = _metadata.version(_DISTRIBUTION)
|
|
30
|
+
except _metadata.PackageNotFoundError: # running from a source tree
|
|
31
|
+
__version__ = "0.0.0.dev0"
|
|
File without changes
|