Skip to content

Commit cb4af07

Browse files
jiafu1115ericbottard
authored andcommitted
Replace README.md with package-info.java in converter package
Signed-off-by: stroller <fujian1115@gmail.com>
1 parent cc9c2cd commit cb4af07

File tree

2 files changed

+36
-15
lines changed

2 files changed

+36
-15
lines changed

spring-ai-model/src/main/java/org/springframework/ai/converter/README.md

Lines changed: 0 additions & 15 deletions
This file was deleted.
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
/*
2+
* Copyright 2023-2025 the original author or authors.
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* https://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
15+
*/
16+
17+
/**
18+
* Provides converters for transforming AI model text outputs into structured Java types.
19+
*
20+
* <p>
21+
* The output of AI models traditionally arrives as a {@code String}, even if you ask for
22+
* the reply to be in JSON. This package provides specialized converters that employ
23+
* meticulously crafted prompts and parsing logic to convert text responses into usable
24+
* data structures for application integration.
25+
*
26+
* <p>
27+
* For detailed documentation and usage examples, see the <a href=
28+
* "https://docs.spring.io/spring-ai/reference/api/structured-output-converter.html">Structured
29+
* Output Converter Reference Guide</a>.
30+
*/
31+
@NonNullApi
32+
@NonNullFields
33+
package org.springframework.ai.converter;
34+
35+
import org.springframework.lang.NonNullApi;
36+
import org.springframework.lang.NonNullFields;

0 commit comments

Comments
 (0)