This commit is contained in:
Aidan Do 2024-12-15 17:53:22 +11:00
parent d9db9a01bf
commit d0854a48b2
4 changed files with 1645 additions and 0 deletions

14
COMMANDS.md Normal file
View file

@ -0,0 +1,14 @@
```bash
source ~/miniconda3/bin/activate
conda create --prefix ./envs python=3.10
source ~/miniconda3/bin/activate
conda activate ./envs
pip install -e . \
&& llama stack build --config ./build.yaml --image-type conda \
&& llama stack run ./run.yaml \
--port 5001
pytest llama_stack/providers/tests/inference/test_text_inference.py -v -k groq --lf -s
```