-
Notifications
You must be signed in to change notification settings - Fork 1.2k
docs: Remove datasets.rst and fix llama-stack build commands #2061
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
docs: Remove datasets.rst and fix llama-stack build commands #2061
Conversation
Thank you for your pull request and welcome to our community. Action RequiredIn order to merge any pull request (code, docs, etc.), we require contributors to sign our Contributor License Agreement, and we don't seem to have one on file for you. ProcessIn order for us to review and merge your suggested changes, please sign at https://code.facebook.com/cla. If you are contributing on behalf of someone else (eg your employer), the individual CLA may not be sufficient and your employer may need to sign the corporate CLA. Once the CLA is signed, our tooling will perform checks and validations. Afterwards, the pull request will be tagged with If you have received this in error or have any questions, please contact us at cla@meta.com. Thanks! |
b5177b8
to
352e11c
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Did you make sure the venv was sourced?
352e11c
to
f68145e
Compare
f68145e
to
8620739
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
/lgtm
Can we change the RAG example in the notebook to be the same as the one in the quick start? |
This is important, but feels out of scope of this PR. @ChristianZaccaria would you to send a followup PR for that? Thanks! |
@raghotham great catch, thanks! |
Thank you, appreciate that. |
@leseb @raghotham |
…ack#2061) # Issue Closes llamastack#2073 # What does this PR do? - Removes the `datasets.rst` from the list of document urls as it no longer exists in torchtune. Referenced PR: pytorch/torchtune#1781 - Added a step to run `uv sync`. Previously, I would get the following error: ``` ➜ llama-stack git:(remove-deprecated-rst) uv venv --python 3.10 source .venv/bin/activate Using CPython 3.10.13 interpreter at: /usr/bin/python3.10 Creating virtual environment at: .venv Activate with: source .venv/bin/activate (llama-stack) ➜ llama-stack git:(remove-deprecated-rst) INFERENCE_MODEL=llama3.2:3b llama stack build --template ollama --image-type venv --run zsh: llama: command not found... ``` [//]: # (If resolving an issue, uncomment and update the line below) [//]: # (Closes #[issue-number]) ## Test Plan To test: Run through `rag_agent` example in the `detailed_tutorial.md` file. [//]: # (## Documentation)
Issue
Closes #2073
What does this PR do?
Removes the
datasets.rst
from the list of document urls as it no longer exists in torchtune. Referenced PR: Delete deprecated ChatDataset and InstructDataset pytorch/torchtune#1781Added a step to run
uv sync
. Previously, I would get the following error:Test Plan
To test: Run through
rag_agent
example in thedetailed_tutorial.md
file.