Code Monkey home page Code Monkey logo

Comments (3)

a3957273 avatar a3957273 commented on July 19, 2024

We have an internal truncateRequest function to resolve this on our instance. It tries to take as many tokens as possible up until about half the token limit. This is super simple implementation that we threw together in under an hour.

func getSubstring(message string, characters int) string {
	if len(message) < characters {
		return message
	}
	return message[:characters/2] + message[len(message)-characters/2:]
}

func (s *OpenAI) truncateRequest(request openaiClient.ChatCompletionRequest) openaiClient.ChatCompletionRequest {
	var messages []openaiClient.ChatCompletionMessage
	token_count := 0
	limit := s.TokenLimit() / 2

	for i := len(request.Messages) - 1; i >= 0; i-- {
		message := request.Messages[i]

		// Add a few for the role, etc.
		tokens := s.CountTokens(message.Content) + 10

		// Can we fit the entire message in the window?
		if token_count+tokens < limit {
			token_count += tokens
			messages = append([]openaiClient.ChatCompletionMessage{message}, messages...)
			continue
		}

		// We can't fit the message in, so just include the start and the end
		remaining := limit - token_count
		characters := remaining * 4 // Estimate 4 characters per token

		message.Content = getSubstring(message.Content, characters)
		messages = append(messages, message)
		break
	}

	request.Messages = messages
	return request
}

from mattermost-plugin-ai.

crspeller avatar crspeller commented on July 19, 2024

This makes a lot of sense as it's a pretty bad experience when you run oft of context at the moment. The annoying part is (at least last time I checked) there is no precise token counting library in Go.

from mattermost-plugin-ai.

a3957273 avatar a3957273 commented on July 19, 2024

We've had a lot of success with fairly basic heuristics. We've generated millions of values and using the existing built-in token counter has worked every time. I realise we're possibly losing a small amount of the context window, but the trade-off is worthwhile for us.

from mattermost-plugin-ai.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.