diff --git a/src/tests/OpenAI.IntegrationTests/Tools/VariousTypesTools.cs b/src/tests/OpenAI.IntegrationTests/Tools/VariousTypesTools.cs index bf2e479..3b6844c 100755 --- a/src/tests/OpenAI.IntegrationTests/Tools/VariousTypesTools.cs +++ b/src/tests/OpenAI.IntegrationTests/Tools/VariousTypesTools.cs @@ -1,4 +1,6 @@ -using DescriptionAttribute = System.ComponentModel.DescriptionAttribute; +// ReSharper disable RedundantUsingDirective +using System; +using DescriptionAttribute = System.ComponentModel.DescriptionAttribute; namespace OpenAI.IntegrationTests; diff --git a/src/tests/OpenAI.IntegrationTests/Tools/WeatherStrictTools.cs b/src/tests/OpenAI.IntegrationTests/Tools/WeatherStrictTools.cs index 5c727b2..141d65b 100755 --- a/src/tests/OpenAI.IntegrationTests/Tools/WeatherStrictTools.cs +++ b/src/tests/OpenAI.IntegrationTests/Tools/WeatherStrictTools.cs @@ -1,4 +1,7 @@ -using DescriptionAttribute = System.ComponentModel.DescriptionAttribute; +// ReSharper disable RedundantUsingDirective +using System.Threading; +using System.Threading.Tasks; +using DescriptionAttribute = System.ComponentModel.DescriptionAttribute; namespace OpenAI.IntegrationTests; diff --git a/src/tests/OpenAI.IntegrationTests/Tools/WeatherTools.cs b/src/tests/OpenAI.IntegrationTests/Tools/WeatherTools.cs index cd7ffb7..270127c 100755 --- a/src/tests/OpenAI.IntegrationTests/Tools/WeatherTools.cs +++ b/src/tests/OpenAI.IntegrationTests/Tools/WeatherTools.cs @@ -1,4 +1,7 @@ -using DescriptionAttribute = System.ComponentModel.DescriptionAttribute; +// ReSharper disable RedundantUsingDirective +using System.Threading; +using System.Threading.Tasks; +using DescriptionAttribute = System.ComponentModel.DescriptionAttribute; namespace OpenAI.IntegrationTests;