nhaatj2804

Results 3 comments of nhaatj2804

Im came across this bug as well. ``` js_code = """ (async function () { let scrollDuration = 60 * 1000; // Total duration in milliseconds (e.g., 30 seconds) let...

``` async def main(): llm_strategy = LLMExtractionStrategy( provider="deepseek/deepseek-chat", api_token="sk-cd3f6b45062a45948db86107d5eca07d", schema=Product.model_json_schema(), extraction_type="schema", instruction=INSTRUCTION_TO_LLM, chunk_token_threshold=1000, overlap_rate=0.0, apply_chunking=True, input_format="markdown", extra_args={"temperature": 0.0, "max_tokens": 800}, ) crawl_config = CrawlerRunConfig( extraction_strategy=llm_strategy, cache_mode=CacheMode.BYPASS, process_iframes=False, remove_overlay_elements=True, exclude_external_links=True, )...

here my code By the way im using ubuntu 24.04