feat: LLM logs types, API client, and i18n labels
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>master
parent
dafec2591b
commit
cbe1cd6507
@ -0,0 +1,7 @@
|
||||
import { api } from './client';
|
||||
import type { LlmCallLogEntry } from '~/types';
|
||||
|
||||
export const llmLogsApi = {
|
||||
getByJobId: (jobId: string): Promise<LlmCallLogEntry[]> =>
|
||||
api.get<LlmCallLogEntry[]>(`/llm-logs/${jobId}`),
|
||||
};
|
||||
Loading…
Reference in New Issue