lg3394 commited on
Commit
9591c13
·
verified ·
1 Parent(s): 0e0a1a2

Create chatgptmoderationproj.py

Browse files
Files changed (1) hide show
  1. 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)