git: bde8ef449551 - main - devel/py-azure-ai-projects: Add py-azure-ai-projects 1.0.0

From: Po-Chuan Hsieh <sunpoet_at_FreeBSD.org>
Date: Thu, 15 Jan 2026 11:57:13 UTC
The branch main has been updated by sunpoet:

URL: https://cgit.FreeBSD.org/ports/commit/?id=bde8ef449551794793ea8a80dbce367b94ba9851

commit bde8ef449551794793ea8a80dbce367b94ba9851
Author:     Po-Chuan Hsieh <sunpoet@FreeBSD.org>
AuthorDate: 2026-01-15 11:34:44 +0000
Commit:     Po-Chuan Hsieh <sunpoet@FreeBSD.org>
CommitDate: 2026-01-15 11:52:59 +0000

    devel/py-azure-ai-projects: Add py-azure-ai-projects 1.0.0
    
    The AI Projects client library (in preview) is part of the Microsoft Foundry
    SDK, and provides easy access to resources in your Microsoft Foundry Project.
    Use it to:
    - Create and run Agents using methods on methods on the .agents client property.
    - Enhance Agents with specialized tools:
    - Get an OpenAI client using .get_openai_client() method to run Responses,
      Conversations, Evals and FineTuning operations with your Agent.
    - Manage memory stores for Agent conversations, using the .memory_stores
      operations.
    - Explore additional evaluation tools to assess the performance of your
      generative AI application, using the .evaluation_rules,
      .evaluation_taxonomies, .evaluators, .insights, and .schedules operations.
    - Run Red Team scans to identify risks associated with your generative AI
      application, using the ".red_teams" operations.
    - Fine tune AI Models on your data.
    - Enumerate AI Models deployed to your Foundry Project using the .deployments
      operations.
    - Enumerate connected Azure resources in your Foundry project using the
      .connections operations.
    - Upload documents and create Datasets to reference them using the .datasets
      operations.
    - Create and enumerate Search Indexes using methods the .indexes operations.
---
 devel/Makefile                       |  1 +
 devel/py-azure-ai-projects/Makefile  | 30 ++++++++++++++++++++++++++++++
 devel/py-azure-ai-projects/distinfo  |  3 +++
 devel/py-azure-ai-projects/pkg-descr | 22 ++++++++++++++++++++++
 4 files changed, 56 insertions(+)

diff --git a/devel/Makefile b/devel/Makefile
index f0281afe030c..a4bb4d0d5819 100644
--- a/devel/Makefile
+++ b/devel/Makefile
@@ -4467,6 +4467,7 @@
     SUBDIR += py-awscli
     SUBDIR += py-awscrt
     SUBDIR += py-azure-ai-agents
+    SUBDIR += py-azure-ai-projects
     SUBDIR += py-azure-appconfiguration
     SUBDIR += py-azure-batch
     SUBDIR += py-azure-core
diff --git a/devel/py-azure-ai-projects/Makefile b/devel/py-azure-ai-projects/Makefile
new file mode 100644
index 000000000000..55e8627a6ed2
--- /dev/null
+++ b/devel/py-azure-ai-projects/Makefile
@@ -0,0 +1,30 @@
+PORTNAME=	azure-ai-projects
+PORTVERSION=	1.0.0
+CATEGORIES=	devel python
+MASTER_SITES=	PYPI
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+DISTNAME=	azure_ai_projects-${PORTVERSION}
+
+MAINTAINER=	sunpoet@FreeBSD.org
+COMMENT=	Microsoft Azure AI Projects Client Library for Python
+WWW=		https://azure.github.io/azure-sdk-for-python/ \
+		https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/ai/azure-ai-projects \
+		https://github.com/Azure/azure-sdk-for-python
+
+LICENSE=	MIT
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+BUILD_DEPENDS=	${PYTHON_PKGNAMEPREFIX}setuptools>=0:devel/py-setuptools@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}wheel>=0:devel/py-wheel@${PY_FLAVOR}
+RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}azure-ai-agents>=1.0.0:devel/py-azure-ai-agents@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}azure-core>=1.30.0:devel/py-azure-core@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}azure-storage-blob>=12.15.0:devel/py-azure-storage-blob@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}isodate>=0.6.1:devel/py-isodate@${PY_FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}typing-extensions>=4.12.2:devel/py-typing-extensions@${PY_FLAVOR}
+
+USES=		python
+USE_PYTHON=	autoplist concurrent pep517
+
+NO_ARCH=	yes
+
+.include <bsd.port.mk>
diff --git a/devel/py-azure-ai-projects/distinfo b/devel/py-azure-ai-projects/distinfo
new file mode 100644
index 000000000000..8b51a57184df
--- /dev/null
+++ b/devel/py-azure-ai-projects/distinfo
@@ -0,0 +1,3 @@
+TIMESTAMP = 1768283062
+SHA256 (azure_ai_projects-1.0.0.tar.gz) = b5f03024ccf0fd543fbe0f5abcc74e45b15eccc1c71ab87fc71c63061d9fd63c
+SIZE (azure_ai_projects-1.0.0.tar.gz) = 130798
diff --git a/devel/py-azure-ai-projects/pkg-descr b/devel/py-azure-ai-projects/pkg-descr
new file mode 100644
index 000000000000..cab8a644b253
--- /dev/null
+++ b/devel/py-azure-ai-projects/pkg-descr
@@ -0,0 +1,22 @@
+The AI Projects client library (in preview) is part of the Microsoft Foundry
+SDK, and provides easy access to resources in your Microsoft Foundry Project.
+Use it to:
+- Create and run Agents using methods on methods on the .agents client property.
+- Enhance Agents with specialized tools:
+- Get an OpenAI client using .get_openai_client() method to run Responses,
+  Conversations, Evals and FineTuning operations with your Agent.
+- Manage memory stores for Agent conversations, using the .memory_stores
+  operations.
+- Explore additional evaluation tools to assess the performance of your
+  generative AI application, using the .evaluation_rules,
+  .evaluation_taxonomies, .evaluators, .insights, and .schedules operations.
+- Run Red Team scans to identify risks associated with your generative AI
+  application, using the ".red_teams" operations.
+- Fine tune AI Models on your data.
+- Enumerate AI Models deployed to your Foundry Project using the .deployments
+  operations.
+- Enumerate connected Azure resources in your Foundry project using the
+  .connections operations.
+- Upload documents and create Datasets to reference them using the .datasets
+  operations.
+- Create and enumerate Search Indexes using methods the .indexes operations.