Replaces every em-dash and en-dash with regular ASCII hyphens across comments, JSX strings, and dev-facing logs. Mostly cosmetic but stops the inconsistent mix that crept in over the last few months (some files used em-dashes in comments, others didn't, some used both). Bundles two small dashboard-layout tweaks that touch a couple of already-modified files: - (dashboard)/layout.tsx main padding goes from p-6 to pt-3 px-6 pb-6 so page content sits closer to the topbar. - Sidebar now receives the ports list it needs for the footer port switcher. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
51 lines
2.0 KiB
TypeScript
51 lines
2.0 KiB
TypeScript
/**
|
|
* AI usage ledger.
|
|
*
|
|
* Every server-side AI provider call records one row here so admins can
|
|
* audit spend per port, per feature, per user. Per-port budgets (stored
|
|
* in `system_settings` under `ai.budget`) read this table to enforce
|
|
* soft warnings and hard caps.
|
|
*
|
|
* Token-denominated rather than dollar-denominated so the cap survives
|
|
* model price changes - and it's the unit both OpenAI and Anthropic
|
|
* SDKs return in `response.usage`.
|
|
*/
|
|
|
|
import { pgTable, text, timestamp, integer, index } from 'drizzle-orm/pg-core';
|
|
|
|
import { ports } from './ports';
|
|
import { user } from './users';
|
|
|
|
export const aiUsageLedger = pgTable(
|
|
'ai_usage_ledger',
|
|
{
|
|
id: text('id')
|
|
.primaryKey()
|
|
.$defaultFn(() => crypto.randomUUID()),
|
|
portId: text('port_id')
|
|
.notNull()
|
|
.references(() => ports.id, { onDelete: 'cascade' }),
|
|
/** Optional - system-initiated calls (e.g. scheduled summarizers) won't have a user. */
|
|
userId: text('user_id').references(() => user.id, { onDelete: 'set null' }),
|
|
/** Stable feature key: 'ocr', 'summary', 'embedding', 'reply_draft', etc. */
|
|
feature: text('feature').notNull(),
|
|
/** 'openai' | 'claude' | 'tesseract' (free, recorded for parity). */
|
|
provider: text('provider').notNull(),
|
|
model: text('model').notNull(),
|
|
inputTokens: integer('input_tokens').notNull().default(0),
|
|
outputTokens: integer('output_tokens').notNull().default(0),
|
|
/** input + output. Indexed and used for budget rollup queries. */
|
|
totalTokens: integer('total_tokens').notNull().default(0),
|
|
/** Provider-side request id for cross-referencing with provider logs. */
|
|
requestId: text('request_id'),
|
|
createdAt: timestamp('created_at', { withTimezone: true }).notNull().defaultNow(),
|
|
},
|
|
(table) => [
|
|
index('idx_ai_usage_port_created').on(table.portId, table.createdAt),
|
|
index('idx_ai_usage_port_feature_created').on(table.portId, table.feature, table.createdAt),
|
|
],
|
|
);
|
|
|
|
export type AiUsageRow = typeof aiUsageLedger.$inferSelect;
|
|
export type NewAiUsageRow = typeof aiUsageLedger.$inferInsert;
|