Felix Hummel

Results 14 comments of Felix Hummel

It seems to me that [Network.containers](https://github.com/docker/docker-py/blob/923e067dddc3d4b86e4e620a99fcdcdafbd17a98/docker/models/networks.py#L18-L27) looks for every container ID that it finds on the network then does a GET request for more detail. While it is still iterating...

# Workaround Instead of doing ```python network = client.networks.get('my-network') containers = network.containers ``` You can do ```python containers = client.containers.list(filters={'network': 'my-network'}) ``` At least that's what [worked for me](https://gitlab.com/hukudo/ingress/-/commit/4284173c423091bf1d213a2b8ed62b33bb7607d7). :)

KNN is [k-nearest neighbor](https://www.elastic.co/guide/en/elasticsearch/reference/current/knn-search.html) I would very much appreciate it if @eddiebarry could provide some docs. I would review.

Hi! Thanks for fixing this! Sorry, for getting back to you this late, but somehow Github did not send notification emails to me. @francesco-ooops Will this get ported to v15...

Did you uninstall the `attachment_preview` addon? We had the same error and ran the following to uninstall the `attachment_preview` addon. ``` self.env['ir.module.module'].search([('name', '=', 'attachment_preview')]).button_immediate_uninstall() ```

It does not seem like it: https://github.com/search?q=repo%3AOCA%2Fknowledge+attachment_card&type=code

There won't be any in the foreseeable future. If I do any changes, I will make feature branches.

Thanks! I'm looking forward to having Travis. About testing: See #93. I do not see the point of having non-blocking I/O. Four cores --> four long-running process via multiprocessing from...

Please have a look at https://github.com/felixhummel/shiva-server/blob/multi-processing/thoughts_about_the_indexer.rst and let me know what you think.

> Hey [@lmh87883819](https://github.com/lmh87883819), Thank you for reaching out and for using Agno! > > We’ve recently added an example that might be helpful for you: https://github.com/agno-agi/agno/blob/main/cookbook/playground/mcp_demo.py > > Feel free...