aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPo-Chuan Hsieh <sunpoet@FreeBSD.org>2026-01-15 11:34:44 +0000
committerPo-Chuan Hsieh <sunpoet@FreeBSD.org>2026-01-15 11:52:59 +0000
commitbde8ef449551794793ea8a80dbce367b94ba9851 (patch)
treeb818abe03f0ef32ede28a93f151bf491e7474c6f
parent3cab8edb4d985ac98adf42117809126e0af34306 (diff)
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.
-rw-r--r--devel/Makefile1
-rw-r--r--devel/py-azure-ai-projects/Makefile30
-rw-r--r--devel/py-azure-ai-projects/distinfo3
-rw-r--r--devel/py-azure-ai-projects/pkg-descr22
4 files changed, 56 insertions, 0 deletions
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.