Nutlope / twitterbio

Generate your Twitter bio with Mixtral and GPT-3.5.
https://www.twitterbio.io
MIT License
1.66k stars 465 forks source link

Word Limit #37

Open timothynn opened 1 year ago

timothynn commented 1 year ago

The bio generator tool is so good (5 star) but Twitter has a word limit of 160 words. How can you resolve this issue?

walter-grace commented 1 year ago

You need to add more tokens, const payload: OpenAIStreamPayload = { model: "gpt-3.5-turbo", messages: [{ role: "user", content: prompt }], temperature: 0.7, top_p: 1, frequency_penalty: 0, presence_penalty: 0, max_tokens: 800, stream: true, n: 1, }; change the max_tokens part