Skip to content
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

update docs llama->llama2 #37

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion _snippets/default_models_table.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
|```'gpt'``` |[OpenAI](https://platform.openai.com/) | [text-davinci-003](https://platform.openai.com/docs/models/gpt-3) |N/A|
|```'bloom'``` |[BigScience](https://huggingface.co/bigscience) | [bloom-560](https://huggingface.co/bigscience/bloom-560m) |1.12 GB|
|```'flan'``` |[Google](https://huggingface.co/google) | [flan-t5-small](https://huggingface.co/google/flan-t5-small) |308 MB|
|```'llama'``` |[Openlm-Research](https://huggingface.co/openlm-research) | [open_llama_3b](https://huggingface.co/openlm-research/open_llama_3b) |6.85 GB|
|```'llama2'``` |[Openlm-Research](https://huggingface.co/openlm-research) | [open_llama_3b](https://huggingface.co/openlm-research/open_llama_3b) |6.85 GB|
|```'neo'``` |[ElutherAI](https://huggingface.co/EleutherAI) | [gpt-neo-1.3B](https://huggingface.co/EleutherAI/gpt-neo-1.3B) |5.31 GB|
|```'opt'``` |[Facebook](https://huggingface.co/facebook) | [opt-350m](https://huggingface.co/facebook/opt-350m) |662 MB|
|```'pythia'``` |[ElutherAI](https://huggingface.co/EleutherAI) | [pythia-70m-deduped](https://huggingface.co/EleutherAI/pythia-70m-deduped)|166 MB|
2 changes: 1 addition & 1 deletion get_started/quickstart/quickstart.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ print(response)
Be sure to check our [System Requirements](system) to make sure you can use your desired model.
```python
Supported_Models=[ # Use these strings to call the model
'chat_gpt', 'gpt', 'neo', 'llama',
'chat_gpt', 'gpt', 'neo', 'llama2',
'bloom', 'opt', 'pythia']
```

Expand Down
4 changes: 2 additions & 2 deletions reference/getting_started.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ print(response)
# import our client
from llm_vm.client import Client

# Select the LlaMA model
client = Client(big_model = 'llama')
# Select the LlaMA 2 model
client = Client(big_model = 'llama2')

# Put in your prompt and go!
response = client.complete(prompt = 'What is Anarchy?', context = '')
Expand Down