Skip to content

Commit 9c8c6d7

Browse files
committed
chore: PlaygroundService.cs
GetDeploymentModels() 메소드 NotImplementedException 처리(임시)
1 parent 4da7b24 commit 9c8c6d7

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/AzureOpenAIProxy.ApiApp/Services/PlaygroundService.cs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,11 @@ public class PlaygroundService(IEventRepository eventRepository) : IPlaygroundSe
2727
/// <inheritdoc/>
2828
public async Task<List<DeploymentModelDetails>> GetDeploymentModels(Guid eventId)
2929
{
30-
var result = await _eventRepository.GetDeploymentModels(eventId).ConfigureAwait(false);
30+
// var result = await _eventRepository.GetDeploymentModels(eventId).ConfigureAwait(false);
3131

32-
return result;
32+
// return result;
33+
34+
throw new NotImplementedException();
3335
}
3436

3537
/// <inheritdoc/>

0 commit comments

Comments
 (0)