summaryrefslogtreecommitdiffstats
path: root/g4f/Provider/AItianhuSpace.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/AItianhuSpace.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/AItianhuSpace.py')
-rw-r--r--g4f/Provider/AItianhuSpace.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/g4f/Provider/AItianhuSpace.py b/g4f/Provider/AItianhuSpace.py
index fabe6b47..95386e8e 100644
--- a/g4f/Provider/AItianhuSpace.py
+++ b/g4f/Provider/AItianhuSpace.py
@@ -5,7 +5,8 @@ import random
from ..typing import CreateResult, Messages
from .base_provider import BaseProvider
-from .helper import WebDriver, WebDriverSession, format_prompt, get_random_string
+from .helper import format_prompt, get_random_string
+from .webdriver import WebDriver, WebDriverSession
from .. import debug
class AItianhuSpace(BaseProvider):
@@ -24,7 +25,7 @@ class AItianhuSpace(BaseProvider):
domain: str = None,
proxy: str = None,
timeout: int = 120,
- web_driver: WebDriver = None,
+ webdriver: WebDriver = None,
headless: bool = True,
**kwargs
) -> CreateResult:
@@ -39,7 +40,7 @@ class AItianhuSpace(BaseProvider):
url = f"https://{domain}"
prompt = format_prompt(messages)
- with WebDriverSession(web_driver, "", headless=headless, proxy=proxy) as driver:
+ with WebDriverSession(webdriver, "", headless=headless, 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