Skip to content

Commit 5cae614

Browse files
committed
Make FakeGpt default provider
1 parent 5b628ab commit 5cae614

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/python-package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,4 +39,4 @@ jobs:
3939
- name: Test with Unittest
4040
run: |
4141
python -m unittest discover -s tests -p 'test_utils.py' -f -v
42-
python -m unittest discover -s tests -p 'test_leo.py' -f -v
42+
python -m unittest discover -s tests -p 'test_gpt4free.py' -f -v

src/pytgpt/gpt4free/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
class GPT4FREE(Provider):
2727
def __init__(
2828
self,
29-
provider: str = "Aura",
29+
provider: str = "FakeGpt",
3030
is_conversation: bool = True,
3131
auth: str = None,
3232
max_tokens: int = 600,

0 commit comments

Comments
 (0)