Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
paths move from `/api/v1/data/packs/{id}/*` to
`/api/v1/data/catalog/{dataset_id}/*`.

### Removed

- **Three unfinished agentic tools removed before any release** (`convene_llm_council`,
`draft_care_action`, `generate_pas_payload`). They were imported but never added to the
served tools array, shipped without tests, CHANGELOG, or README, and were unreachable as
dead code. Two of them (`convene_llm_council`, `draft_care_action`) forward to the
upstream-data `/api/v1/score/council` and `/api/v1/actions/draft` endpoints, which call
frontier LLMs through OpenRouter — a provider with no HIPAA BAA — and the council endpoint
performs no DLP scrub on its input, so exposing them on a public MCP client would re-open
the PHI boundary the dataset tools were re-derived to close. Removed rather than registered;
git history retains the source if a properly bounded, tested version is wired in later.

### Added

- `UpstreamClientConfig` + `UPSTREAM_DATA_CONFIG`: the hardened API client is now
Expand Down
1 change: 0 additions & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ import {
import { getDentalPayerDrift } from './tools/get_dental_payer_drift.js';
import { getBenchmarkHistory, getBenchmarkLeaderboard, getModelScores } from './tools/benchmark.js';
import { getBenchmarkReport, runBenchmark, scoreClaim, synthesizeClaims } from './tools/claims.js';
import { conveneLlmCouncil, draftCareAction } from './tools/actions.js';

type ToolDefinition = {
name: string;
Expand Down
50 changes: 0 additions & 50 deletions src/tools/actions.ts

This file was deleted.

26 changes: 0 additions & 26 deletions src/tools/da_vinci.ts

This file was deleted.