An Application Framework for AI Engineering
This report presents the forensic synthetic code analysis of spring-projects/spring-ai, a Java project with 9,130 GitHub stars. SynthScan v2.0 examined 442,489 lines of code across 2545 source files, recording 285 pattern matches distributed across 13 syntactic categories. The overall adjusted score of 3.2 places this repository in the Likely human-written band.
The scanner applied 160+ deterministic lexical heuristics, multi-line block detectors, abstract syntax tree depth profilers, and a cross-file Jaccard similarity matrix to construct a statistically normalised synthetic code estimate. All matches are individually weighted by severity coefficient and contextual multiplier before summation, and the resulting headline score is temporally discounted to account for the repository's development history relative to the commercial emergence of large language model coding tooling (November 2022 onward).
Longitudinal tracking requires multiple scan runs. Once this repository is re-scanned after new commits land, this chart will visualise how the synthetic code signal evolves over time — enabling you to detect whether AI authorship is growing, stabilising, or being actively corrected by human engineers.
Classifies detected patterns by their diagnostic confidence and structural impact. CRITICAL patterns (coefficient 10) represent definitive synthetic signatures — hallucinated imports, explicit LLM attribution metadata — virtually never produced by human authors. HIGH (5) indicates strong structural tells such as cross-file repetition or cross-linguistic idioms. MEDIUM (2) covers recognisable conversational padding and AI-specific vocabulary. LOW (1) captures subtle indicators like tautological comments and generic boilerplate that require density to carry independent signal.
This horizontal bar chart decomposes the repository's raw synthetic code score by top-level directory, allowing you to pinpoint precisely which modules or components carry the highest AI authorship density. Directories with disproportionately high scores relative to their size warrant targeted manual review: concentrated AI signatures often trace back to mass-generated configuration layers, auto-ported test suites, LLM-scaffolded boilerplate classes, or entire subsystems authored under heavy copilot assistance. Use this view to prioritise your human code-review effort.
The scanner identified 285 distinct pattern matches across 13 syntactic categories. Each entry below represents a discrete location in the source code where the engine recorded a statistically significant AI authorship indicator. Expand any category row to inspect the individual file paths, line numbers, code snippets, and the lexical context (CODE, COMMENT, or STRING) in which each match was detected.
Reading the findings table: The Severity column indicates the diagnostic confidence level (CRITICAL / HIGH / MEDIUM / LOW). The Context column identifies whether the match occurred inside executable code, an inline comment, or a string literal — comment-context matches receive a ×1.5 weight because LLMs systematically over-annotate. The ⚡ bolt icon marks clustered matches: three or more patterns within a 10-line window, each receiving an additional ×1.5 density multiplier as dense clusters constitute far stronger evidence of synthetic authorship than isolated hits.
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| CRITICAL | …/toolsearch/ToolSearchToolCallingAdvisorCallTests.java | 838 | new org.springframework.ai.chat.model.ToolContext(Map.of("toolSearchToolSessionId", sessionId))); | CODE |
| CRITICAL | …ork/ai/tool/toolsearch/index/VectorToolIndexTests.java | 67 | this.toolIndex = new org.springframework.ai.tool.toolsearch.index.vectorstore.VectorToolIndex(this.vectorStore); | CODE |
| CRITICAL | …ork/ai/model/tool/DefaultToolExecutionResultTests.java | 99 | var message1 = new org.springframework.ai.chat.messages.UserMessage("Hello"); | CODE |
| CRITICAL | …ork/ai/model/tool/DefaultToolExecutionResultTests.java | 100 | var message2 = new org.springframework.ai.chat.messages.AssistantMessage("Hi there!"); | CODE |
| CRITICAL | …ork/ai/model/tool/DefaultToolExecutionResultTests.java | 117 | history.add(new org.springframework.ai.chat.messages.UserMessage("First message")); | CODE |
| CRITICAL | …ork/ai/model/tool/DefaultToolExecutionResultTests.java | 119 | history.add(new org.springframework.ai.chat.messages.AssistantMessage("Last message")); | CODE |
| CRITICAL⚡ | …ork/ai/model/tool/DefaultToolExecutionResultTests.java | 131 | history.add(new org.springframework.ai.chat.messages.UserMessage("Valid message")); | CODE |
| CRITICAL⚡ | …ork/ai/model/tool/DefaultToolExecutionResultTests.java | 141 | conversationHistory1.add(new org.springframework.ai.chat.messages.UserMessage("Message 1")); | CODE |
| CRITICAL⚡ | …ork/ai/model/tool/DefaultToolExecutionResultTests.java | 144 | conversationHistory2.add(new org.springframework.ai.chat.messages.UserMessage("Message 2")); | CODE |
| CRITICAL | …ork/ai/model/tool/DefaultToolExecutionResultTests.java | 161 | var originalMessage = new org.springframework.ai.chat.messages.UserMessage("Original"); | CODE |
| CRITICAL | …ork/ai/model/tool/DefaultToolExecutionResultTests.java | 167 | conversationHistory.add(new org.springframework.ai.chat.messages.AssistantMessage("Added later")); | CODE |
| CRITICAL | …ork/ai/model/tool/DefaultToolExecutionResultTests.java | 178 | conversationHistory.add(new org.springframework.ai.chat.messages.UserMessage("Test message")); | CODE |
| CRITICAL | …ork/ai/model/tool/DefaultToolExecutionResultTests.java | 196 | List<Message> conversationHistory = List.of(new org.springframework.ai.chat.messages.UserMessage("Hello"), | CODE |
| CRITICAL | …ork/ai/model/tool/DefaultToolExecutionResultTests.java | 197 | new org.springframework.ai.chat.messages.UserMessage("Hi!")); | CODE |
| CRITICAL | …ork/ai/model/tool/DefaultToolExecutionResultTests.java | 211 | conversationHistory.add(new org.springframework.ai.chat.messages.UserMessage("Test")); | CODE |
| CRITICAL⚡ | …tation/context/DefaultMcpAsyncRequestContextTests.java | 220 | assertThat(org.junit.jupiter.api.Assertions.assertThrows(IllegalArgumentException.class, | CODE |
| CRITICAL⚡ | …tation/context/DefaultMcpAsyncRequestContextTests.java | 227 | assertThat(org.junit.jupiter.api.Assertions.assertThrows(IllegalArgumentException.class, | CODE |
| CRITICAL⚡ | …tation/context/DefaultMcpAsyncRequestContextTests.java | 234 | assertThat(org.junit.jupiter.api.Assertions.assertThrows(IllegalArgumentException.class, () -> { | CODE |
| CRITICAL⚡ | …tation/context/DefaultMcpAsyncRequestContextTests.java | 242 | assertThat(org.junit.jupiter.api.Assertions.assertThrows(IllegalArgumentException.class, () -> { | CODE |
| CRITICAL | …tation/context/DefaultMcpAsyncRequestContextTests.java | 500 | assertThat(org.junit.jupiter.api.Assertions.assertThrows(IllegalArgumentException.class, | CODE |
| CRITICAL | …tation/context/DefaultMcpAsyncRequestContextTests.java | 504 | assertThat(org.junit.jupiter.api.Assertions.assertThrows(IllegalArgumentException.class, | CODE |
| CRITICAL | …tation/context/DefaultMcpAsyncRequestContextTests.java | 645 | assertThat(org.junit.jupiter.api.Assertions.assertThrows(IllegalArgumentException.class, | CODE |
| CRITICAL | …notation/method/tool/utils/McpJsonSchemaGenerator.java | 237 | return org.springframework.ai.util.json.schema.JsonSchemaGenerator.generateForType(type, | CODE |
| CRITICAL | …g/springframework/ai/anthropic/AnthropicChatModel.java | 1150 | var jsonMapper = tools.jackson.databind.json.JsonMapper.builder().build(); | CODE |
| CRITICAL | …g/springframework/ai/anthropic/AnthropicChatModel.java | 1222 | var jsonMapper = tools.jackson.databind.json.JsonMapper.builder().build(); | CODE |
| CRITICAL | …g/springframework/ai/anthropic/AnthropicChatModel.java | 1256 | var jsonMapper = tools.jackson.databind.json.JsonMapper.builder().build(); | CODE |
| CRITICAL | …ingframework/ai/deepseek/DeepSeekChatOptionsTests.java | 59 | org.assertj.core.api.Assertions.assertThat(merged.getTools()).containsExactlyInAnyOrder(baseTool, overrideTool); | CODE |
| CRITICAL | …ngframework/ai/google/genai/GoogleGenAiRetryTests.java | 60 | this.chatModel = new org.springframework.ai.google.genai.TestGoogleGenAiGeminiChatModel(this.genAiClient, | CODE |
| CRITICAL | …ngframework/ai/google/genai/MimeTypeDetectorTests.java | 44 | return org.springframework.ai.google.genai.MimeTypeDetector.GEMINI_MIME_TYPES.entrySet() | CODE |
| CRITICAL | …ramework/ai/google/genai/CreateGeminiRequestTests.java | 222 | .isEqualTo(org.springframework.ai.google.genai.GoogleGenAiChatModel.ChatModel.GEMINI_2_5_FLASH.getValue()); | CODE |
| CRITICAL | …/genai/cache/GoogleGenAiCachedContentServiceTests.java | 273 | assertThat(cached.getRemainingTtl().toHours()).isCloseTo(1L, org.assertj.core.data.Offset.offset(1L)); | CODE |
| CRITICAL | …ngframework/ai/ollama/aot/OllamaRuntimeHintsTests.java | 76 | org.assertj.core.api.Assertions.assertThatCode(() -> ollamaRuntimeHints.registerHints(runtimeHints, null)) | CODE |
| CRITICAL | …rg/springframework/ai/openai/OpenAiChatModelTests.java | 223 | .function(ChatCompletionChunk.Choice.Delta.ToolCall.Function.builder() | CODE |
| CRITICAL | …rg/springframework/ai/openai/OpenAiChatModelTests.java | 241 | .function(ChatCompletionChunk.Choice.Delta.ToolCall.Function.builder() | CODE |
| CRITICAL | …rg/springframework/ai/openai/OpenAiChatModelTests.java | 311 | .function(ChatCompletionChunk.Choice.Delta.ToolCall.Function.builder() | CODE |
| CRITICAL | …rg/springframework/ai/openai/OpenAiChatModelTests.java | 328 | .function(ChatCompletionChunk.Choice.Delta.ToolCall.Function.builder() | CODE |
| CRITICAL | …rg/springframework/ai/openai/OpenAiChatModelTests.java | 785 | .function(ChatCompletionChunk.Choice.Delta.ToolCall.Function.builder() | STRING |
| CRITICAL | …rg/springframework/ai/openai/OpenAiChatModelTests.java | 792 | .function(ChatCompletionChunk.Choice.Delta.ToolCall.Function.builder() | STRING |
| CRITICAL | …ework/ai/openai/chat/OpenAiChatModelNoOpApiKeysIT.java | 52 | .options(org.springframework.ai.openai.OpenAiChatOptions.builder().apiKey(new NoopApiKey()).build()) | CODE |
| CRITICAL⚡ | …mework/ai/openai/chat/OpenAiCompatibleChatModelIT.java | 58 | .options(org.springframework.ai.openai.OpenAiChatOptions.builder() | CODE |
| CRITICAL⚡ | …mework/ai/openai/chat/OpenAiCompatibleChatModelIT.java | 68 | // .options(org.springframework.ai.openai.OpenAiChatOptions.builder() | COMMENT |
| CRITICAL⚡ | …mework/ai/openai/chat/OpenAiCompatibleChatModelIT.java | 78 | .options(org.springframework.ai.openai.OpenAiChatOptions.builder() | CODE |
| CRITICAL | …k/ai/openai/chat/OpenAiChatModelFunctionCallingIT.java | 225 | .options(org.springframework.ai.openai.OpenAiChatOptions.builder() | CODE |
| CRITICAL | …penai/chat/OpenAiChatModelAdditionalHttpHeadersIT.java | 68 | .options(org.springframework.ai.openai.OpenAiChatOptions.builder() | CODE |
| CRITICAL | …ngframework/ai/openai/chat/OpenAiChatOptionsTests.java | 387 | return org.springframework.ai.tool.definition.DefaultToolDefinition.builder() | CODE |
| CRITICAL | …ngframework/ai/openai/chat/OpenAiChatOptionsTests.java | 403 | return org.springframework.ai.tool.definition.DefaultToolDefinition.builder() | CODE |
| CRITICAL | …ngframework/ai/openai/chat/OpenAiChatOptionsTests.java | 426 | return org.springframework.ai.tool.definition.DefaultToolDefinition.builder() | CODE |
| CRITICAL | …ramework/ai/openai/chat/client/OpenAiChatClientIT.java | 144 | .options(OpenAiChatOptions.builder().model(com.openai.models.ChatModel.GPT_5_MINI.asString())) | CODE |
| CRITICAL | …ramework/ai/openai/chat/client/OpenAiChatClientIT.java | 341 | .options(OpenAiChatOptions.builder().model(com.openai.models.ChatModel.GPT_5_MINI.asString())) | CODE |
| CRITICAL | …/ai/openai/chat/client/OpenAiToolCallingAdvisorIT.java | 42 | .options(org.springframework.ai.openai.OpenAiChatOptions.builder() | CODE |
| CRITICAL | …client/OpenAIToolCallingAdvisorAutoRegistrationIT.java | 43 | .options(org.springframework.ai.openai.OpenAiChatOptions.builder() | CODE |
| CRITICAL | …ework/ai/openai/transformer/MetadataTransformerIT.java | 165 | .options(org.springframework.ai.openai.OpenAiChatOptions.builder() | CODE |
| CRITICAL | …g/springframework/ai/openai/OpenAiModerationModel.java | 72 | () -> org.springframework.ai.openai.setup.OpenAiSetup.setupSyncClient(this.options.getBaseUrl(), | CODE |
| CRITICAL | …g/springframework/ai/openai/OpenAiModerationModel.java | 106 | builder.model(com.openai.models.moderations.ModerationModel.of(model)); | CODE |
| CRITICAL | …onfigure/ToolCallbackConverterAutoConfigurationIT.java | 374 | return org.springframework.ai.mcp.SyncMcpToolCallbackProvider.builder() | CODE |
| CRITICAL | …StatelessToolCallbackConverterAutoConfigurationIT.java | 378 | return org.springframework.ai.mcp.SyncMcpToolCallbackProvider.builder() | CODE |
| CRITICAL | …/autoconfigure/StreamableWebClientWebFluxServerIT.java | 192 | .isEqualTo(net.javacrumbs.jsonunit.assertj.JsonAssertions.json(""" | STRING |
| CRITICAL | …webflux/autoconfigure/SseWebClientWebFluxServerIT.java | 184 | .isEqualTo(net.javacrumbs.jsonunit.assertj.JsonAssertions.json(""" | STRING |
| CRITICAL | …x/autoconfigure/StatelessWebClientWebFluxServerIT.java | 177 | .isEqualTo(net.javacrumbs.jsonunit.assertj.JsonAssertions.json(""" | STRING |
| CRITICAL | …toconfigure/tool/FunctionCallWithPromptFunctionIT.java | 59 | org.springframework.ai.chat.client.advisor.ToolCallingAdvisor.builder() | CODE |
| 19 more matches not shown… | ||||
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| HIGH | …rch/OpenSearchContainerConnectionDetailsFactoryIT.java | 0 | { "properties":{ "embedding":{ "type":"knn_vector", "dimension":384 } } } | STRING |
| HIGH | …igure/AwsOpenSearchVectorStoreAutoConfigurationIT.java | 0 | { "properties":{ "embedding":{ "type":"knn_vector", "dimension":384 } } } | STRING |
| HIGH | …onfigure/OpenSearchVectorStoreAutoConfigurationIT.java | 0 | { "properties":{ "embedding":{ "type":"knn_vector", "dimension":384 } } } | STRING |
| HIGH | …gframework/ai/anthropic/chat/AnthropicChatModelIT.java | 0 | generate the filmography of 5 movies for tom hanks. {format} | STRING |
| HIGH | …/springframework/ai/openai/chat/OpenAiChatModelIT.java | 0 | generate the filmography of 5 movies for tom hanks. {format} | STRING |
| HIGH | …rk/ai/openai/chat/proxy/GroqWithOpenAiChatModelIT.java | 0 | generate the filmography of 5 movies for tom hanks. {format} | STRING |
| HIGH | …ai/openai/chat/proxy/MistralWithOpenAiChatModelIT.java | 0 | generate the filmography of 5 movies for tom hanks. {format} | STRING |
| HIGH | …i/openai/chat/proxy/DeepSeekWithOpenAiChatModelIT.java | 0 | generate the filmography of 5 movies for tom hanks. {format} | STRING |
| HIGH | …openai/chat/proxy/PerplexityWithOpenAiChatModelIT.java | 0 | generate the filmography of 5 movies for tom hanks. {format} | STRING |
| HIGH | …/ai/openai/chat/proxy/NvidiaWithOpenAiChatModelIT.java | 0 | generate the filmography of 5 movies for tom hanks. {format} | STRING |
| HIGH | …chat/proxy/DockerModelRunnerWithOpenAiChatModelIT.java | 0 | generate the filmography of 5 movies for tom hanks. {format} | STRING |
| HIGH | …gframework/ai/openai/azure/AzureOpenAiChatModelIT.java | 0 | generate the filmography of 5 movies for tom hanks. {format} | STRING |
| HIGH | …springframework/ai/mistralai/MistralAiChatModelIT.java | 0 | generate the filmography of 5 movies for tom hanks. {format} | STRING |
| HIGH | …ework/ai/bedrock/converse/BedrockProxyChatModelIT.java | 0 | generate the filmography of 5 movies for tom hanks. {format} | STRING |
| HIGH | …e/genai/tool/GoogleGenAiPaymentTransactionToolsIT.java | 0 | what is the status of my payment transactions 001, 002 and 003? if required invoke the function per transaction. | STRING |
| HIGH | …/genai/tool/GoogleGenAiPaymentTransactionMethodIT.java | 0 | what is the status of my payment transactions 001, 002 and 003? if required invoke the function per transaction. | STRING |
| HIGH | …google/genai/tool/GoogleGenAiPaymentTransactionIT.java | 0 | what is the status of my payment transactions 001, 002 and 003? if required invoke the function per transaction. | STRING |
| HIGH | …/springframework/ai/openai/chat/OpenAiChatModelIT.java | 0 | generate the filmography for a random actor. {format} | STRING |
| HIGH | …rk/ai/openai/chat/proxy/GroqWithOpenAiChatModelIT.java | 0 | generate the filmography for a random actor. {format} | STRING |
| HIGH | …chat/proxy/DockerModelRunnerWithOpenAiChatModelIT.java | 0 | generate the filmography for a random actor. {format} | STRING |
| HIGH | …gframework/ai/openai/azure/AzureOpenAiChatModelIT.java | 0 | generate the filmography for a random actor. {format} | STRING |
| HIGH | …webflux/autoconfigure/StreamableMcpAnnotations2IT.java | 0 | {"result":5.0,"operation":"2 + 3","timestamp":"2024-01-01t10:00:00z"} | STRING |
| HIGH | …/autoconfigure/StreamableWebClientWebFluxServerIT.java | 0 | {"result":5.0,"operation":"2 + 3","timestamp":"2024-01-01t10:00:00z"} | STRING |
| HIGH | …webflux/autoconfigure/SseWebClientWebFluxServerIT.java | 0 | {"result":5.0,"operation":"2 + 3","timestamp":"2024-01-01t10:00:00z"} | STRING |
| HIGH | …x/autoconfigure/StatelessWebClientWebFluxServerIT.java | 0 | {"result":5.0,"operation":"2 + 3","timestamp":"2024-01-01t10:00:00z"} | STRING |
| HIGH | …ux/autoconfigure/StreamableMcpAnnotationsManualIT.java | 0 | {"result":5.0,"operation":"2 + 3","timestamp":"2024-01-01t10:00:00z"} | STRING |
| HIGH | …/webflux/autoconfigure/StreamableMcpAnnotationsIT.java | 0 | {"result":5.0,"operation":"2 + 3","timestamp":"2024-01-01t10:00:00z"} | STRING |
| HIGH | …/autoconfigure/StreamableWebClientWebFluxServerIT.java | 0 | { "": "http://json-schema.org/draft-07/schema#", "type": "object", "properties": {} } | STRING |
| HIGH | …webflux/autoconfigure/SseWebClientWebFluxServerIT.java | 0 | { "": "http://json-schema.org/draft-07/schema#", "type": "object", "properties": {} } | STRING |
| HIGH | …x/autoconfigure/StatelessWebClientWebFluxServerIT.java | 0 | { "": "http://json-schema.org/draft-07/schema#", "type": "object", "properties": {} } | STRING |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| MEDIUM⚡ | src/rewrite/migrate-to-2-0-0-M3.yaml | 46 | # ------------------------------------------------------------------------- | COMMENT |
| MEDIUM⚡ | src/rewrite/migrate-to-2-0-0-M3.yaml | 48 | # ------------------------------------------------------------------------- | COMMENT |
| MEDIUM⚡ | src/rewrite/migrate-to-2-0-0-M3.yaml | 53 | # ------------------------------------------------------------------------- | COMMENT |
| MEDIUM⚡ | src/rewrite/migrate-to-2-0-0-M3.yaml | 57 | # ------------------------------------------------------------------------- | COMMENT |
| MEDIUM⚡ | src/rewrite/migrate-to-2-0-0-M3.yaml | 111 | # ------------------------------------------------------------------------- | COMMENT |
| MEDIUM⚡ | src/rewrite/migrate-to-2-0-0-M3.yaml | 118 | # ------------------------------------------------------------------------- | COMMENT |
| MEDIUM⚡ | src/rewrite/migrate-to-2-0-0-M3.yaml | 125 | # ------------------------------------------------------------------------- | COMMENT |
| MEDIUM⚡ | src/rewrite/migrate-to-2-0-0-M3.yaml | 127 | # ------------------------------------------------------------------------- | COMMENT |
| MEDIUM⚡ | src/rewrite/migrate-to-2-0-0-M3.yaml | 134 | # ------------------------------------------------------------------------- | COMMENT |
| MEDIUM⚡ | src/rewrite/migrate-to-2-0-0-M3.yaml | 138 | # ------------------------------------------------------------------------- | COMMENT |
| MEDIUM⚡ | src/rewrite/migrate-to-2-0-0-M3.yaml | 234 | # ------------------------------------------------------------------------- | COMMENT |
| MEDIUM⚡ | src/rewrite/migrate-to-2-0-0-M3.yaml | 238 | # ------------------------------------------------------------------------- | COMMENT |
| MEDIUM⚡ | src/rewrite/migrate-to-2-0-0-M3.yaml | 244 | # ------------------------------------------------------------------------- | COMMENT |
| MEDIUM⚡ | src/rewrite/migrate-to-2-0-0-M3.yaml | 246 | # ------------------------------------------------------------------------- | COMMENT |
| MEDIUM⚡ | src/rewrite/migrate-to-2-0-0-M3.yaml | 252 | # ------------------------------------------------------------------------- | COMMENT |
| MEDIUM⚡ | src/rewrite/migrate-to-2-0-0-M3.yaml | 257 | # ------------------------------------------------------------------------- | COMMENT |
| MEDIUM⚡ | src/rewrite/migrate-to-2-0-0-M3.yaml | 263 | # ------------------------------------------------------------------------- | COMMENT |
| MEDIUM⚡ | src/rewrite/migrate-to-2-0-0-M3.yaml | 265 | # ------------------------------------------------------------------------- | COMMENT |
| MEDIUM | src/rewrite/migrate-to-2-0-0-M3.yaml | 154 | # ------------------------------------------------------------------------- | COMMENT |
| MEDIUM | src/rewrite/migrate-to-2-0-0-M3.yaml | 156 | # ------------------------------------------------------------------------- | COMMENT |
| MEDIUM | src/rewrite/migrate-to-2-0-0-M3.yaml | 172 | # ------------------------------------------------------------------------- | COMMENT |
| MEDIUM | src/rewrite/migrate-to-2-0-0-M3.yaml | 174 | # ------------------------------------------------------------------------- | COMMENT |
| MEDIUM | src/rewrite/migrate-to-2-0-0-M3.yaml | 185 | # ------------------------------------------------------------------------- | COMMENT |
| MEDIUM | src/rewrite/migrate-to-2-0-0-M3.yaml | 189 | # ------------------------------------------------------------------------- | COMMENT |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| MEDIUM | spring-ai-commons/src/test/resources/bikes.json | 5 | "description": "## Overview\r\nIt's right for you if...\r\nYou want to push your limits on challenging trails and te | CODE |
| MEDIUM | spring-ai-commons/src/test/resources/bikes.json | 23 | "description": "## Overview\nIt's right for you if...\nYou're a competitive road cyclist or an enthusiast who enjoys | CODE |
| MEDIUM | spring-ai-commons/src/test/resources/bikes.json | 74 | "description": "## Overview\nIt's right for you if...\nYou are a passionate cyclist looking for a bike that can keep | CODE |
| MEDIUM | spring-ai-commons/src/test/resources/bikes.json | 74 | "description": "## Overview\nIt's right for you if...\nYou are a passionate cyclist looking for a bike that can keep | CODE |
| MEDIUM | spring-ai-commons/src/test/resources/bikes.json | 94 | "description": "## Overview\nIt's right for you if...\nYou want a bike that is fast, efficient, and delivers an adre | CODE |
| MEDIUM | spring-ai-commons/src/test/resources/bikes.json | 147 | "description": "## Overview\n\nIt's right for you if...\nYou want an e-bike that provides a boost for faster rides a | CODE |
| MEDIUM | spring-ai-commons/src/test/resources/bikes.json | 180 | "description": "## Overview\n\nIt's right for you if...\nYou crave the thrill of an e-bike that can accelerate rapid | CODE |
| MEDIUM | spring-ai-commons/src/test/resources/bikes.json | 202 | "description": "## Overview\nIt's right for you if...\nYou're looking for an e-bike that offers both speed and endur | CODE |
| MEDIUM | spring-ai-commons/src/test/resources/bikes.json | 235 | "description": "## Overview\nIt's right for you if...\nYou crave speed and want to cover long distances efficiently. | CODE |
| MEDIUM | spring-ai-commons/src/test/resources/bikes.json | 235 | "description": "## Overview\nIt's right for you if...\nYou crave speed and want to cover long distances efficiently. | CODE |
| MEDIUM | spring-ai-commons/src/test/resources/bikes.json | 246 | "description": "## Overview\nIt's right for you if...\nYou're a competitive cyclist looking for a road bike that off | CODE |
| MEDIUM | spring-ai-commons/src/test/resources/bikes.json | 246 | "description": "## Overview\nIt's right for you if...\nYou're a competitive cyclist looking for a road bike that off | CODE |
| MEDIUM | …ring-ai-openai/src/test/resources/data/acme/bikes.json | 5 | "description": "## Overview\r\nIt's right for you if...\r\nYou want to push your limits on challenging trails and te | CODE |
| MEDIUM | …ring-ai-openai/src/test/resources/data/acme/bikes.json | 23 | "description": "## Overview\nIt's right for you if...\nYou're a competitive road cyclist or an enthusiast who enjoys | CODE |
| MEDIUM | …ring-ai-openai/src/test/resources/data/acme/bikes.json | 74 | "description": "## Overview\nIt's right for you if...\nYou are a passionate cyclist looking for a bike that can keep | CODE |
| MEDIUM | …ring-ai-openai/src/test/resources/data/acme/bikes.json | 74 | "description": "## Overview\nIt's right for you if...\nYou are a passionate cyclist looking for a bike that can keep | CODE |
| MEDIUM | …ring-ai-openai/src/test/resources/data/acme/bikes.json | 94 | "description": "## Overview\nIt's right for you if...\nYou want a bike that is fast, efficient, and delivers an adre | CODE |
| MEDIUM | …ring-ai-openai/src/test/resources/data/acme/bikes.json | 147 | "description": "## Overview\n\nIt's right for you if...\nYou want an e-bike that provides a boost for faster rides a | CODE |
| MEDIUM | …ring-ai-openai/src/test/resources/data/acme/bikes.json | 180 | "description": "## Overview\n\nIt's right for you if...\nYou crave the thrill of an e-bike that can accelerate rapid | CODE |
| MEDIUM | …ring-ai-openai/src/test/resources/data/acme/bikes.json | 202 | "description": "## Overview\nIt's right for you if...\nYou're looking for an e-bike that offers both speed and endur | CODE |
| MEDIUM | …ring-ai-openai/src/test/resources/data/acme/bikes.json | 235 | "description": "## Overview\nIt's right for you if...\nYou crave speed and want to cover long distances efficiently. | CODE |
| MEDIUM | …ring-ai-openai/src/test/resources/data/acme/bikes.json | 235 | "description": "## Overview\nIt's right for you if...\nYou crave speed and want to cover long distances efficiently. | CODE |
| MEDIUM | …ring-ai-openai/src/test/resources/data/acme/bikes.json | 246 | "description": "## Overview\nIt's right for you if...\nYou're a competitive cyclist looking for a road bike that off | CODE |
| MEDIUM | …ring-ai-openai/src/test/resources/data/acme/bikes.json | 246 | "description": "## Overview\nIt's right for you if...\nYou're a competitive cyclist looking for a road bike that off | CODE |
| MEDIUM | …springframework/ai/mistralai/MistralAiChatOptions.java | 106 | * {@link ReasoningEffort#HIGH} enables comprehensive reasoning traces, | COMMENT |
| MEDIUM | …org/springframework/ai/mistralai/api/MistralAiApi.java | 796 | * {@link ReasoningEffort#HIGH} enables comprehensive reasoning traces, | COMMENT |
| MEDIUM | …ingframework/ai/bedrock/converse/api/URLValidator.java | 60 | * {@link #isValidURLStrict(String)} instead for robust validation. | COMMENT |
| MEDIUM | …orstore/redis/cache/semantic/DefaultSemanticCache.java | 229 | // Use RedisVectorStore's searchByRange to utilize the VECTOR_RANGE command | COMMENT |
| MEDIUM | spring-ai-client-chat/src/test/resources/bikes.json | 5 | "description": "## Overview\r\nIt's right for you if...\r\nYou want to push your limits on challenging trails and te | CODE |
| MEDIUM | spring-ai-client-chat/src/test/resources/bikes.json | 23 | "description": "## Overview\nIt's right for you if...\nYou're a competitive road cyclist or an enthusiast who enjoys | CODE |
| MEDIUM | spring-ai-client-chat/src/test/resources/bikes.json | 74 | "description": "## Overview\nIt's right for you if...\nYou are a passionate cyclist looking for a bike that can keep | CODE |
| MEDIUM | spring-ai-client-chat/src/test/resources/bikes.json | 74 | "description": "## Overview\nIt's right for you if...\nYou are a passionate cyclist looking for a bike that can keep | CODE |
| MEDIUM | spring-ai-client-chat/src/test/resources/bikes.json | 94 | "description": "## Overview\nIt's right for you if...\nYou want a bike that is fast, efficient, and delivers an adre | CODE |
| MEDIUM | spring-ai-client-chat/src/test/resources/bikes.json | 147 | "description": "## Overview\n\nIt's right for you if...\nYou want an e-bike that provides a boost for faster rides a | CODE |
| MEDIUM | spring-ai-client-chat/src/test/resources/bikes.json | 180 | "description": "## Overview\n\nIt's right for you if...\nYou crave the thrill of an e-bike that can accelerate rapid | CODE |
| MEDIUM | spring-ai-client-chat/src/test/resources/bikes.json | 202 | "description": "## Overview\nIt's right for you if...\nYou're looking for an e-bike that offers both speed and endur | CODE |
| MEDIUM | spring-ai-client-chat/src/test/resources/bikes.json | 235 | "description": "## Overview\nIt's right for you if...\nYou crave speed and want to cover long distances efficiently. | CODE |
| MEDIUM | spring-ai-client-chat/src/test/resources/bikes.json | 235 | "description": "## Overview\nIt's right for you if...\nYou crave speed and want to cover long distances efficiently. | CODE |
| MEDIUM | spring-ai-client-chat/src/test/resources/bikes.json | 246 | "description": "## Overview\nIt's right for you if...\nYou're a competitive cyclist looking for a road bike that off | CODE |
| MEDIUM | spring-ai-client-chat/src/test/resources/bikes.json | 246 | "description": "## Overview\nIt's right for you if...\nYou're a competitive cyclist looking for a road bike that off | CODE |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | spring-ai-commons/src/test/resources/person.json | 52 | "name": "John Doe", | CODE |
| LOW⚡ | spring-ai-commons/src/test/resources/text_source.txt | 2240 | <property name="name" value="John Doe"/> | CODE |
| LOW⚡ | spring-ai-commons/src/test/resources/text_source.txt | 2247 | p:name="John Doe" | CODE |
| LOW⚡ | spring-ai-commons/src/test/resources/text_source.txt | 2252 | <property name="name" value="Jane Doe"/> | CODE |
| LOW⚡ | spring-ai-model/src/test/resources/text_source.txt | 2240 | <property name="name" value="John Doe"/> | CODE |
| LOW⚡ | spring-ai-model/src/test/resources/text_source.txt | 2247 | p:name="John Doe" | CODE |
| LOW⚡ | spring-ai-model/src/test/resources/text_source.txt | 2252 | <property name="name" value="Jane Doe"/> | CODE |
| LOW | …otation/context/DefaultMcpSyncRequestContextTests.java | 309 | Map<String, Object> addressMap = Map.of("street", "123 Main St", "city", "Springfield"); | CODE |
| LOW | …otation/context/DefaultMcpSyncRequestContextTests.java | 327 | assertThat(result.structuredContent().address().street()).isEqualTo("123 Main St"); | CODE |
| LOW | …tation/context/DefaultMcpAsyncRequestContextTests.java | 295 | Map<String, Object> addressMap = Map.of("street", "123 Main St", "city", "Springfield"); | CODE |
| LOW | …tation/context/DefaultMcpAsyncRequestContextTests.java | 313 | assertThat(structuredResult.structuredContent().address().street()).isEqualTo("123 Main St"); | CODE |
| LOW | …hod/resource/SyncMcpResourceMethodCallbackExample.java | 201 | janeProfile.put("name", "Jane Doe"); | CODE |
| LOW | …k/ai/google/genai/schema/JsonSchemaConverterTests.java | 255 | "example": "user@example.com", | CODE |
| LOW | …k/ai/google/genai/schema/JsonSchemaConverterTests.java | 268 | assertThat(result.get("example").asString()).isEqualTo("user@example.com"); | STRING |
| LOW⚡ | …ls/spring-ai-openai/src/test/resources/text_source.txt | 2240 | <property name="name" value="John Doe"/> | CODE |
| LOW⚡ | …ls/spring-ai-openai/src/test/resources/text_source.txt | 2247 | p:name="John Doe" | CODE |
| LOW⚡ | …ls/spring-ai-openai/src/test/resources/text_source.txt | 2252 | <property name="name" value="Jane Doe"/> | CODE |
| LOW⚡ | …ring-ai-client-chat/src/test/resources/text_source.txt | 2240 | <property name="name" value="John Doe"/> | CODE |
| LOW⚡ | …ring-ai-client-chat/src/test/resources/text_source.txt | 2247 | p:name="John Doe" | CODE |
| LOW⚡ | …ring-ai-client-chat/src/test/resources/text_source.txt | 2252 | <property name="name" value="Jane Doe"/> | CODE |
| LOW | …-document-reader/src/test/resources/with-formatting.md | 3 | Lorem ipsum dolor sit amet, **consectetur adipiscing elit**. Donec tincidunt velit non bibendum gravida. Cras accumsan | CODE |
| LOW | …-document-reader/src/test/resources/with-formatting.md | 3 | Lorem ipsum dolor sit amet, **consectetur adipiscing elit**. Donec tincidunt velit non bibendum gravida. Cras accumsan | CODE |
| LOW | …kdown-document-reader/src/test/resources/blockquote.md | 1 | Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur diam eros, laoreet sit amet cursus vitae, varius sed | CODE |
| LOW | …kdown-document-reader/src/test/resources/blockquote.md | 1 | Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur diam eros, laoreet sit amet cursus vitae, varius sed | CODE |
| LOW | …document-reader/src/test/resources/horizontal-rules.md | 1 | Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec tincidunt velit non bibendum gravida. | CODE |
| LOW | …document-reader/src/test/resources/horizontal-rules.md | 1 | Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec tincidunt velit non bibendum gravida. | CODE |
| LOW | …own-document-reader/src/test/resources/only-headers.md | 3 | Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur diam eros, laoreet sit amet cursus vitae, varius sed | CODE |
| LOW | …own-document-reader/src/test/resources/only-headers.md | 3 | Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur diam eros, laoreet sit amet cursus vitae, varius sed | CODE |
| LOW | …-markdown-document-reader/src/test/resources/simple.md | 1 | Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec tincidunt velit non bibendum gravida. Cras accumsan | CODE |
| LOW | …-markdown-document-reader/src/test/resources/simple.md | 1 | Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec tincidunt velit non bibendum gravida. Cras accumsan | CODE |
| LOW | …i-markdown-document-reader/src/test/resources/lists.md | 3 | 1. Lorem ipsum dolor sit *amet*, consectetur adipiscing elit. **Curabitur** diam eros, laoreet sit _amet_ cursus vitae, | CODE |
| LOW | …eader/src/test/resources/dir-test-2/with-formatting.md | 3 | Lorem ipsum dolor sit amet, **consectetur adipiscing elit**. Donec tincidunt velit non bibendum gravida. Cras accumsan | CODE |
| LOW | …eader/src/test/resources/dir-test-2/with-formatting.md | 3 | Lorem ipsum dolor sit amet, **consectetur adipiscing elit**. Donec tincidunt velit non bibendum gravida. Cras accumsan | CODE |
| LOW | …t-reader/src/test/resources/dir-test-2/only-headers.md | 3 | Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur diam eros, laoreet sit amet cursus vitae, varius sed | CODE |
| LOW | …t-reader/src/test/resources/dir-test-2/only-headers.md | 3 | Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur diam eros, laoreet sit amet cursus vitae, varius sed | CODE |
| LOW | …ent-reader/src/test/resources/dir-test-1/blockquote.md | 1 | Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur diam eros, laoreet sit amet cursus vitae, varius sed | CODE |
| LOW | …ent-reader/src/test/resources/dir-test-1/blockquote.md | 1 | Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur diam eros, laoreet sit amet cursus vitae, varius sed | CODE |
| LOW | …nt-reader/src/test/resources/dir-test-1/blockquote.txt | 1 | Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur diam eros, laoreet sit amet cursus vitae, varius sed | CODE |
| LOW | …nt-reader/src/test/resources/dir-test-1/blockquote.txt | 1 | Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur diam eros, laoreet sit amet cursus vitae, varius sed | CODE |
| LOW⚡ | …ork/ai/reader/markdown/MarkdownDocumentReaderTest.java | 61 | "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec tincidunt velit non bibendum gravida. Cras accumsan | CODE |
| LOW⚡ | …ork/ai/reader/markdown/MarkdownDocumentReaderTest.java | 61 | "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec tincidunt velit non bibendum gravida. Cras accumsan | CODE |
| LOW⚡ | …ork/ai/reader/markdown/MarkdownDocumentReaderTest.java | 65 | "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur diam eros, laoreet sit amet cursus vitae, var | CODE |
| LOW⚡ | …ork/ai/reader/markdown/MarkdownDocumentReaderTest.java | 65 | "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur diam eros, laoreet sit amet cursus vitae, var | CODE |
| LOW | …ork/ai/reader/markdown/MarkdownDocumentReaderTest.java | 48 | "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur diam eros, laoreet sit amet cursus vitae, variu | CODE |
| LOW | …ork/ai/reader/markdown/MarkdownDocumentReaderTest.java | 48 | "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur diam eros, laoreet sit amet cursus vitae, variu | CODE |
| LOW | …ork/ai/reader/markdown/MarkdownDocumentReaderTest.java | 83 | "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur diam eros, laoreet sit amet cursus vitae, variu | CODE |
| LOW | …ork/ai/reader/markdown/MarkdownDocumentReaderTest.java | 83 | "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur diam eros, laoreet sit amet cursus vitae, variu | CODE |
| LOW | …ork/ai/reader/markdown/MarkdownDocumentReaderTest.java | 101 | "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec tincidunt velit non bibendum gravida. Cras accumsan | CODE |
| LOW | …ork/ai/reader/markdown/MarkdownDocumentReaderTest.java | 101 | "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec tincidunt velit non bibendum gravida. Cras accumsan | CODE |
| LOW | …ork/ai/reader/markdown/MarkdownDocumentReaderTest.java | 119 | "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec tincidunt velit non bibendum gravida."), | CODE |
| LOW | …ork/ai/reader/markdown/MarkdownDocumentReaderTest.java | 119 | "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec tincidunt velit non bibendum gravida."), | CODE |
| LOW | …ork/ai/reader/markdown/MarkdownDocumentReaderTest.java | 147 | assertThat(documentsFirst.getText()).startsWith("Lorem ipsum dolor sit amet, consectetur adipiscing elit") | CODE |
| LOW | …ork/ai/reader/markdown/MarkdownDocumentReaderTest.java | 147 | assertThat(documentsFirst.getText()).startsWith("Lorem ipsum dolor sit amet, consectetur adipiscing elit") | CODE |
| LOW | …ork/ai/reader/markdown/MarkdownDocumentReaderTest.java | 162 | "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec tincidunt velit non bibendum gravida. Cras accumsan | CODE |
| LOW | …ork/ai/reader/markdown/MarkdownDocumentReaderTest.java | 162 | "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec tincidunt velit non bibendum gravida. Cras accumsan | CODE |
| LOW | …ork/ai/reader/markdown/MarkdownDocumentReaderTest.java | 231 | "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur diam eros, laoreet sit amet cursus vitae, variu | CODE |
| LOW | …ork/ai/reader/markdown/MarkdownDocumentReaderTest.java | 231 | "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur diam eros, laoreet sit amet cursus vitae, variu | CODE |
| LOW | …ork/ai/reader/markdown/MarkdownDocumentReaderTest.java | 251 | "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur diam eros, laoreet sit amet cursus vitae, varius | CODE |
| LOW | …ork/ai/reader/markdown/MarkdownDocumentReaderTest.java | 251 | "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur diam eros, laoreet sit amet cursus vitae, varius | CODE |
| LOW | …ork/ai/reader/markdown/MarkdownDocumentReaderTest.java | 263 | "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur diam eros, laoreet sit amet cursus vitae, variu | CODE |
| 7 more matches not shown… | ||||
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| HIGH | models/spring-ai-anthropic/README.md | 13 | .apiKey("<your-api-key>") | CODE |
| HIGH | models/spring-ai-anthropic/README.md | 20 | export ANTHROPIC_API_KEY=<your-api-key> | CODE |
| HIGH | …levenlabs/autoconfigure/ElevenLabsPropertiesTests.java | 45 | "spring.ai.elevenlabs.api-key=YOUR_API_KEY", | CODE |
| HIGH | …levenlabs/autoconfigure/ElevenLabsPropertiesTests.java | 63 | assertThat(connectionProperties.getApiKey()).isEqualTo("YOUR_API_KEY"); | CODE |
| HIGH | …levenlabs/autoconfigure/ElevenLabsPropertiesTests.java | 81 | "spring.ai.elevenlabs.api-key=YOUR_API_KEY", | CODE |
| HIGH | …levenlabs/autoconfigure/ElevenLabsPropertiesTests.java | 127 | new ApplicationContextRunner().withPropertyValues("spring.ai.elevenlabs.api-key=YOUR_API_KEY") | CODE |
| HIGH | …levenlabs/autoconfigure/ElevenLabsPropertiesTests.java | 138 | .withPropertyValues("spring.ai.elevenlabs.api-key=YOUR_API_KEY", "spring.ai.model.audio.speech=elevenlabs") | CODE |
| HIGH | …levenlabs/autoconfigure/ElevenLabsPropertiesTests.java | 149 | .withPropertyValues("spring.ai.elevenlabs.api-key=YOUR_API_KEY", "spring.ai.model.audio.speech=none") | CODE |
| HIGH | …ai-autoconfigure-model-google-genai/MIGRATION_GUIDE.md | 51 | spring.ai.google.genai.api-key=your-api-key | CODE |
| HIGH | …ai-autoconfigure-model-google-genai/MIGRATION_GUIDE.md | 106 | export GOOGLE_API_KEY=your-api-key | CODE |
| HIGH | …ework/ai/vectorstore/pinecone/PineconeVectorStore.java | 119 | * .apiKey("your-api-key") | COMMENT |
| HIGH | …ework/ai/vectorstore/pinecone/PineconeVectorStore.java | 345 | * .apiKey("your-api-key") | COMMENT |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| HIGH | …/java/org/springframework/ai/model/ResultMetadata.java | 22 | * generated by AI models. It could include information like computation time, model | COMMENT |
| HIGH | …ain/java/org/springframework/ai/model/ModelResult.java | 22 | * comprehensive way to handle and interpret the outputs generated by AI models, catering | COMMENT |
| HIGH | …work/ai/vectorstore/filter/antlr4/FiltersListener.java | 21 | // # NOTE: This is ANTLR4 auto-generated code. Do not modify! # | COMMENT |
| HIGH | …amework/ai/vectorstore/filter/antlr4/FiltersLexer.java | 21 | // # NOTE: This is ANTLR4 auto-generated code. Do not modify! # | COMMENT |
| HIGH | …k/ai/vectorstore/filter/antlr4/FiltersBaseVisitor.java | 21 | // # NOTE: This is ANTLR4 auto-generated code. Do not modify! # | COMMENT |
| HIGH | …mework/ai/vectorstore/filter/antlr4/FiltersParser.java | 21 | // # NOTE: This is ANTLR4 auto-generated code. Do not modify! # | COMMENT |
| HIGH | …ework/ai/vectorstore/filter/antlr4/FiltersVisitor.java | 21 | // # NOTE: This is ANTLR4 auto-generated code. Do not modify! # | COMMENT |
| HIGH | …/ai/vectorstore/filter/antlr4/FiltersBaseListener.java | 21 | // # NOTE: This is ANTLR4 auto-generated code. Do not modify! # | COMMENT |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| MEDIUM | spring-ai-commons/src/test/resources/bikes.json | 202 | "description": "## Overview\nIt's right for you if...\nYou're looking for an e-bike that offers both speed and endur | CODE |
| MEDIUM | spring-ai-commons/src/test/resources/bikes.json | 213 | "description": "## Overview\nIt's right for you if...\nYou want a fast and efficient e-bike that can take you long d | CODE |
| MEDIUM | spring-ai-commons/src/test/resources/bikes.json | 224 | "description": "## Overview\nThis bike is ideal for you if:\n- You desire a sleek and modern hydroformed aluminum fr | CODE |
| MEDIUM | …ring-ai-openai/src/test/resources/data/acme/bikes.json | 202 | "description": "## Overview\nIt's right for you if...\nYou're looking for an e-bike that offers both speed and endur | CODE |
| MEDIUM | …ring-ai-openai/src/test/resources/data/acme/bikes.json | 213 | "description": "## Overview\nIt's right for you if...\nYou want a fast and efficient e-bike that can take you long d | CODE |
| MEDIUM | …ring-ai-openai/src/test/resources/data/acme/bikes.json | 224 | "description": "## Overview\nThis bike is ideal for you if:\n- You desire a sleek and modern hydroformed aluminum fr | CODE |
| MEDIUM | spring-ai-client-chat/src/test/resources/bikes.json | 202 | "description": "## Overview\nIt's right for you if...\nYou're looking for an e-bike that offers both speed and endur | CODE |
| MEDIUM | spring-ai-client-chat/src/test/resources/bikes.json | 213 | "description": "## Overview\nIt's right for you if...\nYou want a fast and efficient e-bike that can take you long d | CODE |
| MEDIUM | spring-ai-client-chat/src/test/resources/bikes.json | 224 | "description": "## Overview\nThis bike is ideal for you if:\n- You desire a sleek and modern hydroformed aluminum fr | CODE |
| MEDIUM | …framework/ai/chat/client/advisor/SafeGuardAdvisor.java | 60 | static final String DEFAULT_FAILURE_RESPONSE = "I'm unable to respond to that due to sensitive content. Could we rephra | CODE |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW⚡ | …ogle/genai/GoogleGenAiThoughtSignatureLifecycleIT.java | 207 | // Step 1: check_flight("AA100") -> returns "delayed, departure 12 PM" | COMMENT |
| LOW⚡ | …ogle/genai/GoogleGenAiThoughtSignatureLifecycleIT.java | 208 | // Step 2: book_taxi("10 AM") -> returns "booking confirmed" | COMMENT |
| LOW | …rk/ai/ollama/api/tool/OllamaApiToolFunctionCallIT.java | 61 | // Step 1: send the conversation and available functions to the model | COMMENT |
| LOW | …st/java/org/springframework/ai/openai/acme/AcmeIT.java | 73 | // Step 1 - load documents | COMMENT |
| LOW | …st/java/org/springframework/ai/openai/acme/AcmeIT.java | 78 | // Step 2 - Create embeddings and save to vector store | COMMENT |
| LOW | …mistralai/api/tool/MistralAiApiToolFunctionCallIT.java | 66 | // Step 1: send the conversation and available functions to the model | COMMENT |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW⚡ | …ogle/genai/GoogleGenAiThoughtSignatureLifecycleIT.java | 207 | // Step 1: check_flight("AA100") -> returns "delayed, departure 12 PM" | COMMENT |
| LOW⚡ | …ogle/genai/GoogleGenAiThoughtSignatureLifecycleIT.java | 208 | // Step 2: book_taxi("10 AM") -> returns "booking confirmed" | COMMENT |
| LOW | …rk/ai/ollama/api/tool/OllamaApiToolFunctionCallIT.java | 61 | // Step 1: send the conversation and available functions to the model | COMMENT |
| LOW | …mistralai/api/tool/MistralAiApiToolFunctionCallIT.java | 66 | // Step 1: send the conversation and available functions to the model | COMMENT |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| MEDIUM | README.md | 57 | * Support for [Chat Conversation Memory](https://docs.spring.io/spring-ai/reference/api/chatclient.html#_chat_memory) wi | COMMENT |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | …gframework/ai/google/genai/GoogleGenAiChatModelIT.java | 361 | COMMENT | |
| LOW | …mework/ai/openai/chat/OpenAiCompatibleChatModelIT.java | 61 | .build()) | COMMENT |
| LOW | …rstore/cassandra/CassandraRichSchemaVectorStoreIT.java | 301 | COMMENT |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | .github/workflows/dependency-ci-dashboard.yml | 72 | # Check if there are any in-progress runs | COMMENT |