Skip to content

Commit ef55804

Browse files
committed
Fix linkage to FT models table. Again.
1 parent 0c9eec7 commit ef55804

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

articles/ai-foundry/openai/includes/fine-tuning-python.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ print("Status:", response.id)
159159
print(response.model_dump_json(indent=2))
160160
```
161161

162-
If you are fine tuning a model that supports [Global Training](./fine-tune-models.md), you can specify the training type by using the `extra_body` named argument:
162+
If you are fine tuning a model that supports [Global Training](../concepts/models.md#fine-tuning-models), you can specify the training type by using the `extra_body` named argument:
163163

164164
```python
165165
response = client.fine_tuning.jobs.create(

articles/ai-foundry/openai/includes/fine-tuning-rest.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ curl -X POST $AZURE_OPENAI_ENDPOINT/openai/fine_tuning/jobs?api-version=2024-10-
135135
}'
136136
```
137137

138-
If you are fine tuning a model that supports [Global Training](./fine-tune-models.md), you can specify the training type by using the `extra_body` named argument and using api-version `2025-04-01-preview`:
138+
If you are fine tuning a model that supports [Global Training](../concepts/models.md#fine-tuning-models), you can specify the training type by using the `extra_body` named argument and using api-version `2025-04-01-preview`:
139139

140140
```bash
141141
curl -X POST $AZURE_OPENAI_ENDPOINT/openai/fine_tuning/jobs?api-version=2025-04-01-preview \

0 commit comments

Comments
 (0)