Find answers from the community

Updated 2 years ago

Is there a way to increase response

Is there a way to increase response length with GPTSimpleVectorIndex? I think the standard max is 256 tokens?
b
T
j
4 comments
Plain Text
      # define prompt helper
      # set maximum input size
      max_input_size = 8000
      num_output = 500
      max_chunk_overlap=50
      prompt_helper = PromptHelper(max_input_size, num_output, max_chunk_overlap)
Plain Text
      return GPTSimpleVectorIndex(
        documents, llm_predictor=llm_predictor, prompt_helper=prompt_helper
      )
Add a reply
Sign up and join the conversation on Discord