num_outputs
refers to in the PromptHelper
class? Is that the number of tokens allowed in the output? The name is throwing me offresult = ( self.max_input_size - num_prompt_tokens - self.num_output ) // num_chunks
num_output
just the other side of max_input_size
? Like maybe num_output
should be called max_output_size
?num_output
can't be calculated automatically? I'm just wishing it was optional because I don't really care how long the output is. I'd like it to be as long as it needs to be.