summaryrefslogtreecommitdiffstats
path: root/g4f/Provider/PerplexityAi.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/PerplexityAi.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/PerplexityAi.py')
-rw-r--r--g4f/Provider/PerplexityAi.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/g4f/Provider/PerplexityAi.py b/g4f/Provider/PerplexityAi.py
index c0b2412e..03353a95 100644
--- a/g4f/Provider/PerplexityAi.py
+++ b/g4f/Provider/PerplexityAi.py
@@ -4,7 +4,8 @@ import time
from ..typing import CreateResult, Messages
from .base_provider import BaseProvider
-from .helper import WebDriver, WebDriverSession, format_prompt
+from .helper import format_prompt
+from .webdriver import WebDriver, WebDriverSession
class PerplexityAi(BaseProvider):
url = "https://www.perplexity.ai"
@@ -20,12 +21,12 @@ class PerplexityAi(BaseProvider):
stream: bool,
proxy: str = None,
timeout: int = 120,
- web_driver: WebDriver = None,
+ webdriver: WebDriver = None,
virtual_display: bool = True,
copilot: bool = False,
**kwargs
) -> CreateResult:
- with WebDriverSession(web_driver, "", virtual_display=virtual_display, proxy=proxy) as driver:
+ with WebDriverSession(webdriver, "", virtual_display=virtual_display, 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