Skip to content

Commit

Permalink
default quickstart to gpt-4o-mini
Browse files Browse the repository at this point in the history
  • Loading branch information
parkervg committed Oct 18, 2024
1 parent ab8c907 commit 903bd46
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -167,8 +167,8 @@ from blendsql.models import TransformersLLM, OpenaiLLM
blendsql.config.set_async_limit(10)

# Load model
# model = OpenaiLLM("gpt-4o") # If you have a .env present with OpenAI API keys
model = TransformersLLM('Qwen/Qwen1.5-0.5B')
model = OpenaiLLM("gpt-4o-mini") # If you have a .env present with OpenAI API keys
# model = TransformersLLM('Qwen/Qwen1.5-0.5B')

# Prepare our local database
db = Pandas(
Expand Down
4 changes: 2 additions & 2 deletions docs/quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ from blendsql.models import TransformersLLM, OpenaiLLM
blendsql.config.set_async_limit(10)

# Load model
# model = OpenaiLLM("gpt-4o") # If you have a .env present with OpenAI API keys
model = TransformersLLM('Qwen/Qwen1.5-0.5B')
model = OpenaiLLM("gpt-4o-mini") # If you have a .env present with OpenAI API keys
# model = TransformersLLM('Qwen/Qwen1.5-0.5B')

# Prepare our local database
db = Pandas(
Expand Down

0 comments on commit 903bd46

Please sign in to comment.