Alexander Crössmann
Alexander Crössmann
I run pylyzer in an activated poetry environment. It even marks packages form the standard library as errors. ```Error[#0506]: File aigateway.py, line 1, .Template 1 | from string import Template...
### LanceDB version v0.12.0 ### What happened? db = lancedb.connect("my_db") df = db.open_table("my_table").to_polars().collect() With polars version 1.4.1 installed, this returns the following error: `polars.exceptions.ComputeError: TypeError: _scan_pyarrow_dataset_impl() got multiple values for...
I have a simple client demo: ```python from fastmcp import Client import asyncio async def main(): async with Client("mcp_server.py") as client: tools = await client.list_tools() print(f"Available tools: {tools}") asyncio.run(main()) ```...