Skip to content

Commit

Permalink
adding roleplay model
Browse files Browse the repository at this point in the history
  • Loading branch information
davidamelekh committed Jul 16, 2024
1 parent c19b06d commit d610437
Showing 1 changed file with 15 additions and 4 deletions.
19 changes: 15 additions & 4 deletions src/utils/models.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,18 @@ export type UIModel = Model & { premium: boolean };
* Default Models Configuration
*/
export const defaultModels: UIModel[] = [
// Mixtral
// // Developer
// {
// name: 'Local',
// ...modelDefaults,
// apiUrl:
// 'http://localhost:5000/completion',
// promptFormat: promptFormatDefaults,
// premium: false,
// withCredentials: false
// },

// Function call model
{
name: 'Nous Hermes 2 Pro (Llama 3 8B, fast)',
...modelDefaults,
Expand All @@ -46,15 +57,15 @@ export const defaultModels: UIModel[] = [
premium: false,
},

// NeuralBeagle
// Roleplay model
{
name: 'NeuralBeagle (7B, fast)',
name: 'Roleplay (7B, fast)',
...modelDefaults,
// Set our apiUrl
apiUrl:
'https://curated.aleph.cloud/vm/a8b6d895cfe757d4bc5db9ba30675b5031fe3189a99a14f13d5210c473220caf/completion',
// Allow a larger prompt length
maxTokens: 16384,
maxTokens: 32768,
// Set a minimum probability
minP: 0.1,
// Set a slightly higher top probability
Expand Down

0 comments on commit d610437

Please sign in to comment.