Skip to content

Commit

Permalink
tests: bing: Switch to the GPT-4 model as the default
Browse files Browse the repository at this point in the history
  • Loading branch information
prathamdby committed Mar 26, 2024
1 parent 1fbb9b4 commit 5ce4169
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_bing.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
# Copyright (c) 2024, YeetCode Developers <[email protected]>

from g4f.client import Client
from g4f.models import default
from g4f.models import gpt_4
from g4f.Provider import Bing


Expand All @@ -24,7 +24,7 @@ def generate_response() -> str:

try:
response = client.chat.completions.create(
model=default,
model=gpt_4,
messages=[
{"role": "user", "content": "Say hi, with your response starting with START and ending with END"}
],
Expand Down

0 comments on commit 5ce4169

Please sign in to comment.