Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
* OCR {@link AutoConfiguration Auto-configuration} for Mistral AI OCR.
*
* @author Alexandros Pappas
* @since 1.0.0
* @since 1.1.0
*/
@AutoConfiguration(after = { RestClientAutoConfiguration.class, SpringAiRetryAutoConfiguration.class })
@ConditionalOnClass(MistralOcrApi.class)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
* Configuration properties for Mistral AI OCR.
*
* @author Alexandros Pappas
* @since 1.0.0
* @since 1.1.0
*/
@ConfigurationProperties(MistralAiOcrProperties.CONFIG_PREFIX)
public class MistralAiOcrProperties extends MistralAiParentProperties {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
* </p>
*
* @author Alexandros Pappas
* @since 1.0.0
* @since 1.1.0
*/
@EnabledIfEnvironmentVariable(named = MistralAiOcrAutoConfigurationTests.ENV_VAR_NAME, matches = ".*")
class MistralAiOcrAutoConfigurationTests {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
* {@link MistralAiCommonProperties}.
*
* @author Alexandros Pappas
* @since 1.0.0
* @since 1.1.0
*/
class MistralAiOcrPropertiesTests {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
* OCR call.
*
* @author Alexandros Pappas
* @since 1.0.0
* @since 1.1.0
*/
@JsonInclude(Include.NON_NULL)
public class MistralAiOcrOptions implements ModelOptions {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
* along with information about extracted images.
*
* @author Alexandros Pappas
* @since 1.0.0
* @since 1.1.0
*/
public class MistralOcrApi {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
* Tests for {@link MistralAiOcrOptions}.
*
* @author Alexandros Pappas
* @since 1.0.0
* @since 1.1.0
*/
class MistralAiOcrOptionsTests {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
* Tests for the Mistral OCR API.
*
* @author Alexandros Pappas
* @since 1.0.0
* @since 1.1.0
*/
@EnabledIfEnvironmentVariable(named = "MISTRAL_AI_API_KEY", matches = ".+")
class MistralOcrApiIT {
Expand Down