From 1835dca8d2cb6b600c916ec979f938abbdef59b9 Mon Sep 17 00:00:00 2001 From: Manish Kumar Date: Sun, 9 Aug 2026 16:46:06 -0500 Subject: [PATCH] Fix stale omni_assistant references from OmniBioAgent rename MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The bio_agent plugin (formerly omni_assistant) was renamed on the backend (omnibioai repo: plugins/bio_agent/plugin.json now has slug "bio_agent", mount "/plugins/bio_agent/"), but this repo's Workbench launcher link and README docs were never updated to match. - src/ui/pages/Workbench.jsx: "Omni Assistant" label -> "OmniBioAgent" (matches Phase 1 display-name decision); url /_svc/workbench/plugins/omni_assistant/ -> .../plugins/bio_agent/. This was a dead link — the old slug is no longer mounted, only kept as a legacy read-fallback for historical run data. - README.md: two stale "Omni Assistant" / "Omni Assistant v2" mentions updated to "OmniBioAgent" / "OmniBioAgent v2". Rebuilt dist/ and dist/web/ (vite build / web:build) and confirmed the old omni_assistant string is gone from the compiled bundles and the new bio_agent/OmniBioAgent strings are present. dist/ is gitignored, so no bundle files are part of this commit. --- README.md | 4 ++-- src/ui/pages/Workbench.jsx | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index f7cd31e..2817272 100644 --- a/README.md +++ b/README.md @@ -354,7 +354,7 @@ Getting Started · Video Tutorials · Workbench Dashboard · Control Center · L API Gateway · Auth Service · Policy Engine · HPC Policy · Security Audit · OPA ### Core Platform (6 modules) -Home · OnboardAI · Omni Assistant · Job Monitor · Plugin Manager · Admin +Home · OnboardAI · OmniBioAgent · Job Monitor · Plugin Manager · Admin ### Workflows (6 modules) Workflow Runner · Workflow Builder · Agent Studio · Pipeline Dashboard · Multi-Agent Orchestrator · Workflow Compiler @@ -634,7 +634,7 @@ Reports are sent to our dashboard. Response within 24 hours during beta. Disable | v0.5.0-beta | ✅ Released | 225+ plugins, 36M-abstract RAG index, 1,120+ container images, full beta launch | | v0.6.0-beta | ✅ Released | Web version (`webstudio.omnibioai.org`), SSO/OAuth2 (Google/GitHub/Microsoft), Cloudflare Access, 800 ARM64 SIF images, 12,000+ tools, Hugging Face integration, Model Registry HF push button | | **v0.7.0** | ✅ **Current** | Unified License Key (one `OMNI-XXXX` key for web + desktop, auto-creates user, same JWT as OAuth login), `webstudio.omnibioai.org` fully working end-to-end, 12,110 tools (100+ new HTTP API tools), Tool Selection AI 57x faster with GPU-enabled Ollama (accuracy 0%→60%, Recall@K 60%→85%), 1,000 ARM64 SIF images, Control Center web service, Billing service integrated, **Admin Console** at `admin.omnibioai.org`, team expansion (Dr. Rajnish Kumar, Praveen C.V. Raghavulu) | -| **v0.8.0** | 🔜 Planned | **Enterprise Platform** — expand the ML portfolio to **20 trained ML models on Hugging Face**, HIPAA compliance reporting, SAML/enterprise SSO, multi-user workspaces, team management, usage analytics, mobile-responsive UI, and **Omni Assistant v2** (tool-aware responses, agentic workflow suggestions, multi-step reasoning, context-aware analysis) | +| **v0.8.0** | 🔜 Planned | **Enterprise Platform** — expand the ML portfolio to **20 trained ML models on Hugging Face**, HIPAA compliance reporting, SAML/enterprise SSO, multi-user workspaces, team management, usage analytics, mobile-responsive UI, and **OmniBioAgent v2** (tool-aware responses, agentic workflow suggestions, multi-step reasoning, context-aware analysis) | | **v0.9.0** | 🔜 Planned | **Enterprise Admin Console expansion** — advanced organization administration, enterprise governance, deeper billing and subscription management, advanced usage analytics, administrative workflows, platform operations, security administration, and enterprise-scale management capabilities | diff --git a/src/ui/pages/Workbench.jsx b/src/ui/pages/Workbench.jsx index 51dda9a..ae4effd 100644 --- a/src/ui/pages/Workbench.jsx +++ b/src/ui/pages/Workbench.jsx @@ -56,7 +56,7 @@ function buildCategories(BASE) { links: [ { label:"Home", url:"/_svc/workbench/", icon:"🏠", desc:"Dashboard" }, { label:"OnboardAI", url:"/_svc/workbench/plugins/onboardai/", icon:"🤖", desc:"AI developer tools" }, - { label:"Omni Assistant", url:"/_svc/workbench/plugins/omni_assistant/", icon:"💬", desc:"AI assistant" }, + { label:"OmniBioAgent", url:"/_svc/workbench/plugins/bio_agent/", icon:"💬", desc:"AI assistant" }, { label:"Job Monitor", url:"/_svc/workbench/plugins/job_monitor/", icon:"📊", desc:"Monitor jobs" }, { label:"Plugin Manager", url:"/_svc/workbench/plugins/plugin_manager/", icon:"🔌", desc:"Manage plugins" }, { label:"Admin", url:"/_svc/workbench/admin/", icon:"⚙️", desc:"Django admin" },