Skip to content

Commit

Permalink
Added additional codellama models
Browse files Browse the repository at this point in the history
Added support for
codellama:python
codellama:code
codellama:7b-python
codellama:7b-code
codellama:13b-python
codellama:13b-code
codellama:34b-code
codellama:34b-python
  • Loading branch information
Bortus-AI committed Dec 15, 2023
1 parent f89ffb0 commit a153b19
Showing 1 changed file with 64 additions and 0 deletions.
64 changes: 64 additions & 0 deletions apps/unsaged/types/ai-models.ts
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,38 @@ export const PossibleAiModels: PossibleAiModelsInterface = {
vendor: 'Ollama',
type: 'text',
},
'codellama:python': {
id: 'codellama:python',
maxLength: 32000,
tokenLimit: 4096,
requestLimit: 3000,
vendor: 'Ollama',
type: 'text',
},
'codellama:code': {
id: 'codellama:code',
maxLength: 32000,
tokenLimit: 4096,
requestLimit: 3000,
vendor: 'Ollama',
type: 'text',
},
'codellama:7b-python': {
id: 'codellama:7b-python',
maxLength: 32000,
tokenLimit: 4096,
requestLimit: 3000,
vendor: 'Ollama',
type: 'text',
},
'codellama:7b-code': {
id: 'codellama:7b-code',
maxLength: 32000,
tokenLimit: 4096,
requestLimit: 3000,
vendor: 'Ollama',
type: 'text',
},
'codellama:7b': {
id: 'codellama:7b',
maxLength: 32000,
Expand All @@ -182,6 +214,22 @@ export const PossibleAiModels: PossibleAiModelsInterface = {
vendor: 'Ollama',
type: 'text',
},
'codellama:13b-python': {
id: 'codellama:13b-python',
maxLength: 32000,
tokenLimit: 4096,
requestLimit: 3000,
vendor: 'Ollama',
type: 'text',
},
'codellama:13b-code': {
id: 'codellama:13b-code',
maxLength: 32000,
tokenLimit: 4096,
requestLimit: 3000,
vendor: 'Ollama',
type: 'text',
},
'codellama:13b': {
id: 'codellama:13b',
maxLength: 32000,
Expand All @@ -198,6 +246,22 @@ export const PossibleAiModels: PossibleAiModelsInterface = {
vendor: 'Ollama',
type: 'text',
},
'codellama:34b-code': {
id: 'codellama:34b-code',
maxLength: 32000,
tokenLimit: 4096,
requestLimit: 3000,
vendor: 'Ollama',
type: 'text',
},
'codellama:34b-python': {
id: 'codellama:34b-python',
maxLength: 32000,
tokenLimit: 4096,
requestLimit: 3000,
vendor: 'Ollama',
type: 'text',
},
'wizardcoder:latest': {
id: 'wizardcoder:latest',
maxLength: 32000,
Expand Down

0 comments on commit a153b19

Please sign in to comment.