You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
PARTNER_PHONE: {value: env.PARTNER_PHONE,description: "Your partner's phone number in the Messages app"},
24
-
HISTORY_LOOKBACK_HOURS: {value: env.HISTORY_LOOKBACK_HOURS,description: 'How many hours of prior conversation history to search for extra context'},
25
-
CUSTOM_CONTEXT: {value: env.CUSTOM_CONTEXT,description: 'To guide the AI\'s personality and behavior (Example: "Act as my therapist suggesting replies to my partner" or "You are a helpful assistant")'},
26
-
OPENAI_API_KEY: {value: env.OPENAI_API_KEY,description: 'Available at https://platform.openai.com/api-keys'},
23
+
PARTNER_PHONE: {
24
+
value: env.PARTNER_PHONE,
25
+
description: "Your partner's phone number in the Messages app",
26
+
},
27
+
HISTORY_LOOKBACK_HOURS: {
28
+
value: env.HISTORY_LOOKBACK_HOURS,
29
+
description: 'How many hours of prior conversation history to search for extra context',
30
+
},
31
+
CUSTOM_CONTEXT: {
32
+
value: env.CUSTOM_CONTEXT,
33
+
description:
34
+
'To guide the AI\'s personality and behavior (Example: "Act as my therapist suggesting replies to my partner" or "You are a helpful assistant")',
35
+
},
36
+
OPENAI_API_KEY: {
37
+
value: env.OPENAI_API_KEY,
38
+
description: 'Available at https://platform.openai.com/api-keys',
39
+
},
27
40
OPENAI_MODEL: {value: env.OPENAI_MODEL,description: 'gpt-4 or any other OpenAI model'},
28
-
OPENAI_TEMPERATURE: {value: env.OPENAI_TEMPERATURE,description: 'Controls the randomness of the responses'},
29
-
OPENAI_TOP_P: {value: env.OPENAI_TOP_P,description: 'Lets the responses be a little more adventurous'},
30
-
OPENAI_FREQUENCY_PENALTY: {value: env.OPENAI_FREQUENCY_PENALTY,description: 'Keeps the suggestions from repeating themselves'},
31
-
OPENAI_PRESENCE_PENALTY: {value: env.OPENAI_PRESENCE_PENALTY,description: 'Nudges the AI to bring up fresh ideas'},
32
-
ANTHROPIC_API_KEY: {value: env.ANTHROPIC_API_KEY,description: 'Available at https://console.anthropic.com/api-keys'},
33
-
ANTHROPIC_MODEL: {value: env.ANTHROPIC_MODEL,description: 'claude-3-opus-20240229 or another Anthropic model'},
34
-
ANTHROPIC_TEMPERATURE: {value: env.ANTHROPIC_TEMPERATURE,description: "Controls the randomness of Claude's responses"},
35
-
GROK_API_KEY: {value: env.GROK_API_KEY,description: 'Available at https://console.grok.ai/api-keys'},
41
+
OPENAI_TEMPERATURE: {
42
+
value: env.OPENAI_TEMPERATURE,
43
+
description: 'Controls the randomness of the responses',
44
+
},
45
+
OPENAI_TOP_P: {
46
+
value: env.OPENAI_TOP_P,
47
+
description: 'Lets the responses be a little more adventurous',
48
+
},
49
+
OPENAI_FREQUENCY_PENALTY: {
50
+
value: env.OPENAI_FREQUENCY_PENALTY,
51
+
description: 'Keeps the suggestions from repeating themselves',
52
+
},
53
+
OPENAI_PRESENCE_PENALTY: {
54
+
value: env.OPENAI_PRESENCE_PENALTY,
55
+
description: 'Nudges the AI to bring up fresh ideas',
56
+
},
57
+
ANTHROPIC_API_KEY: {
58
+
value: env.ANTHROPIC_API_KEY,
59
+
description: 'Available at https://console.anthropic.com/api-keys',
60
+
},
61
+
ANTHROPIC_MODEL: {
62
+
value: env.ANTHROPIC_MODEL,
63
+
description: 'claude-3-opus-20240229 or another Anthropic model',
64
+
},
65
+
ANTHROPIC_TEMPERATURE: {
66
+
value: env.ANTHROPIC_TEMPERATURE,
67
+
description: "Controls the randomness of Claude's responses",
68
+
},
69
+
GROK_API_KEY: {
70
+
value: env.GROK_API_KEY,
71
+
description: 'Available at https://console.grok.ai/api-keys',
72
+
},
36
73
GROK_MODEL: {value: env.GROK_MODEL,description: 'grok-1 or another Grok model'},
37
-
GROK_TEMPERATURE: {value: env.GROK_TEMPERATURE,description: 'Controls the randomness of Grok\'s responses'},
74
+
GROK_TEMPERATURE: {
75
+
value: env.GROK_TEMPERATURE,
76
+
description: "Controls the randomness of Grok's responses",
0 commit comments