We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
am not sure to perfectly understand the following
ai-lab-recipes/model_servers/llamacpp_python/src/run.sh
Lines 18 to 20 in 55610a8
But using the command
podman run -v /home/axel7083/Documents/models/:/models:Z -e MODEL_PATH=/models/functionary-small-v2.5.Q4_0.gguf -e HF_PRETRAINED_MODEL=meetkai/functionary-small-v2.5-GGUF -e CHAT_FORMAT=functionary-v2 -p 8000:8000 -e PORT=8000 ghcr.io/containers/llamacpp_python:latest
does not provide the proper value to --hf_pretrained_model_name_or_path.
--hf_pretrained_model_name_or_path
The tokenizer_config.json should be downloaded at startup
tokenizer_config.json
With the current, it does not download it
The text was updated successfully, but these errors were encountered:
cc @Gregory-Pereira I think a \ is missing on the following line
\
Line 19 in 55610a8
but when adding it we got the following error
./run.sh: line 12: HF_PRETRAINED_MODEL: %=--hf_pretrained_model_name_or_path %: syntax error: operand expected (error token is "%=--hf_pretrained_model_name_or_path %")
Sorry, something went wrong.
No branches or pull requests
Description
am not sure to perfectly understand the following
ai-lab-recipes/model_servers/llamacpp_python/src/run.sh
Lines 18 to 20 in 55610a8
But using the command
does not provide the proper value to
--hf_pretrained_model_name_or_path
.Expected
The
tokenizer_config.json
should be downloaded at startupCurrent
With the current, it does not download it
The text was updated successfully, but these errors were encountered: