Text Generator

FREEMIUM
By lee101 | Updated a month ago | Text Analysis
Health Check

N/A

Followers: 0
Resources:
Product Website Terms of use
API Creator:
Rapid account: Lee 101
lee101
lee101
Log In to Rate API
Rating: 5 - Votes: 1

README

Generate text, create chat bots, perform question answering, classification, language translation, sentiment analysis, autocomplete, prediction across a variety of domains via ‘prompt engineering’, asking questions in a familiar way to human conversation.

Under the hood we use very large language models trained on broad human language.

  • control stopping criteria and cost
  • max_length for a maximum amount of tokens
  • max_sentences for setting a max number of sentences, good for conversational agents or when you know how many sentences should be generated
  • stopping_sequences a list of sequences that once generated signal the end of text generation, give some examples of when these should appear in your prompt, these wont be output at the end if used to stop.
  • control the variety of results
  • get more results with number_of_results
  • higher top_p, lower top_k for high variety/creativity
  • low top_p and high top_k for consistency
  • low temperature for consistency, high for creativity
  • when generating shorter sequences you may want to choose settings that give higher consistency and are more likely, when generating long sequences you may want to use settings that are give more surprise/creativity, defaults should work well for both.