Matthew Franglen
Matthew Franglen
This error occurs with zsh-syntax-highlighting and zsh-autosuggestions. The underlying problem appears to be the resolution of the filename itself. For zsh-syntax-highlighting the problem occurs here: https://github.com/zsh-users/zsh-syntax-highlighting/blob/1386f1213eb0b0589d73cd3cf7c56e6a972a9bfd/zsh-syntax-highlighting.zsh#L38-L43 This is then the...
It also fails with _No module named mysolr_. I believe that this actually relates to the `from solr_cli import __version__` line in setup.py. That file then imports `mysolr` and `pygments`,...
You are compiling the extension using old development headers. Try uninstalling the postgres 9.1 development headers and install the 9.3 headers instead.
Thank you. That's disappointing. Is there a way to index the data as GPU_IVF_PQ and then convert the index type to IVF_PQ?
Yes I did think about suggesting weighting the different vectors which could be achieved by applying a scalar factor to the distance, or by performing the linear mapping that you...
The interactivity is implemented with a custom tool defined [here](https://github.com/PrefectHQ/ControlFlow/blob/daf088335a1b8c86bdc8bab93814f0deb2604b1f/src/controlflow/tools/input.py#L34). This is added to the list of tools that a task (see [here](https://github.com/PrefectHQ/ControlFlow/blob/main/src/controlflow/tasks/task.py#L546)) or agent (see [here](https://github.com/PrefectHQ/ControlFlow/blob/main/src/controlflow/agents/agent.py#L199)) can use. You...
Some notes for myself mainly. If I make a mistake with these then feedback is appreciated: The Tool can return a ToolDefinition. The openai model maps these to the `tools`...
For reference this code works: ```python import controlflow as cf from pydantic import BaseModel class EmailClassification(BaseModel): content: str is_spam: bool emails = [ "Hello, I need an update on the...