Files
Nick Brady 54617557e6 Update Foundry branding (#6999)
Replace user-facing Azure AI Foundry branding with Microsoft Foundry across docs, samples, comments, and display text while preserving technical identifiers.

Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com>
Co-authored-by: Evan Mattson <35585003+moonbox3@users.noreply.github.com>
2026-07-14 06:44:26 +00:00

25 lines
624 B
Markdown

# Foundry Local Package (agent-framework-foundry-local)
Integration with Microsoft Foundry Local for local model inference.
## Main Classes
- **`FoundryLocalClient`** - Chat client for Foundry Local models
- **`FoundryLocalChatOptions`** - Options TypedDict for Foundry Local parameters
- **`FoundryLocalSettings`** - Pydantic settings for configuration
## Usage
```python
from agent_framework.foundry import FoundryLocalClient
client = FoundryLocalClient(model="your-local-model")
response = await client.get_response("Hello")
```
## Import Path
```python
from agent_framework.foundry import FoundryLocalClient
```