-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPromptAI.info.php
More file actions
26 lines (25 loc) · 809 Bytes
/
PromptAI.info.php
File metadata and controls
26 lines (25 loc) · 809 Bytes
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
<?php namespace ProcessWire;
$info = [
'title' => 'PromptAI',
'summary' => 'Multi-provider AI integration (Anthropic, OpenAI, Gemini, DeepSeek) for processing text and file fields via configurable prompts.',
'version' => 270,
'author' => 'Robert Weiss',
'icon' => 'connectdevelop',
'requires' => [
'ProcessWire>=3.0.184',
'PHP>=8.3.0',
],
'href' => 'https://github.com/robertweiss/PromptAI',
'singular' => true,
'autoload' => 'template=admin',
'permission' => 'promptai',
'permissions' => array(
'promptai-config' => __('Show PromptAI configuration'),
'promptai' => __('Show PromptAI buttons on page edit screen')
),
'page' => [
'parent' => 'setup',
'name' => 'prompt-ai',
'title' => __('Prompt AI'),
],
];