interface LLMJobCost {
    costInSogni: string;
    costInSpark: string;
    costInToken: string;
    costInUSD: string;
    inputTokens: number;
    outputTokens: number;
}

Properties

costInSogni: string

Actual cost in SOGNI tokens (stringified BigNumber)

costInSpark: string

Actual cost in Spark tokens (stringified BigNumber)

costInToken: string

Actual cost in the requested token type (stringified BigNumber)

costInUSD: string

Actual cost in USD (stringified BigNumber)

inputTokens: number

Input tokens used

outputTokens: number

Output tokens generated