Skip to content
This repository has been archived by the owner on Sep 26, 2023. It is now read-only.

Commit

Permalink
Add Model: LLaMa-30B-sft-6
Browse files Browse the repository at this point in the history
  • Loading branch information
ramon-victor committed Aug 14, 2023
1 parent d8784a7 commit 47dbcb6
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 1 deletion.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
- gpt-4
- gpt-4-0314
- gpt-4-32k
- oasst-sft-6-llama-30b
- llama-2-70b-chat

<br>
Expand Down
3 changes: 2 additions & 1 deletion client/html/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,8 @@
<option value="gpt-4-32k">GPT-4-32k</option>
</optgroup>
<optgroup label="LLAMA">
<option value="llama-2-70b-chat">llama-2-70b-chat</option>
<option value="oasst-sft-6-llama-30b">LLaMa-30B-sft-6</option>
<option value="llama-2-70b-chat">LLaMa-2-70B-chat</option>
</optgroup>
<optgroup label="{{_('IMAGE')}}">
<option value="" disabled>Kandinsky (soon)</option>
Expand Down
1 change: 1 addition & 0 deletions g4f/Provider/Providers/Chimera.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
'gpt-4-0314',
'gpt-4-32k',
'llama-2-70b-chat',
'oasst-sft-6-llama-30b'
]
supports_stream = True
needs_auth = False
Expand Down
5 changes: 5 additions & 0 deletions g4f/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,11 @@ class llama_2_70b_chat:
name: str = 'llama-2-70b-chat'
base_provider: str = 'llama'
best_provider: Provider.Provider = Provider.Chimera

class oasst_sft_6_llama_30b:
name: str = 'oasst-sft-6-llama-30b'
base_provider: str = 'huggingface-chat'
best_provider: Provider.Provider = Provider.Chimera



Expand Down

0 comments on commit 47dbcb6

Please sign in to comment.