foshes
foshes
> Hi Will! Is there a method for tracking token usage as the program runs, specifically with a SQL agent? It's very difficult to identify the source of large token...
Hi! I'm encountering the same issue as David. Is there a method to track token usage as the program runs? I think it'd be very beneficial for me to monitor...
Did some testing and noticed this also occurs with table self-initialization. Example code: ```lua local p = {} function p.new(x: number?) return { x = x or 0 } end...