Skip to content

Commit

Permalink
refactor: replace wildcard imports with explicit class imports
Browse files Browse the repository at this point in the history
Signed-off-by: Alexandros Pappas <[email protected]>
  • Loading branch information
apappascs authored and ilayaperumalg committed Feb 14, 2025
1 parent 7bc79f5 commit c623264
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,13 @@

import java.nio.charset.StandardCharsets;

import com.azure.ai.openai.models.*;
import com.azure.ai.openai.models.ChatChoiceLogProbabilityInfo;
import com.azure.ai.openai.models.ChatTokenLogProbabilityInfo;
import com.azure.ai.openai.models.ChatTokenLogProbabilityResult;
import com.azure.ai.openai.models.ContentFilterResult;
import com.azure.ai.openai.models.ContentFilterResultDetailsForPrompt;
import com.azure.ai.openai.models.ContentFilterResultsForChoice;
import com.azure.ai.openai.models.ContentFilterSeverity;
import org.junit.jupiter.api.Test;

import org.springframework.ai.azure.openai.AzureOpenAiChatModel;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,14 @@
import java.util.Map;

import static org.assertj.core.api.Assertions.assertThat;
import static org.springframework.ai.vectorstore.filter.Filter.ExpressionType.*;
import static org.springframework.ai.vectorstore.filter.Filter.ExpressionType.AND;
import static org.springframework.ai.vectorstore.filter.Filter.ExpressionType.EQ;
import static org.springframework.ai.vectorstore.filter.Filter.ExpressionType.GTE;
import static org.springframework.ai.vectorstore.filter.Filter.ExpressionType.IN;
import static org.springframework.ai.vectorstore.filter.Filter.ExpressionType.LTE;
import static org.springframework.ai.vectorstore.filter.Filter.ExpressionType.NE;
import static org.springframework.ai.vectorstore.filter.Filter.ExpressionType.NIN;
import static org.springframework.ai.vectorstore.filter.Filter.ExpressionType.OR;

/**
* @author Jemin Huh
Expand Down

0 comments on commit c623264

Please sign in to comment.