Daniel

Results 20 comments of Daniel

Same issue here... ccnet/logs/seafile: ``` [05/18/20 21:14:02] seaf-daemon.c(504): starting seafile client 7.0.7 [05/18/20 21:14:02] seaf-daemon.c(506): seafile source code version af4460f71c92b8f55704fbc754fd250935de8704 [05/18/20 21:14:03] seafile-session.c(382): client id = ..., client_name = ......

Running into the same issue in a slightly different circumstance. I have ``` # pylint: disable=cyclic-import import a import b from blah import foo # pylint: enable=cyclic-import ``` `isort` adds...

> Is this doing the same thing more or less? It's doing basically the same. It uploads a wheel in addition. Including the wheel is good though as it shortens...

Forgive me if this is duplicative information, but python importlib has lazy loading utilities available: https://docs.python.org/3/library/importlib.html#importlib.util.LazyLoader

If you run into this issue: Edit the ~/.shelloracle.bash (if you are using bash) or ~/.shelloracle.zsh (if you are using zsh) and change the bindkey '^F' to be something else

Need more information. What does this mean? What LLM provider are you trying to use?

There are some powerful things we could do with dspy optimizers

Although not documented, it is possible to create plugins that augment, or completely replace the built in templating. You'll need make a class derived from [TemplateInterface](https://github.com/pypa/hatch/blob/master/src/hatch/template/plugin/interface.py) and set up the...

These are python-isms, not necessarily just hatch things. The plugin has to be accessible to the build system, to do that, declare the plugin as a [build time dependency](https://pip.pypa.io/en/stable/reference/build-system/pyproject-toml/#build-time-dependencies) in...

Sorry yes, you're correct. You'll need to install your template plugin into whatever environment hatch is running from. If you installed hatch with pipx, you can use [`pipx inject`](https://pipx.pypa.io/latest/#inject-a-package). If...