Skip to content

Implement inappropriate language filter Python script #5935

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@

# Use the .funcignore file to exclude files which should not be
# tracked in the image build. To instruct the system not to track
# files in the image build, add the regex pattern or file information
# to this file.
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@

# Functions use the .func directory for local runtime data which should
# generally not be tracked in source control. To instruct the system to track
# .func in source control, comment the following line (prefix it with '# ').
/.func
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
web: python -m parliament .
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!/bin/sh

exec python -m parliament "$(dirname "$0")"
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
from parliament import Context
from profanity_check import predict
from cloudevents.http import CloudEvent

def create_cloud_event(data):
attributes = {
"type": "knative.sampleapp.inappropriate-language-filter.response",
"source": "inappropriate-language-filter",
"datacontenttype": "application/json",
}

# Put the inappropriate language filter result into a dictionary
data = {"result": data}

# Create a CloudEvent object
event = CloudEvent(attributes, data)

return event

def inappropriate_language_filter(text: str | None):
profanity_result = predict([text])
result = "good"
if profanity_result[0] == 1:
result = "bad"

profanity_event = create_cloud_event(result)
return profanity_event

def main(context: Context):
"""
Function template
The context parameter contains the Flask request object and any
CloudEvent received with the request.
"""

# Add your business logic here
return inappropriate_language_filter(context.request.args.get("text"))
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
specVersion: 0.36.0
name: inappropriate-language-filter
runtime: python
created: 2024-03-27T23:12:06.178272+08:00
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
parliament-functions==0.1.0
alt-profanity-check==1.4.1.post1
cloudevents==1.10.1