Token count and time spent thinking #12
Replies: 2 comments
three important files // src/hooks/useCodexEvents.ts
case 'token_count':
console.log(msg)
break;// src/types/codex.ts
export type EventMsg =
| {
"cached_input_tokens": null,
"input_tokens": null,
"output_tokens": null,
"reasoning_output_tokens": null,
"total_tokens": null,
"type": "token_count"
}
Tip Maybe you can create a issue to see who can help |
0 replies
|
All these features are now fully implemented. |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Is there a way to see the token count of your current conversation? Also, is there a way to see how long the model took while thinking?
All reactions