-
Notifications
You must be signed in to change notification settings - Fork 8.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
41e452d
commit 65277a8
Showing
20 changed files
with
174 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
from flask_restful import Resource, reqparse | ||
|
||
from controllers.console import api | ||
from controllers.console.setup import setup_required | ||
from controllers.console.wraps import account_initialization_required | ||
from libs.login import login_required | ||
from services.extension_service import ExtensionService | ||
|
||
|
||
class CodeBasedExtension(Resource): | ||
|
||
@setup_required | ||
@login_required | ||
@account_initialization_required | ||
def get(self): | ||
parser = reqparse.RequestParser() | ||
parser.add_argument('module', type=str, required=True, location='args') | ||
args = parser.parse_args() | ||
|
||
return ExtensionService.get_code_based_extensions(args['module']) | ||
|
||
|
||
api.add_resource(CodeBasedExtension, '/code-based-extensions') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
import core.moderation.base |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
import json | ||
import os | ||
import copy | ||
|
||
class Extensible: | ||
_extensions = {} | ||
|
||
def __init_subclass__(cls, **kwargs): | ||
super().__init_subclass__(**kwargs) | ||
cls.register() | ||
|
||
@classmethod | ||
def register(cls): | ||
subclass_path = os.path.abspath(cls.__module__.replace(".", os.path.sep) + '.py') | ||
subclass_dir_path = os.path.dirname(subclass_path) | ||
parent_folder_name = os.path.basename(os.path.dirname(subclass_dir_path)) | ||
|
||
if parent_folder_name == 'core': | ||
return | ||
|
||
json_path = os.path.join(subclass_dir_path, 'schema.json') | ||
json_data = {} | ||
if os.path.exists(json_path): | ||
with open(json_path, 'r') as f: | ||
json_data = json.load(f) | ||
|
||
if parent_folder_name not in cls._extensions: | ||
cls._extensions[parent_folder_name] = { | ||
"module": parent_folder_name, | ||
"data": [] | ||
} | ||
|
||
cls._extensions[parent_folder_name]["data"].append(json_data) | ||
|
||
@classmethod | ||
def get_extensions(cls) -> dict: | ||
return copy.deepcopy(cls._extensions) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
from core.moderation.openai.openai import OpenAIModeration | ||
from core.moderation.keywords.keywords import KeywordsModeration | ||
from core.moderation.api_based.api_based import ApiBasedModeration | ||
from core.moderation.cloud_service.cloud_service import CloudServiceModeration |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
from core.moderation.base import BaseModeration | ||
|
||
class ApiBasedModeration(BaseModeration): | ||
pass |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{ | ||
"name": "api_based", | ||
"label": { | ||
"en-US": "API-based Extension", | ||
"zh-Hans": "基于 API 的扩展" | ||
}, | ||
"form_schema": {}, | ||
"extra-config": { | ||
"inputs_preset_response_display": false, | ||
"onputs_preset_response_display": false | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
from core.helper.extensible import Extensible | ||
|
||
class BaseModeration(Extensible): | ||
pass |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
from core.moderation.base import BaseModeration | ||
|
||
class CloudServiceModeration(BaseModeration): | ||
pass |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
{ | ||
"name": "cloud_service", | ||
"label": { | ||
"en-US": "Cloud Service", | ||
"zh-Hans": "云服务" | ||
}, | ||
"form_schema": [ | ||
{ | ||
"select": { | ||
"label": { | ||
"en-US": "Cloud Provider", | ||
"zh-Hans": "云计算厂商" | ||
}, | ||
"variable": "cloud_provider", | ||
"required": true, | ||
"options": [ | ||
"腾讯云", | ||
"阿里云", | ||
"AWS" | ||
], | ||
"default": "", | ||
"placeholder": "" | ||
} | ||
}, | ||
{ | ||
"text-input": { | ||
"label": { | ||
"en-US": "API Endpoint", | ||
"zh-Hans": "API Endpoint" | ||
}, | ||
"variable": "api_endpoint", | ||
"required": true, | ||
"max_length": 100, | ||
"default": "", | ||
"placeholder": "" | ||
} | ||
}, | ||
{ | ||
"paragraph": { | ||
"label": { | ||
"en-US": "API Key", | ||
"zh-Hans": "API Key" | ||
}, | ||
"variable": "api_keys", | ||
"required": true, | ||
"default": "", | ||
"placeholder": "" | ||
} | ||
} | ||
] | ||
} |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
from core.moderation.base import BaseModeration | ||
|
||
class KeywordsModeration(BaseModeration): | ||
pass |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"name": "keywords", | ||
"label": { | ||
"en-US": "Keywords", | ||
"zh-Hans": "关键词" | ||
}, | ||
"form_schema": {} | ||
} |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
from core.moderation.base import BaseModeration | ||
|
||
class OpenAIModeration(BaseModeration): | ||
pass |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"name": "openai", | ||
"label": { | ||
"en-US": "Open AI Moderation", | ||
"zh-Hans": "Open AI Moderation" | ||
}, | ||
"form_schema": {} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
from core.helper.extensible import Extensible | ||
|
||
class ExtensionService: | ||
|
||
@classmethod | ||
def get_code_based_extensions(cls, module: str) -> list[dict]: | ||
return Extensible.get_extensions().get(module, []) |