Skip to main content

moderations

Creates, updates, deletes, gets or lists a moderations resource.

Overview

Namemoderations
TypeResource
Idopenai.moderations.moderations

Fields

SELECT not supported for this resource, use SHOW METHODS to view available operations for the resource.

Methods

NameAccessible byRequired ParamsDescription
create_moderationINSERTdata__input

INSERT example

Use the following StackQL query and manifest file to create a new moderations resource.

/*+ create */
INSERT INTO openai.moderations.moderations (
data__input,
data__model
)
SELECT
'{{ input }}',
'{{ model }}'
;