Spaces:
Sleeping
Sleeping
Create chatgptmoderationproj.py
Browse files- chatgptmoderationproj.py +5 -0
chatgptmoderationproj.py
ADDED
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
from openai import OpenAI
|
2 |
+
client = OpenAI()
|
3 |
+
|
4 |
+
moderation = client.moderations.create(input="I want to kill them.")
|
5 |
+
print(moderation)
|