Skip to content

Commit

Permalink
v0.0.3 RC
Browse files Browse the repository at this point in the history
- Dependencies update
- Added weekly dependabot checks
- Switched default OpenAI model to gpt-4-turbo
  • Loading branch information
matteocargnelutti committed May 13, 2024
1 parent 6d58252 commit 316a491
Show file tree
Hide file tree
Showing 4 changed files with 190 additions and 183 deletions.
7 changes: 7 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
version: 2
updates:
- package-ecosystem: "pip"
target-branch: "dependabot"
directory: "/"
schedule:
interval: "weekly"
2 changes: 1 addition & 1 deletion olaw/views/ui.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def get_root():

# Pick a default model
if "openai/gpt-4-turbo-preview" in available_models:
default_model = "openai/gpt-4-turbo-preview"
default_model = "openai/gpt-4-turbo"

if not default_model:
for model in available_models:
Expand Down
Loading

0 comments on commit 316a491

Please sign in to comment.