-
Notifications
You must be signed in to change notification settings - Fork 80
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
Add Llama 3 support #57
base: main
Are you sure you want to change the base?
Conversation
tonywang16
commented
Apr 22, 2024
# ModelConfig( | ||
# ModelBackendConfig(repository="meta-llama/Meta-Llama-3-70B-Instruct"), | ||
# ModelFrontendConfig( | ||
# name="Llama 3 (70B-Instruct)", | ||
# model_card="https://huggingface.co/meta-llama/Meta-Llama-3-70B-Instruct", | ||
# license="https://huggingface.co/meta-llama/Meta-Llama-3-70B-Instruct/blob/main/LICENSE", | ||
# ), | ||
# default_chat_config, | ||
# ), |
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.
Can you put Llama 3-Instruct as a supported model as well? I figure it would be more useful for the chat case
ModelConfig( | ||
ModelBackendConfig(repository="meta-llama/Meta-Llama-3-70B", aliases=["meta-llama/Meta-Llama-3-70B"]), | ||
ModelFrontendConfig( | ||
name="META LLAMA 3 (70B)", |
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.
name="META LLAMA 3 (70B)", | |
name="Llama 3 (70B)", |
When I try running flask app with this config, I get
I don't know if this is related, but I am also hosting part of GPUs for current public LLama 3 network, so I downloaded at least part of that model. Could that be related? |