mirror of
https://github.com/coder/coder.git
synced 2026-06-03 21:18:24 +00:00
8369fa88fd
Two new columns added to aibridge_token_usages: - cache_read_input_tokens (BIGINT, default 0) - cache_write_input_tokens (BIGINT, default 0) Migration backfills existing rows by extracting values from the metadata JSONB column (cache_read_input, input_cached, prompt_cached for reads (max value selected since only 1 should be set), cache_creation_input for writes). All references to data from metadata were updated to reference new columns. No other changes then changing where data is extracted from. Requires aibridge library version bump to include: https://github.com/coder/aibridge/pull/229 Fixes: https://github.com/coder/aibridge/issues/150
4 lines
117 B
SQL
4 lines
117 B
SQL
ALTER TABLE aibridge_token_usages
|
|
DROP COLUMN cache_read_input_tokens,
|
|
DROP COLUMN cache_write_input_tokens;
|