Merge pull request #1532 from CREDO23/imporve-artifacts-accessibility

[Feat] Artifacts sidebar for chat deliverables
This commit is contained in:
Rohan Verma 2026-06-25 13:31:45 -07:00 committed by GitHub
commit efa9efc80b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
40 changed files with 1306 additions and 43 deletions

View file

@ -1,6 +1,12 @@
import { atom } from "jotai";
export type RightPanelTab = "sources" | "report" | "editor" | "hitl-edit" | "citation";
export type RightPanelTab =
| "sources"
| "report"
| "editor"
| "hitl-edit"
| "citation"
| "artifacts";
export const rightPanelTabAtom = atom<RightPanelTab>("sources");