clayscode
clayscode
Is this referring to this? https://github.com/Velocidex/velociraptor/blob/master/vql/server/search.go
Also running into this same issue. This library looked promising but not entirely sure if it's maintained anymore
Perhaps just scope.Warn then? Will have to slowly comb through everything to figure out what warrants halting the collection, but marking errors as WARN for now at least indicates something...
For most of the calls to scope.Log, it's because there's an error, but sometimes that's not the case. It'd be helpful to be able to differentiate between the two by...
Just adding a +1 that I also experience this issue with LibreChat, Llama.cpp, and Qwen. Switched to Ollama and no longer have the same issue. I'd much rather use llama.cpp...
Testing this a bit - string parameters work but optional fields or integers seem to fail: ```python class QueryInput(BaseModel): query: str = Field(..., description="Query to run") @mcp.tool() async def search(request:...
Patching https://github.com/ggml-org/llama.cpp/blob/b3e16665e14032d1276f9d0263acef8321b6f518/common/json-schema-to-grammar.cpp#L800 with ```c++ json schema_type = schema.contains("type") ? schema["type"] : "null"; ``` allows the tool calls to run. However, for some strange reason, at least in FastMCP, there is...