@meridiona/meridian-darwin-arm64 1.49.1 → 1.50.1
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.
- package/VERSION +1 -1
- package/bin/meridian +0 -0
- package/package.json +1 -1
- package/services/agents/pm_worklog_update/agents.py +1 -1
- package/services/agents/server.py +7 -3
- package/services/pyproject.toml +1 -1
- package/ui.tar.gz +0 -0
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.50.1
|
package/bin/meridian
CHANGED
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@meridiona/meridian-darwin-arm64",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.50.1",
|
|
4
4
|
"description": "Prebuilt Meridian app for macOS arm64 (daemon binary + dashboard + Python services). Installed via @meridiona/meridian.",
|
|
5
5
|
"homepage": "https://github.com/Meridiona/meridian",
|
|
6
6
|
"repository": {
|
|
@@ -94,11 +94,11 @@ def build_synth_agent(
|
|
|
94
94
|
# tools.get_earlier_today_summaries,
|
|
95
95
|
# ],
|
|
96
96
|
pre_hooks=[
|
|
97
|
-
PIIDetectionGuardrail(),
|
|
98
97
|
ProjectSecretGuard(),
|
|
99
98
|
SessionBundleSizeGuard(max_tokens=80_000),
|
|
100
99
|
],
|
|
101
100
|
post_hooks=[
|
|
101
|
+
PIIDetectionGuardrail(),
|
|
102
102
|
time_spent_sanity_check,
|
|
103
103
|
],
|
|
104
104
|
output_schema=JiraUpdate,
|
|
@@ -603,15 +603,19 @@ async def synthesise_worklog(req: _SynthWorklogRequest) -> dict:
|
|
|
603
603
|
try:
|
|
604
604
|
response = await run_in_threadpool(_run)
|
|
605
605
|
except Exception as exc: # noqa: BLE001 — never crash the shared server
|
|
606
|
-
last_detail = f"agent run
|
|
606
|
+
last_detail = f"agent run raised {type(exc).__name__}: {exc}"
|
|
607
607
|
log.warning("synthesise_worklog: attempt %d %s", attempt, last_detail)
|
|
608
608
|
continue
|
|
609
609
|
raw = getattr(response, "content", response)
|
|
610
|
+
if raw is None:
|
|
611
|
+
last_detail = "agent returned no content (guardrail likely blocked the run)"
|
|
612
|
+
log.warning("synthesise_worklog: attempt %d %s", attempt, last_detail)
|
|
613
|
+
continue
|
|
610
614
|
update = pm_workflow._coerce_jira(raw)
|
|
611
615
|
if update is not None:
|
|
612
616
|
break
|
|
613
|
-
last_detail = "agent output did not parse into a JiraUpdate"
|
|
614
|
-
log.warning("synthesise_worklog: attempt %d %s", attempt, last_detail)
|
|
617
|
+
last_detail = f"agent output did not parse into a JiraUpdate (raw type={type(raw).__name__})"
|
|
618
|
+
log.warning("synthesise_worklog: attempt %d %s | raw=%.200s", attempt, last_detail, str(raw))
|
|
615
619
|
|
|
616
620
|
if update is None:
|
|
617
621
|
raise HTTPException(
|
package/services/pyproject.toml
CHANGED
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "meridian-agents"
|
|
7
|
-
version = "1.
|
|
7
|
+
version = "1.50.1"
|
|
8
8
|
description = "Meridian agents — MLX classifier server and Jira worklog synthesis for meridian.db"
|
|
9
9
|
requires-python = ">=3.11"
|
|
10
10
|
authors = [{ name = "Meridiona" }]
|
package/ui.tar.gz
CHANGED
|
Binary file
|