-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp_config.json
More file actions
109 lines (109 loc) · 3.51 KB
/
app_config.json
File metadata and controls
109 lines (109 loc) · 3.51 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "StarTalk",
"description": "Astrological translator for smart glasses. Set your signs. Tap. Get cosmic perspective.",
"settings": [
{
"type": "group",
"title": "Your Chart"
},
{
"key": "sun_sign",
"type": "select",
"label": "Sun Sign (your core)",
"options": [
{ "label": "Aries (Mar 21 - Apr 19)", "value": "aries" },
{ "label": "Taurus (Apr 20 - May 20)", "value": "taurus" },
{ "label": "Gemini (May 21 - Jun 20)", "value": "gemini" },
{ "label": "Cancer (Jun 21 - Jul 22)", "value": "cancer" },
{ "label": "Leo (Jul 23 - Aug 22)", "value": "leo" },
{ "label": "Virgo (Aug 23 - Sep 22)", "value": "virgo" },
{ "label": "Libra (Sep 23 - Oct 22)", "value": "libra" },
{ "label": "Scorpio (Oct 23 - Nov 21)", "value": "scorpio" },
{ "label": "Sagittarius (Nov 22 - Dec 21)", "value": "sagittarius" },
{ "label": "Capricorn (Dec 22 - Jan 19)", "value": "capricorn" },
{ "label": "Aquarius (Jan 20 - Feb 18)", "value": "aquarius" },
{ "label": "Pisces (Feb 19 - Mar 20)", "value": "pisces" }
],
"defaultValue": "aries"
},
{
"key": "rising_sign",
"type": "select",
"label": "Rising Sign (how you come across)",
"options": [
{ "label": "Don't know / Skip", "value": "" },
{ "label": "Aries Rising", "value": "aries" },
{ "label": "Taurus Rising", "value": "taurus" },
{ "label": "Gemini Rising", "value": "gemini" },
{ "label": "Cancer Rising", "value": "cancer" },
{ "label": "Leo Rising", "value": "leo" },
{ "label": "Virgo Rising", "value": "virgo" },
{ "label": "Libra Rising", "value": "libra" },
{ "label": "Scorpio Rising", "value": "scorpio" },
{ "label": "Sagittarius Rising", "value": "sagittarius" },
{ "label": "Capricorn Rising", "value": "capricorn" },
{ "label": "Aquarius Rising", "value": "aquarius" },
{ "label": "Pisces Rising", "value": "pisces" }
],
"defaultValue": ""
},
{
"type": "group",
"title": "AI Provider"
},
{
"key": "ai_api_key",
"type": "secret",
"label": "API Key",
"defaultValue": ""
},
{
"key": "ai_provider",
"type": "select",
"label": "Provider",
"options": [
{ "label": "Anthropic (Claude)", "value": "anthropic" },
{ "label": "OpenAI (GPT)", "value": "openai" }
],
"defaultValue": "anthropic"
},
{
"key": "ai_model",
"type": "select",
"label": "Model",
"options": [
{ "label": "Auto (Recommended)", "value": "auto" },
{ "label": "Claude Haiku 4.5", "value": "claude-haiku-4-5-20251001" },
{ "label": "GPT-4o Mini", "value": "gpt-4o-mini" }
],
"defaultValue": "auto"
},
{
"type": "group",
"title": "Ambient Context"
},
{
"key": "ambient_context",
"type": "toggle",
"label": "Enable Ambient Listening",
"defaultValue": false
},
{
"key": "ambient_bystander_ack",
"type": "toggle",
"label": "I understand ambient mode captures nearby speech",
"defaultValue": false
},
{
"key": "ambient_buffer_duration",
"type": "select",
"label": "Buffer Duration",
"options": [
{ "label": "1 minute", "value": 60 },
{ "label": "2 minutes", "value": 120 },
{ "label": "5 minutes", "value": 300 }
],
"defaultValue": 120
}
]
}