mirror of
https://gitee.com/wanwujie/sub2api
synced 2026-04-03 23:12:14 +08:00
5 lines
232 B
MySQL
5 lines
232 B
MySQL
|
|
-- Add reasoning_effort field to usage_logs for OpenAI/Codex requests.
|
||
|
|
-- This stores the request's reasoning effort level (e.g. low/medium/high/xhigh).
|
||
|
|
ALTER TABLE usage_logs ADD COLUMN IF NOT EXISTS reasoning_effort VARCHAR(20);
|
||
|
|
|