diff --git a/src/lib/providers/petals/models.svelte b/src/lib/providers/petals/models.svelte
index 4d36c75..941f777 100644
--- a/src/lib/providers/petals/models.svelte
+++ b/src/lib/providers/petals/models.svelte
@@ -18,7 +18,9 @@ const hideSettings = {
const chatModelBase = {
type: 'instruct', // Used for chat, but these models operate like instruct models -- you have to manually structure the messages sent to them
- help: 'Below are the settings that can be changed for the API calls. See this overview to start, though not all settings translate to Petals.',
+ help: `Below are the settings that can be changed for the API calls.
+ See this overview to start, though not all settings translate to Petals.
+ Note that some models may mot be functional. See https://health.petals.dev for current status.`,
check: checkModel,
start: '',
stop: ['###', ''],
@@ -54,15 +56,20 @@ export const chatModels : Record = {
// ...chatModelBase,
// label: 'Petals - Llama-65b'
// },
+ // 'codellama/CodeLlama-34b-Instruct-hf ': {
+ // ...chatModelBase,
+ // label: 'Petals - CodeLlama-34b',
+ // max: 2048
+ // },
'timdettmers/guanaco-65b': {
...chatModelBase,
label: 'Petals - Guanaco-65b',
max: 2048
},
- // 'meta-llama/Llama-2-70b-hf': {
- // ...chatModelBase,
- // label: 'Petals - Llama-2-70b'
- // },
+ 'meta-llama/Llama-2-70b-hf': {
+ ...chatModelBase,
+ label: 'Petals - Llama-2-70b'
+ },
'meta-llama/Llama-2-70b-chat-hf': {
...chatModelBase,
label: 'Petals - Llama-2-70b-chat',