mirror of
https://github.com/coder/coder.git
synced 2026-06-02 20:48:20 +00:00
365de3e367
Depends on https://github.com/coder/aibridge/pull/203 Closes https://github.com/coder/internal/issues/1337 --------- Signed-off-by: Danny Kopping <danny@coder.com>
11 lines
376 B
SQL
11 lines
376 B
SQL
CREATE TABLE aibridge_model_thoughts (
|
|
interception_id UUID NOT NULL,
|
|
content TEXT NOT NULL,
|
|
metadata jsonb,
|
|
created_at TIMESTAMPTZ NOT NULL
|
|
);
|
|
|
|
COMMENT ON TABLE aibridge_model_thoughts IS 'Audit log of model thinking in intercepted requests in AI Bridge';
|
|
|
|
CREATE INDEX idx_aibridge_model_thoughts_interception_id ON aibridge_model_thoughts(interception_id);
|