@gair/codex-med 0.1.1 → 0.1.2

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 (2) hide show
  1. package/README.md +4 -2
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -1,7 +1,7 @@
1
1
  <p align="center"><strong>codex-med</strong> — a medical-domain coding agent built on top of OpenAI's Codex CLI.</p>
2
2
 
3
3
  <p align="center">
4
- Adds biomedical tools (UniProt / GenBank / PDB lookup, antibody training database queries, planned external model gateway) on top of the upstream Codex CLI.
4
+ Adds biomedical tools (UniProt / GenBank / PDB lookup, antibody training database queries, vector knowledge search, external model gateway support) on top of the upstream Codex CLI.
5
5
  </p>
6
6
 
7
7
  ---
@@ -34,7 +34,8 @@ This is a fork; everything in the upstream README about agents, sandboxing, MCP
34
34
 
35
35
  - **Built-in biomedical lookup tools** — fetch UniProt entries, GenBank records, PDB structures, and search UniProt directly from the agent loop
36
36
  - **Antibody training database tool** — read-only SQL queries over a local SQLite database (`training_ready_v1.sqlite`); see `docs/` for schema
37
- - **External model gateway integration** *(planned)* — see [docs/model-integration.md](docs/model-integration.md) for the design and onboarding guide for connecting self-hosted models (affinity prediction, structure prediction, ADMET, etc.) via MCP
37
+ - **Vector knowledge search tool** — search a Qdrant-backed medical vector knowledge collection directly from Codex with `search_vector_knowledge`; see [docs/vector-knowledge-tool.md](docs/vector-knowledge-tool.md)
38
+ - **External model gateway integration** — connect self-hosted prediction models (DLP-Affinity, structure prediction, ADMET, etc.) through the MCP gateway documented in [docs/model-integration.md](docs/model-integration.md)
38
39
 
39
40
  ---
40
41
 
@@ -55,6 +56,7 @@ The binary lands at `codex-rs/target/release/codex`. To package it as an npm tar
55
56
  ## Docs
56
57
 
57
58
  - [Model integration guide](docs/model-integration.md) — how to plug self-hosted prediction models into the agent
59
+ - [Vector knowledge tool](docs/vector-knowledge-tool.md) — how to configure the built-in vector database search tool
58
60
  - [Configuration](docs/config.md)
59
61
  - [Contributing](docs/contributing.md)
60
62
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gair/codex-med",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "Codex CLI for medical domain agents (fork of OpenAI Codex CLI).",
5
5
  "license": "Apache-2.0",
6
6
  "bin": {
@@ -20,6 +20,6 @@
20
20
  },
21
21
  "packageManager": "pnpm@10.33.0+sha512.10568bb4a6afb58c9eb3630da90cc9516417abebd3fabbe6739f0ae795728da1491e9db5a544c76ad8eb7570f5c4bb3d6c637b2cb41bfdcdb47fa823c8649319",
22
22
  "optionalDependencies": {
23
- "@gair/codex-med-linux-x64": "npm:@gair/codex-med@0.1.1-linux-x64"
23
+ "@gair/codex-med-linux-x64": "npm:@gair/codex-med@0.1.2-linux-x64"
24
24
  }
25
25
  }