Magicen0722
Magicen0722
I noticed that in the crawled post data, the` comments` field does not match the `top level comments` and `replies`, while the top level comments seems to be limited to...
它最近似乎变成了一个Error? langchain版本:langchain-0.0.176 huggingface_hub.py https://github.com/hwchase17/langchain/blob/master/langchain/embeddings/huggingface_hub.py#L58 ``` from langchain.embeddings import HuggingFaceHubEmbeddings import os repo_id = "GanymedeNil/text2vec-large-chinese" hf = HuggingFaceHubEmbeddings( repo_id=repo_id, task="feature-extraction", huggingfacehub_api_token="", ) text = "text2vec模型的原理?" embeddings = hf.embed_query(text) print(embeddings) ``` ```...
## What happened? When I pass an URL to load a website, say, http://yoururl.com, it redirects to https://yoururl.com ``` options = ChromeOptions() options.add_argument('--ignore-certificate-errors') options.add_argument("--allow-running-insecure-content") options.add_argument('--ignore-ssl-errors') options.add_argument('--disable-web-security') driver = Chrome(options=options, use_subprocess=True,...