mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-08-28 05:27:24 +00:00
Add countTokens method to HumanRelayHandler class in human-relay.ts
This commit is contained in:
parent
626827ab3f
commit
b47de72cec
1 changed files with 3 additions and 0 deletions
|
|
@ -17,6 +17,9 @@ export class HumanRelayHandler implements ApiHandler, SingleCompletionHandler {
|
|||
constructor(options: ApiHandlerOptions) {
|
||||
this.options = options
|
||||
}
|
||||
countTokens(content: Array<Anthropic.Messages.ContentBlockParam>): Promise<number> {
|
||||
return Promise.resolve(0)
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a message processing flow, display a dialog box to request human assistance
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue