feat: implemented extra log level for LLM token stream
This commit is contained in:
committed by
JobvAlewijk
parent
8149d67491
commit
c25073f20d
@@ -15,6 +15,7 @@ type Setter<T> = (value: T | ((prev: T) => T)) => void;
|
|||||||
*/
|
*/
|
||||||
const optionMapping = new Map([
|
const optionMapping = new Map([
|
||||||
["ALL", 0],
|
["ALL", 0],
|
||||||
|
["LLM", 9],
|
||||||
["DEBUG", 10],
|
["DEBUG", 10],
|
||||||
["INFO", 20],
|
["INFO", 20],
|
||||||
["WARNING", 30],
|
["WARNING", 30],
|
||||||
|
|||||||
@@ -19,7 +19,7 @@ import {cell, type Cell} from "../../utils/cellStore.ts";
|
|||||||
export type LogRecord = {
|
export type LogRecord = {
|
||||||
name: string;
|
name: string;
|
||||||
message: string;
|
message: string;
|
||||||
levelname: 'DEBUG' | 'INFO' | 'WARNING' | 'ERROR' | 'CRITICAL' | string;
|
levelname: 'LLM' | 'DEBUG' | 'INFO' | 'WARNING' | 'ERROR' | 'CRITICAL' | string;
|
||||||
levelno: number;
|
levelno: number;
|
||||||
created: number;
|
created: number;
|
||||||
relativeCreated: number;
|
relativeCreated: number;
|
||||||
|
|||||||
Reference in New Issue
Block a user