azure-ai-contentsafety-java Skill
Build content moderation applications with Azure AI Content Safety SDK for Java. Use when implementing text/image analysis, blocklist management, or harm detection for hate, violence, sexual content, and self-harm. Published by microsoft in skills.
What is azure-ai-contentsafety-java Skill?
Build content moderation applications with Azure AI Content Safety SDK for Java. Use when implementing text/image analysis, blocklist management, or harm detection for hate, violence, sexual content, and self-harm. Published by microsoft in skills. This profile combines repository metadata with install, compatibility, and usage signals so developers can quickly decide whether it fits their agent workflow before opening the source repository.
Automated repository signals based on public metadata such as recency, license, installation evidence, and adoption. These are not a security audit or endorsement.
Key capabilities
- Includes SKILL.md support
- Reusable instructions support
- Data analysis
- Design and media
- Data analysis use cases
- Design and media use cases
Technical details
- Install or run with Copy skill directory
When to use azure-ai-contentsafety-java Skill
- Use it for data analysis.
- Use it for design and media.
Built with
Editorial notes
Source
- Creator: microsoft
- Repository: microsoft/skills
- Skill file: .github/plugins/azure-sdk-java/skills/azure-ai-contentsafety-java/SKILL.md
What it does
Build content moderation applications with Azure AI Content Safety SDK for Java. Use when implementing text/image analysis, blocklist management, or harm detection for hate, violence, sexual content, and self-harm.
Skill instructions
Azure AI Content Safety SDK for Java Build content moderation applications using the Azure AI Content Safety SDK for Java. Installation xml <dependency <groupIdcom.azure</groupId <artifactIdazure-ai-contentsafety</artifactId <version1.1.0-beta.1</version </dependency Client Creation With API Key java import com.azure.ai.contentsafety.ContentSafetyClient; import com.azure.ai.contentsafety.ContentSafetyClientBuilder; import com.azure.ai.contentsafety.BlocklistClient; import com.azure.ai.contentsafety.BlocklistClientBuilder; import com.azure.core.credential.KeyCredential; String endpoint = System.getenv("CONTENTSAFETYENDPOINT"); String key = System.getenv("CONTENTSAFETYKEY"); ContentSafetyClient contentSafetyClient = new ContentSafetyClientBuilder() .credential(new KeyCredential(key)) .endpoint(endpoint) .buildClient(); BlocklistClient blocklistClient = new BlocklistClientBuilder() .credential(new KeyCredential(key)) .endpoint(endpoint) .buildClient(); With DefaultAzureCredential java imp
Explore related resources
Frequently asked questions
What is azure-ai-contentsafety-java?
azure-ai-contentsafety-java is a open-source AI agent skill with Copy skill directory. Build content moderation applications with Azure AI Content Safety SDK for Java.
Who is azure-ai-contentsafety-java best for?
azure-ai-contentsafety-java is best for reusing agent instructions, scripts, and references, data analysis workflows, design and media workflows.
How do I install azure-ai-contentsafety-java?
Install or run azure-ai-contentsafety-java using Copy skill directory. Check azure-ai-contentsafety-java for the latest setup command.
Is azure-ai-contentsafety-java actively maintained?
azure-ai-contentsafety-java may need a closer maintenance check before production use.
Auto-fetched from GitHub.