-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfoundry-kit.yaml.example
More file actions
46 lines (39 loc) · 3.39 KB
/
Copy pathfoundry-kit.yaml.example
File metadata and controls
46 lines (39 loc) · 3.39 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# fondry-kit.yaml — Example project configuration
# Copy this file to fondry-kit.yaml and fill in your values.
# All fields can be overridden by environment variables prefixed with FONDRY_
# e.g. FONDRY_FOUNDRY_ENDPOINT overrides foundry_endpoint.
# ─────────────────────────────────────────────────────────────────────────────
# Azure AI Foundry project endpoint
# Format: https://<hub-name>.services.ai.azure.com/api/projects/<project-name>
# ─────────────────────────────────────────────────────────────────────────────
foundry_endpoint: "https://myhub.services.ai.azure.com/api/projects/myproject"
# ─────────────────────────────────────────────────────────────────────────────
# Azure AI Search endpoint (required for RAG / vector search features)
# Format: https://<service-name>.search.windows.net
# ─────────────────────────────────────────────────────────────────────────────
search_endpoint: "https://mysearch.search.windows.net"
# ─────────────────────────────────────────────────────────────────────────────
# Azure OpenAI endpoint (used for generating embeddings)
# Format: https://<resource-name>.openai.azure.com
# ─────────────────────────────────────────────────────────────────────────────
openai_endpoint: "https://myoai.openai.azure.com"
# Embedding model deployment name (must be deployed in your Azure OpenAI resource)
embedding_model: "text-embedding-3-small"
# Dimensionality of the embedding model output (1536 for text-embedding-3-small)
embedding_dimensions: 1536
# ─────────────────────────────────────────────────────────────────────────────
# Agents
# Each entry represents one Azure AI Foundry Hosted Agent.
# foundry_agent_id is written automatically by `fondry-kit agent init`.
# ─────────────────────────────────────────────────────────────────────────────
agents:
- name: my-bot
model: gpt-4o
instructions: "You are a helpful customer support assistant."
search_index: support-docs # optional: attach an AI Search index for RAG
foundry_agent_id: null # filled in by `fondry-kit agent init`
- name: code-helper
model: gpt-4o
instructions: "You are a senior software engineer. Be concise and precise."
search_index: null
foundry_agent_id: null