Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add tokenizer , #73

Open
3400442579 opened this issue Jun 19, 2024 · 1 comment
Open

add tokenizer , #73

3400442579 opened this issue Jun 19, 2024 · 1 comment
Labels
enhancement New feature or request

Comments

@3400442579
Copy link

var chatMessages= new ChatMessage[] {
ChatMessage.CreateUserMessage(cont)
}

int tokenCount=tokenizer (chatMessages); //

ChatCompletion completion = await _sdk.GetChatClient("gpt-4")
.CompleteChatAsync(
new ChatMessage[] {
ChatMessage.CreateUserMessage(cont)
}
, new OpenAI.Chat.ChatCompletionOptions
{
MaxTokens = 8192 - tokenCount
}
);

@trrwilson trrwilson added the enhancement New feature or request label Jun 19, 2024
@StephenHodgson
Copy link

Personally I think a better solution is to have an endpoint that tokenizes for you.

openai/openai-openapi#205

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

3 participants