**kwargs
of LLM.complete ? Typically, I am trying to use some parameters on the fly, within the message
method such as LLM.complete(prompt=prompt, temperature=1.0, output_tokens=300)
etc., instead of defining the LLM object with these parameters. Is there a way to do so? I haven't been able to figure this out despite quite a bit of time on the matter.LLM.complete(prompt, generation_config = {'temperature: 1.0, 'other argument': something})
. What I was missing is the generation_config
keywork. Thank you for your help.