Jason Weill
Jason Weill
Also opened by @lokashrinav in JupyterLab: https://github.com/jupyterlab/jupyterlab/issues/16280
I created a new Conda environment with Python 3.12 on an Apple Silicon Mac, installed JupyterLab 4.0.11, and I tried to run `./scripts/install.sh` from my local Jupyter AI repository's root....
@OleksandrKucherenko Are you using Apple Silicon locally? Were you able to install using a wheel that works with these processors? https://github.com/kyamagu/faiss-wheels/issues/87 remains open.
https://github.com/kyamagu/faiss-wheels/issues/87 was completed last week, so once its new version is published, we should be able to add Python 3.12 support.
See also #434, which concerns making "learn" and "ask" functionality available in the magic commands.
@chenxuewei-ihealth Thank you for reaching out to us! Can you try running the following extensions in the same conda environment where you run JupyterLab? ``` jupyter --version jupyter labextension list...
See https://github.com/jupyterlab/jupyterlab/issues/3869 and https://github.com/jupyterlab/jupyterlab/issues/15324. In JupyterLab 4, magic commands are treated as code with the current kernel's language; for example, if you're using a Python kernel, all magic commands are...
You can modify prompt templates, as described in #498 and implemented in #581, to attempt to get better quality code from your language models. From my experience, even the most...
Thank you for mentioning Tree Sitter! I haven't tried that myself. Our general guidance is that whenever an AI model generates code for a person, the person needs to do...
In magic commands, we formerly used the `-r` (reset) option to remove history. This was removed in #551, when we removed message history from OpenAI providers in magic commands. We...