File tree Expand file tree Collapse file tree 2 files changed +36
-15
lines changed
spring-ai-model/src/main/java/org/springframework/ai/converter Expand file tree Collapse file tree 2 files changed +36
-15
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 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 ;
You can’t perform that action at this time.
0 commit comments