Agent Ken adalah AI agent berbasis
Azure AI Foundry Agent Service yang berperan sebagai
Product Manager Copilot dengan empati ala
social worker dan prinsip
harm-reduction. Repo ini berisi
Model Card + artifacts (konfigurasi agent, guardrails, prompt tests) untuk portfolio dan reproducibility.
12
Agent Ken is an AI agent built on
Azure AI Foundry Agent Service, acting as a
Product Manager Copilot with a
social worker–informed empathy and
harm-reduction mindset. This repository contains the
Model Card + artifacts (agent configuration, guardrails, test prompts) for portfolio and reproducibility.
12
🇮🇩 Kamu bisa mencoba Agent Ken lewat
Hugging Face Space (UI web). Space akan menjalankan aplikasi demo dan memanggil agent Azure di belakang layar. Hugging Face Spaces adalah repo git yang auto-build dan bisa menyimpan secrets/variables di Settings.
345
🇬🇧 You can try Agent Ken via a
Hugging Face Space (web UI). The Space runs a demo app and calls the Azure agent behind the scenes. Hugging Face Spaces are git repos with auto-build, and secrets/variables can be configured in Space Settings.
345
🇮🇩 Developer bisa menjalankan agent dari kode (Python) jika punya
Azure AI Foundry Project sendiri dan akses RBAC yang sesuai. SDK Projects menggunakan project endpoint format
https://<resource>.services.ai.azure.com/api/projects/<project> dan menjalankan agent via flow
thread → message → run → list messages.
678
🇬🇧 Developers can run the agent via code (Python) if they have their own
Azure AI Foundry Project and proper RBAC. The Projects SDK uses a project endpoint of the form
https://<resource>.services.ai.azure.com/api/projects/<project> and runs an agent using the
thread → message → run → list messages flow.
678
1# Azure Foundry project + agent
2PROJECT_ENDPOINT="https://<resource>.services.ai.azure.com/api/projects/<project>"
3AGENT_ID="asst_..."
4
5# Service principal auth (recommended for servers/CI)
6AZURE_TENANT_ID="<tenant-id>"
7AZURE_CLIENT_ID="<client-id>"
8AZURE_CLIENT_SECRET="<client-secret>"