biobootloader / wolverine

MIT License
5.21k stars 725 forks source link

Please add 3.5 #2

Closed huachuman closed 1 year ago

huachuman commented 1 year ago

I think 3.5 would be worth adding because even though it may not get things right as much as 4, it's still way cheaper and GPT-4 is still only available to a small number of people.

cat-stack-boop commented 1 year ago

Just get rid of the comment in the code? See here:

response = openai.ChatCompletion.create(

model="gpt-3.5-turbo",

    model="gpt-4",
    messages=[
        {
            "role": "user",
            "content": prompt,
        }
    ],
    temperature=1.0,
)

So make it:  response = openai.ChatCompletion.create(
   model="gpt-3.5-turbo",
    messages=[
        {
            "role": "user",
            "content": prompt,
        }
    ],
    temperature=1.0,
)
biobootloader commented 1 year ago

added!