Skip to content

Commit 66e4a20

Browse files
committed
Formating javadocs.
1 parent d726540 commit 66e4a20

File tree

5 files changed

+21
-27
lines changed

5 files changed

+21
-27
lines changed

orchestration/src/main/java/com/sap/ai/sdk/orchestration/AzureContentFilter.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,11 @@
2323
* }</pre>
2424
*
2525
* @link <a
26-
* href="https://help.sap.com/docs/sap-ai-core/sap-ai-core-service-guide/input-filtering">SAP
27-
* AI Core: Orchestration - Input Filtering</a>
26+
* href="https://help.sap.com/docs/sap-ai-core/sap-ai-core-service-guide/input-filtering">SAP AI
27+
* Core: Orchestration - Input Filtering</a>
2828
* @link <a
29-
* href="https://help.sap.com/docs/sap-ai-core/sap-ai-core-service-guide/output-filtering">SAP
30-
* AI Core: Orchestration - Output Filtering</a>
29+
* href="https://help.sap.com/docs/sap-ai-core/sap-ai-core-service-guide/output-filtering">SAP
30+
* AI Core: Orchestration - Output Filtering</a>
3131
*/
3232
@Setter
3333
@NoArgsConstructor

orchestration/src/main/java/com/sap/ai/sdk/orchestration/ContentFilter.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@
88
* thresholds for different content categories.
99
*
1010
* @link <a
11-
* href="https://help.sap.com/docs/sap-ai-core/sap-ai-core-service-guide/input-filtering">SAP
12-
* AI Core: Orchestration - Input Filtering</a>
11+
* href="https://help.sap.com/docs/sap-ai-core/sap-ai-core-service-guide/input-filtering">SAP AI
12+
* Core: Orchestration - Input Filtering</a>
1313
* @link <a
14-
* href="https://help.sap.com/docs/sap-ai-core/sap-ai-core-service-guide/output-filtering">SAP
15-
* AI Core: Orchestration - Output Filtering</a>
14+
* href="https://help.sap.com/docs/sap-ai-core/sap-ai-core-service-guide/output-filtering">SAP
15+
* AI Core: Orchestration - Output Filtering</a>
1616
*/
1717
public interface ContentFilter {
1818

orchestration/src/main/java/com/sap/ai/sdk/orchestration/DpiMasking.java

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,8 @@
2222
* SAP Data Privacy Integration (DPI) can mask personally identifiable information using either
2323
* anonymization or pseudonymization.
2424
*
25-
* @link <a
26-
* href="https://help.sap.com/docs/sap-ai-core/sap-ai-core-service-guide/data-masking">SAP
27-
* AI Core: Orchestration - Data Masking</a>
25+
* @link <a href="https://help.sap.com/docs/sap-ai-core/sap-ai-core-service-guide/data-masking">SAP
26+
* AI Core: Orchestration - Data Masking</a>
2827
*/
2928
@Value
3029
@Getter(AccessLevel.PACKAGE)

orchestration/src/main/java/com/sap/ai/sdk/orchestration/MaskingProvider.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33
import com.sap.ai.sdk.orchestration.model.MaskingProviderConfig;
44
import javax.annotation.Nonnull;
55

6-
/** Interface for masking configurations.
6+
/**
7+
* Interface for masking configurations.
78
*
8-
* @link <a
9-
* href="https://help.sap.com/docs/sap-ai-core/sap-ai-core-service-guide/data-masking">SAP
10-
* AI Core: Orchestration - Data Masking</a>
9+
* @link <a href="https://help.sap.com/docs/sap-ai-core/sap-ai-core-service-guide/data-masking">SAP
10+
* AI Core: Orchestration - Data Masking</a>
1111
*/
1212
public interface MaskingProvider {
1313

orchestration/src/main/java/com/sap/ai/sdk/orchestration/OrchestrationModuleConfig.java

Lines changed: 7 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,7 @@ public class OrchestrationModuleConfig {
5757
* A template to be populated with input parameters. Upon request execution, this template will be
5858
* enhanced with any messages and parameter values from {@link OrchestrationPrompt}.
5959
*
60-
* @link <a
61-
* href="https://help.sap.com/docs/sap-ai-core/sap-ai-core-service-guide/templating">SAP
60+
* @link <a href="https://help.sap.com/docs/sap-ai-core/sap-ai-core-service-guide/templating">SAP
6261
* AI Core: Orchestration - Templating</a>
6362
*/
6463
@Nullable TemplatingModuleConfig templateConfig;
@@ -67,9 +66,9 @@ public class OrchestrationModuleConfig {
6766
* A masking configuration to pseudonymous or anonymize sensitive data in the input.
6867
*
6968
* @link <a
70-
* href="https://help.sap.com/docs/sap-ai-core/sap-ai-core-service-guide/data-masking">SAP
71-
* AI Core: Orchestration - Data Masking</a>
72-
* */
69+
* href="https://help.sap.com/docs/sap-ai-core/sap-ai-core-service-guide/data-masking">SAP AI
70+
* Core: Orchestration - Data Masking</a>
71+
*/
7372
@Nullable MaskingModuleConfig maskingConfig;
7473

7574
/**
@@ -81,7 +80,7 @@ public class OrchestrationModuleConfig {
8180
* @link <a
8281
* href="https://help.sap.com/docs/sap-ai-core/sap-ai-core-service-guide/output-filtering">SAP
8382
* AI Core: Orchestration - Output Filtering</a>
84-
* */
83+
*/
8584
@Nullable FilteringModuleConfig filteringConfig;
8685

8786
/**
@@ -90,7 +89,6 @@ public class OrchestrationModuleConfig {
9089
* @link <a
9190
* href="https://help.sap.com/docs/sap-ai-core/sap-ai-core-service-guide/model-configuration">
9291
* SAP AI Core: Orchestration - Model Configuration</a>
93-
*
9492
* @param aiModel The LLM configuration to use.
9593
* @return A new configuration with the given LLM configuration.
9694
*/
@@ -104,9 +102,8 @@ public OrchestrationModuleConfig withLlmConfig(@Nonnull final OrchestrationAiMod
104102
* Creates a new configuration with the given Data Masking configuration.
105103
*
106104
* @link <a
107-
* href="https://help.sap.com/docs/sap-ai-core/sap-ai-core-service-guide/data-masking">SAP
108-
* AI Core: Orchestration - Data Masking</a>
109-
*
105+
* href="https://help.sap.com/docs/sap-ai-core/sap-ai-core-service-guide/data-masking">SAP AI
106+
* Core: Orchestration - Data Masking</a>
110107
* @param maskingProvider The Data Masking configuration to use.
111108
* @param maskingProviders Additional Data Masking configurations to use.
112109
* @return A new configuration with the given Data Masking configuration.
@@ -132,7 +129,6 @@ public OrchestrationModuleConfig withMaskingConfig(
132129
* @link <a
133130
* href="https://help.sap.com/docs/sap-ai-core/sap-ai-core-service-guide/input-filtering">SAP
134131
* AI Core: Orchestration - Input Filtering</a>
135-
*
136132
* @param contentFilters one or more content filters to apply to the input.
137133
* @return a new {@code OrchestrationModuleConfig} instance with the specified input filters
138134
* added.
@@ -167,7 +163,6 @@ public OrchestrationModuleConfig withInputFiltering(
167163
* @link <a
168164
* href="https://help.sap.com/docs/sap-ai-core/sap-ai-core-service-guide/output-filtering">SAP
169165
* AI Core: Orchestration - Output Filtering</a>
170-
*
171166
* @param contentFilters one or more content filters to apply to the output.
172167
* @return a new {@code OrchestrationModuleConfig} instance with the specified output filters
173168
* added.

0 commit comments

Comments
 (0)