龙雀

Results 25 comments of 龙雀

I'm having the same connectivity issue with the NeoForged Maven repository. This seems to be caused by DNS cache pollution affecting maven.neoforged.net resolution on my server. This problem is common...

I can reproduce this issue. It appears to only occur on Windows. I am using the default `settings.py`: ```python from typing import AsyncIterator import scrapy from scrapy import Request class...

And this is the playwright version, works well on windows. ```python import asyncio from playwright.async_api import async_playwright async def main(): async with async_playwright() as pw: browser = await pw.chromium.launch() page...

> > ### Description > > ollama本地部署中,只能使用http://localhost:11434 地址,无法使用局域网下其他IP地址 > > ### Reproduction > > http://localhost:11434 > > ### Platform > > Windows > > ### System Version > > win10...

I use this simple tool to ignore images ```python class Html2MarkdownConverter: def __init__(self): self.converter = MarkItDown() def convert(self, html_str: str) -> str: return self.converter.convert_stream( io.BytesIO(html_str.encode("utf8")), file_extension=".html" ).text_content def convert_without_images(self, html_str:...