summaryrefslogtreecommitdiffstats
path: root/g4f/Provider/TalkAi.py
diff options
context:
space:
mode:
authorHeiner Lohaus <hlohaus@users.noreply.github.com>2023-11-20 14:00:40 +0100
committerHeiner Lohaus <hlohaus@users.noreply.github.com>2023-11-20 14:00:40 +0100
commit08e308348b2825f4dfe309158c25a1d55ac45271 (patch)
tree1b9c5d181352cfc5e8c339b2bba84cc9a468238d /g4f/Provider/TalkAi.py
parentAdd auto support params method (diff)
downloadgpt4free-08e308348b2825f4dfe309158c25a1d55ac45271.tar
gpt4free-08e308348b2825f4dfe309158c25a1d55ac45271.tar.gz
gpt4free-08e308348b2825f4dfe309158c25a1d55ac45271.tar.bz2
gpt4free-08e308348b2825f4dfe309158c25a1d55ac45271.tar.lz
gpt4free-08e308348b2825f4dfe309158c25a1d55ac45271.tar.xz
gpt4free-08e308348b2825f4dfe309158c25a1d55ac45271.tar.zst
gpt4free-08e308348b2825f4dfe309158c25a1d55ac45271.zip
Diffstat (limited to 'g4f/Provider/TalkAi.py')
-rw-r--r--g4f/Provider/TalkAi.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/g4f/Provider/TalkAi.py b/g4f/Provider/TalkAi.py
index 20ba65b5..0edd9f6b 100644
--- a/g4f/Provider/TalkAi.py
+++ b/g4f/Provider/TalkAi.py
@@ -4,7 +4,7 @@ import time, json, time
from ..typing import CreateResult, Messages
from .base_provider import BaseProvider
-from .helper import WebDriver, WebDriverSession
+from .webdriver import WebDriver, WebDriverSession
class TalkAi(BaseProvider):
url = "https://talkai.info"
@@ -19,10 +19,10 @@ class TalkAi(BaseProvider):
messages: Messages,
stream: bool,
proxy: str = None,
- web_driver: WebDriver = None,
+ webdriver: WebDriver = None,
**kwargs
) -> CreateResult:
- with WebDriverSession(web_driver, "", virtual_display=True, proxy=proxy) as driver:
+ with WebDriverSession(webdriver, "", virtual_display=True, proxy=proxy) as driver:
from selenium.webdriver.common.by import By
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.support import expected_conditions as EC