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
description: "Your API key found at https://platform.openai.com/api-keys"
17
16
18
17
- key: api.gemini.key
19
18
type: text-password
20
19
area: api
21
-
description: "Your API key found at https://ai.google.dev/gemini-api/docs/api-key"
22
20
23
21
- key: api.claude.key
24
22
type: text-password
25
23
area: api
26
-
description: "Your API key found at https://console.anthropic.com/settings/keys"
27
24
28
25
- key: api.custom.key
29
26
type: text-password
@@ -35,91 +32,60 @@ systemSettings:
35
32
value: openai
36
33
37
34
- key: global.base.output
38
-
name: 'Base Output Instructions'
39
35
area: global
40
36
type: textarea
41
37
value: '- This content will be used inside a web content management system.\n- The output should be usable without editing or modification.\n- This is not a conversation; do not include justification or explanation.\n- When returning results, do not wrap them in anything like quotes.'
42
-
description: "This tells the model how to ouptut the results to remove commentary, wrapping quotes, etc."
43
38
- key: global.base.prompt
44
-
name: 'Base Prompt'
45
39
area: global
46
40
type: textarea
47
-
description: "This is an overall instruction modifier that is added to each API request by default, similar to what you would enter for Customize ChatGPT on their website."
48
41
- key: global.max_tokens
49
-
name: 'Default Maximum Tokens'
50
42
area: global
51
43
value: 2048
52
-
description: "To manage costs, 1000 tokens is roughly equal to 750 words."
53
44
- key: global.model
54
-
name: 'Default AI Model'
55
45
area: global
56
46
value: gpt-4o
57
-
description: "The default model for all prompts unless overridden per prompt."
58
47
- key: global.temperature
59
-
name: 'Default AI Temperature'
60
48
area: global
61
49
value: 0.7
62
-
description: "Higher values like 0.8 will be more random and creative, while values lower than 0.2 will be more focused and deterministic."
63
50
64
51
- key: res.fields
65
-
name: 'Use with MODX Fields'
66
52
area: resources
67
53
value: 'longtitle,introtext,description,content'
68
-
description: 'The default Resource fields to attached modAI generative AI buttons to.'
69
54
70
55
- key: res.pagetitle.prompt
71
-
name: '[[*pagetitle]] Propmt'
72
56
area: resources
73
57
type: textarea
74
58
value: "- You are an SEO expert\n- Your task is to generate a Page Title from from the page content for use as the main H1 tag on the page.\n- The Title shouldn't exceed 60 characters, though shorter is also OK\n- Don't use any HTML or markdown tags"
75
59
- key: res.longtitle.prompt
76
-
name: '[[*longtitle]] Propmt'
77
60
area: resources
78
61
type: textarea
79
62
value: "- You are an SEO expert\n- Your task is to generate an optimal Meta Title from the page content.\n- The Meta Title can't exceed 70 characters\n- Don't use any HTML or markdown tags\n- Don't wrap the Meta Title in quotes"
80
-
description: "Use this for the meta title—also works with SEO Suite."
81
63
- key: res.introtext.prompt
82
-
name: '[[*introtext]] Prompt'
83
64
area: resources
84
65
type: textarea
85
66
value: "- You are an assistant that summarizes content.\n- Your task is to generate concise summary of the page content.\n- Don't use any HTML or markdown tags"
86
-
description: "Use this to generate a summary of the page content—used as starting point for image generation."
87
67
- key: res.description.prompt
88
-
name: '[[*description]] Prompt'
89
68
area: resources
90
69
type: textarea
91
70
value: "- You are an SEO expert\n- Your task is to generate SEO Meta Description\n- Description can't exceed 155 characters\n- Don't use any HTML or markdown tags"
92
-
description: "Use this for the meta description—also works with SEO Suite."
93
71
94
72
- key: vision.model
95
-
name: 'Vision Model'
96
73
area: vision
97
74
value: gpt-4o-mini
98
-
description: "Create text from image inputs. Valid options are o1, gpt-4o, gpt-4o-mini, and gpt-4-turbo."
99
75
- key: vision.prompt
100
-
name: 'Vision Prompt'
101
76
area: vision
102
77
value: "Create an optimal alt tag for accessibility for this image that is no longer than 120 characters and not using any punctuation, quotes, or special characters"
103
-
description: "By default, this should create a 120 character alt tag based on the vision API output."
104
78
105
79
- key: image.model
106
-
name: 'Image Model'
107
80
area: image
108
81
value: dall-e-3
109
-
description: "Valid options are `dall-e-2` and `dall-e-3` (default). See https://platform.openai.com/docs/guides/images/image-generation-beta for full details including DALL-E-2 specifics."
110
82
- key: image.size
111
-
name: 'Image Dimensions'
112
83
area: image
113
84
value: "1792x1024"
114
-
description: "Valid options for DALL-E-3 are `1024x1024`, `1792x1024` (default), and `1024x1792`. "
115
85
- key: image.quality
116
-
name: 'Image Quallity'
117
86
area: image
118
87
value: standard
119
-
description: "Valid options are `standard` (default) and `hd`."
120
88
121
89
- key: tvs
122
-
name: 'Use with Template Variables'
123
90
area: tvs
124
91
value: ''
125
-
description: 'The Template Variable fields to attached modAI generative AI buttons to. Must be a text, textarea, image or Image+ Input Type.'
$_lang['setting_modai.global.base.prompt_desc'] = 'This is an overall instruction modifier that is added to each API request by default, similar to what you would enter for Customize ChatGPT on their website.';
19
+
$_lang['setting_modai.global.max_tokens'] = 'Default Maximum Tokens';
20
+
$_lang['setting_modai.global.max_tokens_desc'] = 'To manage costs, 1000 tokens is roughly equal to 750 words.';
21
+
$_lang['setting_modai.global.model'] = 'Default AI Model';
22
+
$_lang['setting_modai.global.model_desc'] = 'The default model for all prompts unless overridden per prompt.';
23
+
$_lang['setting_modai.global.temperature'] = 'Default AI Temperature';
24
+
$_lang['setting_modai.global.temperature_desc'] = 'Higher values like 0.8 will be more random and creative, while values lower than 0.2 will be more focused and deterministic.';
25
+
$_lang['setting_modai.res.fields'] = 'Use with MODX Resource Fields';
26
+
$_lang['setting_modai.res.fields_desc'] = 'The default Resource fields to attached modAI generative AI buttons to.';
$_lang['setting_modai.image.model_desc'] = 'Valid options are `dall-e-2` and `dall-e-3` (default). See https://platform.openai.com/docs/guides/images/image-generation-beta for full details including DALL-E-2 specifics.';
$_lang['setting_modai.image.quality_desc'] = 'Valid options are `standard` (default) and `hd`.';
45
+
$_lang['setting_modai.tvs'] = 'Use with Template Variables';
46
+
$_lang['setting_modai.tvs_desc'] = 'The Template Variable fields to attached modAI generative AI buttons to. Must be a text, textarea, image or Image+ Input Type.';
0 commit comments