├── .github ├── CODE_OF_CONDUCT.md ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── AnalyzeTextWithBlocklist ├── AnalyzeTextWithBlocklist.csproj └── Program.cs ├── AzureAIContentSafety.sln ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Doc.file ├── Doc └── Test.md ├── LICENSE.md ├── OtherBlocklistOperations ├── OtherBlocklistOperations.csproj └── Program.cs ├── README.md ├── dotnet ├── 1.0.0-beta.1 │ ├── AnalyzeImage │ │ ├── AnalyzeImage.csproj │ │ ├── Program.cs │ │ └── sample_data │ │ │ └── image.jpg │ ├── AnalyzeText │ │ ├── AnalyzeText.csproj │ │ └── Program.cs │ └── ManageBlocklist │ │ ├── ManageBlocklist.csproj │ │ └── Program.cs └── 1.0.0 │ ├── AnalyzeImage │ ├── AnalyzeImage.csproj │ ├── Program.cs │ └── sample_data │ │ └── image.jpg │ ├── AnalyzeText │ ├── AnalyzeText.csproj │ └── Program.cs │ └── ManageBlocklist │ ├── ManageBlocklist.csproj │ └── Program.cs ├── java ├── 1.0.0-beta.1 │ ├── azure-ai-contentsafety-samples-1.0.0-beta.1.iml │ ├── pom.xml │ └── src │ │ └── samples │ │ ├── java │ │ └── org │ │ │ └── example │ │ │ ├── AnalyzeImage.java │ │ │ ├── AnalyzeText.java │ │ │ └── ManageTextBlocklist.java │ │ └── resources │ │ └── image.png └── 1.0.0 │ ├── azure-ai-contentsafety-samples-1.0.0.iml │ ├── pom.xml │ └── src │ └── samples │ ├── java │ └── org │ │ └── example │ │ ├── AnalyzeImage.java │ │ ├── AnalyzeText.java │ │ ├── AnalyzeTextWithBlocklist.java │ │ ├── CreateClient.java │ │ ├── ManageTextBlocklist.java │ │ └── OtherBlocklistOperations.java │ └── resources │ └── image.png ├── js ├── 1.0.0-beta.1 │ ├── javascript │ │ ├── README.md │ │ ├── example-data │ │ │ └── image.png │ │ ├── package.json │ │ ├── sample.env │ │ ├── sampleAnalyzeImage.js │ │ ├── sampleAnalyzeText.js │ │ └── sampleManageBlocklist.js │ └── typescript │ │ ├── README.md │ │ ├── package.json │ │ ├── sample.env │ │ ├── src │ │ ├── example-data │ │ │ └── image.png │ │ ├── sampleAnalyzeImage.ts │ │ ├── sampleAnalyzeText.ts │ │ └── sampleManageBlocklist.ts │ │ └── tsconfig.json └── 1.0.0 │ ├── javascript │ ├── README.md │ ├── example-data │ │ └── image.png │ ├── package.json │ ├── sample.env │ ├── sampleAnalyzeImage.js │ ├── sampleAnalyzeText.js │ ├── sampleAnalyzeTextWithBlocklist.js │ ├── sampleManageBlocklist.js │ └── sampleOtherBlocklistOperations.js │ └── typescript │ ├── README.md │ ├── package.json │ ├── sample.env │ ├── src │ ├── example-data │ │ └── image.png │ ├── sampleAnalyzeImage.ts │ ├── sampleAnalyzeText.ts │ ├── sampleAnalyzeTextWithBlocklist.ts │ ├── sampleManageBlocklist.ts │ └── sampleOtherBlocklistOperations.ts │ └── tsconfig.json └── python ├── 1.0.0 ├── sample_analyze_image.py ├── sample_analyze_image_async.py ├── sample_analyze_text.py ├── sample_analyze_text_async.py ├── sample_analyze_text_with_blocklist.py ├── sample_analyze_video.py ├── sample_analyze_video_async.py ├── sample_data │ ├── image.jpg │ └── video.mp4 ├── sample_manage_blocklist.py └── sample_other_blocklist_operations.py └── 1.0.0b1 ├── sample_analyze_image.py ├── sample_analyze_image_async.py ├── sample_analyze_text.py ├── sample_analyze_text_async.py ├── sample_data └── image.jpg └── sample_manage_blocklist.py /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/AzureAIContentSafety/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/AzureAIContentSafety/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/AzureAIContentSafety/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /AnalyzeTextWithBlocklist/AnalyzeTextWithBlocklist.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/AzureAIContentSafety/HEAD/AnalyzeTextWithBlocklist/AnalyzeTextWithBlocklist.csproj -------------------------------------------------------------------------------- /AnalyzeTextWithBlocklist/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/AzureAIContentSafety/HEAD/AnalyzeTextWithBlocklist/Program.cs -------------------------------------------------------------------------------- /AzureAIContentSafety.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/AzureAIContentSafety/HEAD/AzureAIContentSafety.sln -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/AzureAIContentSafety/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/AzureAIContentSafety/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Doc.file: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Doc/Test.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/AzureAIContentSafety/HEAD/LICENSE.md -------------------------------------------------------------------------------- /OtherBlocklistOperations/OtherBlocklistOperations.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/AzureAIContentSafety/HEAD/OtherBlocklistOperations/OtherBlocklistOperations.csproj -------------------------------------------------------------------------------- /OtherBlocklistOperations/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/AzureAIContentSafety/HEAD/OtherBlocklistOperations/Program.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/AzureAIContentSafety/HEAD/README.md -------------------------------------------------------------------------------- /dotnet/1.0.0-beta.1/AnalyzeImage/AnalyzeImage.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/AzureAIContentSafety/HEAD/dotnet/1.0.0-beta.1/AnalyzeImage/AnalyzeImage.csproj -------------------------------------------------------------------------------- /dotnet/1.0.0-beta.1/AnalyzeImage/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/AzureAIContentSafety/HEAD/dotnet/1.0.0-beta.1/AnalyzeImage/Program.cs -------------------------------------------------------------------------------- /dotnet/1.0.0-beta.1/AnalyzeImage/sample_data/image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/AzureAIContentSafety/HEAD/dotnet/1.0.0-beta.1/AnalyzeImage/sample_data/image.jpg -------------------------------------------------------------------------------- /dotnet/1.0.0-beta.1/AnalyzeText/AnalyzeText.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/AzureAIContentSafety/HEAD/dotnet/1.0.0-beta.1/AnalyzeText/AnalyzeText.csproj -------------------------------------------------------------------------------- /dotnet/1.0.0-beta.1/AnalyzeText/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/AzureAIContentSafety/HEAD/dotnet/1.0.0-beta.1/AnalyzeText/Program.cs -------------------------------------------------------------------------------- /dotnet/1.0.0-beta.1/ManageBlocklist/ManageBlocklist.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/AzureAIContentSafety/HEAD/dotnet/1.0.0-beta.1/ManageBlocklist/ManageBlocklist.csproj -------------------------------------------------------------------------------- /dotnet/1.0.0-beta.1/ManageBlocklist/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/AzureAIContentSafety/HEAD/dotnet/1.0.0-beta.1/ManageBlocklist/Program.cs -------------------------------------------------------------------------------- /dotnet/1.0.0/AnalyzeImage/AnalyzeImage.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/AzureAIContentSafety/HEAD/dotnet/1.0.0/AnalyzeImage/AnalyzeImage.csproj -------------------------------------------------------------------------------- /dotnet/1.0.0/AnalyzeImage/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/AzureAIContentSafety/HEAD/dotnet/1.0.0/AnalyzeImage/Program.cs -------------------------------------------------------------------------------- /dotnet/1.0.0/AnalyzeImage/sample_data/image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/AzureAIContentSafety/HEAD/dotnet/1.0.0/AnalyzeImage/sample_data/image.jpg -------------------------------------------------------------------------------- /dotnet/1.0.0/AnalyzeText/AnalyzeText.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/AzureAIContentSafety/HEAD/dotnet/1.0.0/AnalyzeText/AnalyzeText.csproj -------------------------------------------------------------------------------- /dotnet/1.0.0/AnalyzeText/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/AzureAIContentSafety/HEAD/dotnet/1.0.0/AnalyzeText/Program.cs -------------------------------------------------------------------------------- /dotnet/1.0.0/ManageBlocklist/ManageBlocklist.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/AzureAIContentSafety/HEAD/dotnet/1.0.0/ManageBlocklist/ManageBlocklist.csproj -------------------------------------------------------------------------------- /dotnet/1.0.0/ManageBlocklist/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/AzureAIContentSafety/HEAD/dotnet/1.0.0/ManageBlocklist/Program.cs -------------------------------------------------------------------------------- /java/1.0.0-beta.1/azure-ai-contentsafety-samples-1.0.0-beta.1.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/AzureAIContentSafety/HEAD/java/1.0.0-beta.1/azure-ai-contentsafety-samples-1.0.0-beta.1.iml -------------------------------------------------------------------------------- /java/1.0.0-beta.1/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/AzureAIContentSafety/HEAD/java/1.0.0-beta.1/pom.xml -------------------------------------------------------------------------------- /java/1.0.0-beta.1/src/samples/java/org/example/AnalyzeImage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/AzureAIContentSafety/HEAD/java/1.0.0-beta.1/src/samples/java/org/example/AnalyzeImage.java -------------------------------------------------------------------------------- /java/1.0.0-beta.1/src/samples/java/org/example/AnalyzeText.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/AzureAIContentSafety/HEAD/java/1.0.0-beta.1/src/samples/java/org/example/AnalyzeText.java -------------------------------------------------------------------------------- /java/1.0.0-beta.1/src/samples/java/org/example/ManageTextBlocklist.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/AzureAIContentSafety/HEAD/java/1.0.0-beta.1/src/samples/java/org/example/ManageTextBlocklist.java -------------------------------------------------------------------------------- /java/1.0.0-beta.1/src/samples/resources/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/AzureAIContentSafety/HEAD/java/1.0.0-beta.1/src/samples/resources/image.png -------------------------------------------------------------------------------- /java/1.0.0/azure-ai-contentsafety-samples-1.0.0.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/AzureAIContentSafety/HEAD/java/1.0.0/azure-ai-contentsafety-samples-1.0.0.iml -------------------------------------------------------------------------------- /java/1.0.0/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/AzureAIContentSafety/HEAD/java/1.0.0/pom.xml -------------------------------------------------------------------------------- /java/1.0.0/src/samples/java/org/example/AnalyzeImage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/AzureAIContentSafety/HEAD/java/1.0.0/src/samples/java/org/example/AnalyzeImage.java -------------------------------------------------------------------------------- /java/1.0.0/src/samples/java/org/example/AnalyzeText.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/AzureAIContentSafety/HEAD/java/1.0.0/src/samples/java/org/example/AnalyzeText.java -------------------------------------------------------------------------------- /java/1.0.0/src/samples/java/org/example/AnalyzeTextWithBlocklist.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/AzureAIContentSafety/HEAD/java/1.0.0/src/samples/java/org/example/AnalyzeTextWithBlocklist.java -------------------------------------------------------------------------------- /java/1.0.0/src/samples/java/org/example/CreateClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/AzureAIContentSafety/HEAD/java/1.0.0/src/samples/java/org/example/CreateClient.java -------------------------------------------------------------------------------- /java/1.0.0/src/samples/java/org/example/ManageTextBlocklist.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/AzureAIContentSafety/HEAD/java/1.0.0/src/samples/java/org/example/ManageTextBlocklist.java -------------------------------------------------------------------------------- /java/1.0.0/src/samples/java/org/example/OtherBlocklistOperations.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/AzureAIContentSafety/HEAD/java/1.0.0/src/samples/java/org/example/OtherBlocklistOperations.java -------------------------------------------------------------------------------- /java/1.0.0/src/samples/resources/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/AzureAIContentSafety/HEAD/java/1.0.0/src/samples/resources/image.png -------------------------------------------------------------------------------- /js/1.0.0-beta.1/javascript/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/AzureAIContentSafety/HEAD/js/1.0.0-beta.1/javascript/README.md -------------------------------------------------------------------------------- /js/1.0.0-beta.1/javascript/example-data/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/AzureAIContentSafety/HEAD/js/1.0.0-beta.1/javascript/example-data/image.png -------------------------------------------------------------------------------- /js/1.0.0-beta.1/javascript/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/AzureAIContentSafety/HEAD/js/1.0.0-beta.1/javascript/package.json -------------------------------------------------------------------------------- /js/1.0.0-beta.1/javascript/sample.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/AzureAIContentSafety/HEAD/js/1.0.0-beta.1/javascript/sample.env -------------------------------------------------------------------------------- /js/1.0.0-beta.1/javascript/sampleAnalyzeImage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/AzureAIContentSafety/HEAD/js/1.0.0-beta.1/javascript/sampleAnalyzeImage.js -------------------------------------------------------------------------------- /js/1.0.0-beta.1/javascript/sampleAnalyzeText.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/AzureAIContentSafety/HEAD/js/1.0.0-beta.1/javascript/sampleAnalyzeText.js -------------------------------------------------------------------------------- /js/1.0.0-beta.1/javascript/sampleManageBlocklist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/AzureAIContentSafety/HEAD/js/1.0.0-beta.1/javascript/sampleManageBlocklist.js -------------------------------------------------------------------------------- /js/1.0.0-beta.1/typescript/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/AzureAIContentSafety/HEAD/js/1.0.0-beta.1/typescript/README.md -------------------------------------------------------------------------------- /js/1.0.0-beta.1/typescript/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/AzureAIContentSafety/HEAD/js/1.0.0-beta.1/typescript/package.json -------------------------------------------------------------------------------- /js/1.0.0-beta.1/typescript/sample.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/AzureAIContentSafety/HEAD/js/1.0.0-beta.1/typescript/sample.env -------------------------------------------------------------------------------- /js/1.0.0-beta.1/typescript/src/example-data/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/AzureAIContentSafety/HEAD/js/1.0.0-beta.1/typescript/src/example-data/image.png -------------------------------------------------------------------------------- /js/1.0.0-beta.1/typescript/src/sampleAnalyzeImage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/AzureAIContentSafety/HEAD/js/1.0.0-beta.1/typescript/src/sampleAnalyzeImage.ts -------------------------------------------------------------------------------- /js/1.0.0-beta.1/typescript/src/sampleAnalyzeText.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/AzureAIContentSafety/HEAD/js/1.0.0-beta.1/typescript/src/sampleAnalyzeText.ts -------------------------------------------------------------------------------- /js/1.0.0-beta.1/typescript/src/sampleManageBlocklist.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/AzureAIContentSafety/HEAD/js/1.0.0-beta.1/typescript/src/sampleManageBlocklist.ts -------------------------------------------------------------------------------- /js/1.0.0-beta.1/typescript/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/AzureAIContentSafety/HEAD/js/1.0.0-beta.1/typescript/tsconfig.json -------------------------------------------------------------------------------- /js/1.0.0/javascript/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/AzureAIContentSafety/HEAD/js/1.0.0/javascript/README.md -------------------------------------------------------------------------------- /js/1.0.0/javascript/example-data/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/AzureAIContentSafety/HEAD/js/1.0.0/javascript/example-data/image.png -------------------------------------------------------------------------------- /js/1.0.0/javascript/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/AzureAIContentSafety/HEAD/js/1.0.0/javascript/package.json -------------------------------------------------------------------------------- /js/1.0.0/javascript/sample.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/AzureAIContentSafety/HEAD/js/1.0.0/javascript/sample.env -------------------------------------------------------------------------------- /js/1.0.0/javascript/sampleAnalyzeImage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/AzureAIContentSafety/HEAD/js/1.0.0/javascript/sampleAnalyzeImage.js -------------------------------------------------------------------------------- /js/1.0.0/javascript/sampleAnalyzeText.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/AzureAIContentSafety/HEAD/js/1.0.0/javascript/sampleAnalyzeText.js -------------------------------------------------------------------------------- /js/1.0.0/javascript/sampleAnalyzeTextWithBlocklist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/AzureAIContentSafety/HEAD/js/1.0.0/javascript/sampleAnalyzeTextWithBlocklist.js -------------------------------------------------------------------------------- /js/1.0.0/javascript/sampleManageBlocklist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/AzureAIContentSafety/HEAD/js/1.0.0/javascript/sampleManageBlocklist.js -------------------------------------------------------------------------------- /js/1.0.0/javascript/sampleOtherBlocklistOperations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/AzureAIContentSafety/HEAD/js/1.0.0/javascript/sampleOtherBlocklistOperations.js -------------------------------------------------------------------------------- /js/1.0.0/typescript/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/AzureAIContentSafety/HEAD/js/1.0.0/typescript/README.md -------------------------------------------------------------------------------- /js/1.0.0/typescript/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/AzureAIContentSafety/HEAD/js/1.0.0/typescript/package.json -------------------------------------------------------------------------------- /js/1.0.0/typescript/sample.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/AzureAIContentSafety/HEAD/js/1.0.0/typescript/sample.env -------------------------------------------------------------------------------- /js/1.0.0/typescript/src/example-data/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/AzureAIContentSafety/HEAD/js/1.0.0/typescript/src/example-data/image.png -------------------------------------------------------------------------------- /js/1.0.0/typescript/src/sampleAnalyzeImage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/AzureAIContentSafety/HEAD/js/1.0.0/typescript/src/sampleAnalyzeImage.ts -------------------------------------------------------------------------------- /js/1.0.0/typescript/src/sampleAnalyzeText.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/AzureAIContentSafety/HEAD/js/1.0.0/typescript/src/sampleAnalyzeText.ts -------------------------------------------------------------------------------- /js/1.0.0/typescript/src/sampleAnalyzeTextWithBlocklist.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/AzureAIContentSafety/HEAD/js/1.0.0/typescript/src/sampleAnalyzeTextWithBlocklist.ts -------------------------------------------------------------------------------- /js/1.0.0/typescript/src/sampleManageBlocklist.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/AzureAIContentSafety/HEAD/js/1.0.0/typescript/src/sampleManageBlocklist.ts -------------------------------------------------------------------------------- /js/1.0.0/typescript/src/sampleOtherBlocklistOperations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/AzureAIContentSafety/HEAD/js/1.0.0/typescript/src/sampleOtherBlocklistOperations.ts -------------------------------------------------------------------------------- /js/1.0.0/typescript/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/AzureAIContentSafety/HEAD/js/1.0.0/typescript/tsconfig.json -------------------------------------------------------------------------------- /python/1.0.0/sample_analyze_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/AzureAIContentSafety/HEAD/python/1.0.0/sample_analyze_image.py -------------------------------------------------------------------------------- /python/1.0.0/sample_analyze_image_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/AzureAIContentSafety/HEAD/python/1.0.0/sample_analyze_image_async.py -------------------------------------------------------------------------------- /python/1.0.0/sample_analyze_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/AzureAIContentSafety/HEAD/python/1.0.0/sample_analyze_text.py -------------------------------------------------------------------------------- /python/1.0.0/sample_analyze_text_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/AzureAIContentSafety/HEAD/python/1.0.0/sample_analyze_text_async.py -------------------------------------------------------------------------------- /python/1.0.0/sample_analyze_text_with_blocklist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/AzureAIContentSafety/HEAD/python/1.0.0/sample_analyze_text_with_blocklist.py -------------------------------------------------------------------------------- /python/1.0.0/sample_analyze_video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/AzureAIContentSafety/HEAD/python/1.0.0/sample_analyze_video.py -------------------------------------------------------------------------------- /python/1.0.0/sample_analyze_video_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/AzureAIContentSafety/HEAD/python/1.0.0/sample_analyze_video_async.py -------------------------------------------------------------------------------- /python/1.0.0/sample_data/image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/AzureAIContentSafety/HEAD/python/1.0.0/sample_data/image.jpg -------------------------------------------------------------------------------- /python/1.0.0/sample_data/video.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/AzureAIContentSafety/HEAD/python/1.0.0/sample_data/video.mp4 -------------------------------------------------------------------------------- /python/1.0.0/sample_manage_blocklist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/AzureAIContentSafety/HEAD/python/1.0.0/sample_manage_blocklist.py -------------------------------------------------------------------------------- /python/1.0.0/sample_other_blocklist_operations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/AzureAIContentSafety/HEAD/python/1.0.0/sample_other_blocklist_operations.py -------------------------------------------------------------------------------- /python/1.0.0b1/sample_analyze_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/AzureAIContentSafety/HEAD/python/1.0.0b1/sample_analyze_image.py -------------------------------------------------------------------------------- /python/1.0.0b1/sample_analyze_image_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/AzureAIContentSafety/HEAD/python/1.0.0b1/sample_analyze_image_async.py -------------------------------------------------------------------------------- /python/1.0.0b1/sample_analyze_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/AzureAIContentSafety/HEAD/python/1.0.0b1/sample_analyze_text.py -------------------------------------------------------------------------------- /python/1.0.0b1/sample_analyze_text_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/AzureAIContentSafety/HEAD/python/1.0.0b1/sample_analyze_text_async.py -------------------------------------------------------------------------------- /python/1.0.0b1/sample_data/image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/AzureAIContentSafety/HEAD/python/1.0.0b1/sample_data/image.jpg -------------------------------------------------------------------------------- /python/1.0.0b1/sample_manage_blocklist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/AzureAIContentSafety/HEAD/python/1.0.0b1/sample_manage_blocklist.py --------------------------------------------------------------------------------