Skip to content

Commit

Permalink
Update model to gpt-4o
Browse files Browse the repository at this point in the history
  • Loading branch information
brendancsmith committed Aug 27, 2024
1 parent 86de957 commit e89e7e9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
4 changes: 2 additions & 2 deletions config.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ def __init__(self, *args, **kwargs):
def __getattr__(self, item):
try:
return self._data[item]
except KeyError:
raise AttributeError(f"'AttrDict' object has no attribute '{item}'")
except KeyError as e:
raise AttributeError(f"'AttrDict' object has no attribute '{item}'") from e

def __setattr__(self, key, value):
# self._data[key] = value
Expand Down
3 changes: 1 addition & 2 deletions config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
experts = 10

[openai]
# model = "gpt-4-turbo-2024-04-09"
model = "gpt-3.5-turbo"
model = "gpt-4o"
temperature = 0.7
timeout = 60 # seconds

0 comments on commit e89e7e9

Please sign in to comment.