-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.js
35 lines (35 loc) · 1.25 KB
/
config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
export const config = {
connectorName: 'Anthropic AI Connector',
models: [
'claude-instant-1.2',
'claude-2.0',
'claude-2.1',
'claude-3-opus-20240229',
'claude-3-sonnet-20240229',
'claude-3-haiku-20240307',
'claude-3-5-sonnet-20240620',
'claude-3-5-sonnet-20241022',
'claude-3-5-sonnet-latest'
],
properties: [
{
id: 'temperature',
name: 'Temperature',
value: 0.7,
type: 'number',
max_tokens: 2048,
},
{
id: 'prompt',
name: 'System Prompt',
value: 'You are a helpful assistant.',
type: 'string',
},
],
settings: [{ id: 'API_KEY', name: 'API Key', value: '', type: 'string' }],
author: 'Prompt Mixer',
description:
"Anthropic AI Connector runs Anthropic's safety-first language models",
iconBase64:
'data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTExLjE4MjUgMi45MjQ2MUg4Ljk3OTM5TDEyLjk5NjkgMTMuMDc1NUgxNS4yTDExLjE4MjUgMi45MjQ2MVpNNC44MTc1MiAyLjkyNDYxTDAuNzk5OTg4IDEzLjA3NTVIMy4wNDY1MUwzLjg2ODEgMTAuOTQzOEg4LjA3MTJMOC44OTI3OSAxMy4wNzU1SDExLjEzOTNMNy4xMjE3OCAyLjkyNDYxSDQuODE3NTJaTTQuNTk0ODQgOS4wNTg2TDUuOTY5NjUgNS40OTEyTDcuMzQ0NDYgOS4wNTg2SDQuNTk0ODRaIiBmaWxsPSIjNkY3MzdBIi8+Cjwvc3ZnPgo=\n',
};