Skip to content

Commit

Permalink
add gpt 4 turbo and preview versions
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexLamson committed Apr 14, 2024
1 parent 3fbc3bd commit 32c1b50
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions utilities.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,12 @@ def init_props():
name="GPT Model",
description="Select the GPT model to use",
items=[
("gpt-4-turbo-preview", "GPT-4 Turbo Preview (powerful, expensive)", "Use GPT-4 Turbo Preview"),
("gpt-4-turbo", "GPT-4 Turbo (powerful, expensive)", "Use GPT-4 Turbo"),
("gpt-4", "GPT-4 (powerful, expensive)", "Use GPT-4"),
("gpt-3.5-turbo", "GPT-3.5 Turbo (less powerful, cheaper)", "Use GPT-3.5 Turbo"),
("gpt-3.5-turbo", "GPT-3.5 Turbo (weaker, cheaper)", "Use GPT-3.5 Turbo"),
],
default="gpt-4",
default="gpt-4-turbo",
)
bpy.types.Scene.gpt4_chat_input = bpy.props.StringProperty(
name="Message",
Expand Down

0 comments on commit 32c1b50

Please sign in to comment.