yumingmin88

Results 4 issues of yumingmin88

### crawl4ai version 0.5.0.post4 ### Expected Behavior I want to create a global variable for the browser instance, and then each time I call the crawl_url_content method to open a...

🐞 Bug
🩺 Needs Triage

该问题最初来源于:使用不同库(sentence_transformers等)加载bge-rerank-large,进行重排,发现结果都不相同(指重排后的顺序),其中一个原因是由于sentence_transformers会对输入去除空白符 使用以下脚本模拟一下sentence_transformers去除空白符的操作: ``` import torch from transformers import AutoModelForSequenceClassification, AutoTokenizer model_name = "/data/reranker/bge-reranker-large" tokenizer = AutoTokenizer.from_pretrained(model_name) model = AutoModelForSequenceClassification.from_pretrained(model_name) device = torch.device("cuda" if torch.cuda.is_available() else "cpu") model.to(device) def rerank(query, documents):...

### crawl4ai version 0.7.6 ### Expected Behavior Get dynamic web content ### Current Behavior Hello, here's the situation: I am using the following method to scrape web pages, but dynamic...

🐞 Bug
🩺 Needs Triage

### crawl4ai version 0.6.3 ### Expected Behavior The asynchronous generator works fine ### Current Behavior Hello, when I started a web service and ran the deep search function multiple times,...

🐞 Bug
🩺 Needs Triage