2024-10-10 10:40:26 +08:00
import { PluginType } from '../types'
2024-10-09 17:50:23 +08:00
export const toolNotion = {
type : PluginType . tool ,
org : 'Notion' ,
name : 'notion page search' ,
2024-10-10 11:29:11 +08:00
version : '1.2.0' ,
latest_version : '1.3.0' ,
2024-10-09 17:50:23 +08:00
icon : 'https://via.placeholder.com/150' ,
label : {
'en-US' : 'Notion Page Search' ,
'zh-Hans' : 'Notion 页面搜索' ,
} ,
brief : {
2024-10-09 18:12:14 +08:00
'en-US' : 'Description: Search Notion pages and open visited ones faster. No admin access required.More and more info...More and more info...More and more info...' ,
'zh-Hans' : '搜索 Notion 页面并更快地打开已访问的页面。无需管理员访问权限。More and more info...More and more info...More and more info...' ,
2024-10-09 17:50:23 +08:00
} ,
}
export const extensionDallE = {
type : PluginType . extension ,
org : 'OpenAI' ,
name : 'DALL-E' ,
2024-10-10 11:29:11 +08:00
version : '1.1.0' ,
latest_version : '1.2.0' ,
2024-10-10 17:47:04 +08:00
install_count : 1234 ,
2024-10-09 17:50:23 +08:00
icon : 'https://via.placeholder.com/150' ,
label : {
'en-US' : 'DALL-E' ,
'zh-Hans' : 'DALL-E' ,
} ,
brief : {
'en-US' : 'Description: A simple plugin to use OpenAI DALL-E model.' ,
'zh-Hans' : '一个使用 OpenAI DALL-E 模型的简单插件。' ,
} ,
}
export const modelGPT4 = {
type : PluginType . model ,
org : 'OpenAI' ,
name : 'GPT-4' ,
2024-10-10 11:29:11 +08:00
version : '1.0.0' ,
2024-10-09 17:50:23 +08:00
latest_version : '1.0.0' ,
2024-10-10 17:47:04 +08:00
install_count : 99999 ,
2024-10-09 17:50:23 +08:00
icon : 'https://via.placeholder.com/150' ,
label : {
'en-US' : 'GPT-4' ,
'zh-Hans' : 'GPT-4' ,
} ,
brief : {
'en-US' : 'Description: A simple plugin to use OpenAI GPT-4 model.' ,
'zh-Hans' : '一个使用 OpenAI GPT-4 模型的简单插件。' ,
} ,
}
2024-10-16 16:28:07 +08:00
export const customTool = {
type : PluginType . tool ,
name : 'notion page search' ,
version : '1.2.0' ,
latest_version : '1.3.0' ,
icon : {
content : '🕵️' ,
background : '#FEF7C3' ,
} ,
label : {
'en-US' : 'Notion Page Search' ,
'zh-Hans' : 'Notion 页面搜索' ,
} ,
brief : {
'en-US' : 'Description: Search Notion pages and open visited ones faster. No admin access required.More and more info...More and more info...More and more info...' ,
'zh-Hans' : '搜索 Notion 页面并更快地打开已访问的页面。无需管理员访问权限。More and more info...More and more info...More and more info...' ,
} ,
}