惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

L
LangChain Blog
N
Netflix TechBlog - Medium
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
V
V2EX
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Blog — PlanetScale
Blog — PlanetScale
Microsoft Security Blog
Microsoft Security Blog
D
Docker
WordPress大学
WordPress大学
罗磊的独立博客
J
Java Code Geeks
博客园 - 【当耐特】
博客园 - 司徒正美
雷峰网
雷峰网
H
Help Net Security
酷 壳 – CoolShell
酷 壳 – CoolShell
Last Week in AI
Last Week in AI
宝玉的分享
宝玉的分享
Martin Fowler
Martin Fowler
T
Tailwind CSS Blog
Google DeepMind News
Google DeepMind News
M
MIT News - Artificial intelligence
Recent Announcements
Recent Announcements
B
Blog

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Using Azure Local Foundry CLI with PowerShell
Olivier Mios · 2026-05-15 · via DEV Community

Inference costs are climbing. Anthropic, OpenAI, and Microsoft have all tightened their token quotas this year. The era of subsidized generative AI is quietly ending.

Not every task needs a frontier model. Burning cloud tokens on a formatting job or a quick summary is just a waste of money.

Privacy and data protection add a second constraint. Some workloads simply can't leave your perimeter. This include European users, where RGPD is enforced. The EU Cloud act will soon add more constraints.

That's where local models come in. Ollama is one of the best reference, solid API, runs well with tools like OpenCode and come with plenty of models.

When I got a new laptop with an NPU chip, I took Microsoft Local Foundry for a spin. The premise is simple: run inferences locally with an AI accelerator, no more cloud provider in the loop.

Local Foundry ships as an SDK (Windows, Linux, macOS) and as a CLI (Windows and macOS) in preview. This post focuses on the CLI.
To install Foundry local run this single line in a shell.

On Windows
winget install Microsoft.FoundryLocal

On MacOS
brew install microsoft/foundrylocal/foundrylocal

To manage models, there are three commands. list shows a detail list of available models, download pulls a model into the local cache, load puts it into the running service. run does in one shot, useful for quick tests.

foundry model list
foundry model run deepseek-r1-14b
foundry model download deepseek-r1-14b
foundry model load deepseek-r1-14b
foundry model run deepseek-r1-14b

The CLI is great for interactive use. But what if you want to automate it from PowerShell?

Two integration paths: the SDK (Python, C#, Rust, JavaScript) or the REST API exposed by the CLI. Since PowerShell has no direct SDK binding, we're taking the REST route.

Three prerequisites before any API call: the service must be running, a model must be loaded, and you need the REST API URI.

This script will start the service if not the service is stopped and get the REST API URI.

function get-foundryServiceStatus {
   return  & foundry service status
}

$getServiceStatus = get-foundryServiceStatus

if ($getServiceStatus -like "*service is not running*") 
{
     & foundry service start | Out-Null
     $getServiceStatus = get-foundryServiceStatus
}

# load a model in order to get the uri of the service
& foundry model load phi-3-mini-128k  | Out-Null

$pattern = 'https?://[^\s"]+'
$uri = [regex]::Match($getServiceStatus, $pattern).Value

$uri = $uri -replace '/openai/status$',''

$uri 

Enter fullscreen mode Exit fullscreen mode

Now we can create a function that will invoke the REST API with the correct format.

function Invoke-FoundryRequest {
    param(
        [Parameter(Mandatory)]
        [string]$Method,
        [Parameter(Mandatory)]
        [string]$FoundryBaseUrl,
        [Parameter(Mandatory)]
        [string]$Path,
        [hashtable]$Headers,
        $Body
    )

    $uri = "$FoundryBaseUrl$Path"

    $params = @{
        Method  = $Method
        Uri     = $uri
    }

    if ($Headers) { $params.Headers = $Headers }

    if ($Body) {
            $params.Body = ($Body | ConvertTo-Json -Depth 10)
            $params.ContentType = "application/json"
    }

    return Invoke-RestMethod @params
}

Enter fullscreen mode Exit fullscreen mode

From now on we can start playing with the API
To get a list of locally available models

Invoke-FoundryRequest -Method GET -Path "/openai/models" -FoundryBaseUrl $uri

But the most important part with a local agent is to start a chat. In this case there are several things to know.

The Local Foundry REST API is OpenAI Chat Completion-compatible. You don't send raw text; you send a structured array of role/content pairs. Roles are system, user, and assistant. The content is the prompt.

To send a prompt to the model you need two roles, system, to set the behaviour, tone, and context for the assistant, and user for the input. Assistant is the role used by the generated content from the model.

You need to provide the name of the model you want to use, not the name used for loading or running a model but the full name the one listed in the previous command. Here I use phi-3-mini-128k-instruct-qnn-npu:3.

The creativity can be adjusted with the temperature parameter. Between 0 and 2 to adjust the creativity of the response (higher value mean more creativity).

There are many other parameters available, they are listed on this page https://learn.microsoft.com/en-us/azure/foundry-local/reference/reference-rest#post-v1chatcompletions

To use the chat completion API, a POST needs to be made to the API Path /v1/chat/completions with a JSON data.

A function will help to handle the task.

function New-FoundryChatCompletion {
    [CmdletBinding()]
    param(
        [string]
        $Model = "phi-3-mini-128k-instruct-qnn-npu:3",
        [Parameter(Mandatory)]
        [array]
        $Messages,
        [Parameter(Mandatory)]
        [string]
        $FoundryBaseUrl,
        [double]
        $Temperature,
        [double]
        $TopP,
        [int]$MaxTokens
    )

    $body = @{
        model    = $Model
        messages = $Messages
        max_tokens = 2048
        max_completion_tokens = 2048
    }

    if ($PSBoundParameters.ContainsKey('Temperature')) { $body.temperature = $Temperature }
    if ($PSBoundParameters.ContainsKey('TopP'))        { $body.top_p       = $TopP }


    Invoke-FoundryRequest -Method POST -Path "/v1/chat/completions" -Body $body -FoundryBaseUrl $FoundryBaseUrl
}

Enter fullscreen mode Exit fullscreen mode

To use it, a message array with the two roles is needed

$messages = @(
    @{ role = "system"; content = "You are a PowerShell coding assistant. Only give code if requested." },
    @{ role = "user"; content = "Give me a PowerShell script to list all files in a directory." }
)

$chat = New-FoundryChatCompletion -FoundryBaseUrl "http://127.0.0.1:52236" -Temperature 0.2 -Messages $messages

Enter fullscreen mode Exit fullscreen mode

The model response will be found in an array named choice

$chat.choices[0].message.content

Enter fullscreen mode Exit fullscreen mode

The REST API gets you surprisingly far, but it has limits. The next post covers the .NET SDK, which unlocks the full surface from PowerShell.