Skip to content

Latest commit

 

History

History
63 lines (37 loc) · 2.72 KB

resources.md

File metadata and controls

63 lines (37 loc) · 2.72 KB

GPT3 101

Official Docs & paper

Transformers

GPT3 Projects & Prompts

Stray articles/write-ups

APIFlags

Tweak individual requests

item Example/Default Remarks
engine davinci Engine id (there are 4 main engines ada/babbage/curie/davinci)
prompt // Input which will be "completed" by the system
max_tokens 20 How many "tokens" (words or portions of words) to return in a completion, max of 512
temperature 0.5 0-1, 0 means more predictable and more to 1 is more random
top_p // 0-1, represents a percentage threshold for values it will accept. Use this OR temperature
n // Number of choices to create for each prompt
stream // True/false
logprobs // Return n most likely tokens
stop \n Stopping character, won't proceed beyond