AnalogCyan / itadakimasu

Re-defined variable from outer scope PYL-W0621
Anti-pattern
Major
5 months agoa year old
Redefining name 'response' from outer scope (line 22)
 49        + ingredients
 50    )
 51
 52    response = openai.ChatCompletion.create( 53        model="gpt-3.5-turbo",
 54        messages=[{"role": "system", "content": prompt}],
 55        max_tokens=4096 - len(prompt),