added delete fine tune model endpoint (#497)

This commit is contained in:
Brendan Martin
2023-09-25 04:08:45 -04:00
committed by GitHub
parent 8e4b7963a3
commit 0d5256fb82
3 changed files with 38 additions and 0 deletions

View File

@@ -271,6 +271,9 @@ func TestClientReturnsRequestBuilderErrors(t *testing.T) {
{"GetModel", func() (any, error) {
return client.GetModel(ctx, "text-davinci-003")
}},
{"DeleteFineTuneModel", func() (any, error) {
return client.DeleteFineTuneModel(ctx, "")
}},
}
for _, testCase := range testCases {