Skip to content

Commit 5b09518

Browse files
committed
Add doc link to JavaDoc
1 parent aa0d091 commit 5b09518

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

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

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,10 @@ public class OrchestrationAiModel {
2727
* "frequency_penalty", 0,
2828
* "presence_penalty", 0)
2929
* }</pre>
30+
*
31+
* @link <a
32+
* href="https://help.sap.com/docs/sap-ai-core/sap-ai-core-service-guide/harmonized-api">SAP
33+
* AI Core: Orchestration - Harmonized API</a>
3034
*/
3135
Map<String, Object> params;
3236

@@ -123,6 +127,9 @@ LLMModuleConfig createConfig() {
123127
* @param key the parameter key.
124128
* @param value the parameter value, nullable.
125129
* @return A new model with the additional parameter.
130+
* @link <a
131+
* href="https://help.sap.com/docs/sap-ai-core/sap-ai-core-service-guide/harmonized-api">SAP
132+
* AI Core: Orchestration - Harmonized API</a>
126133
*/
127134
@Nonnull
128135
public OrchestrationAiModel withParam(@Nonnull final String key, @Nullable final Object value) {
@@ -138,6 +145,9 @@ public OrchestrationAiModel withParam(@Nonnull final String key, @Nullable final
138145
* @param value the parameter value, nullable.
139146
* @param <ValueT> the parameter value type.
140147
* @return A new model with the additional parameter.
148+
* @link <a
149+
* href="https://help.sap.com/docs/sap-ai-core/sap-ai-core-service-guide/harmonized-api">SAP
150+
* AI Core: Orchestration - Harmonized API</a>
141151
*/
142152
@Nonnull
143153
public <ValueT> OrchestrationAiModel withParam(

0 commit comments

Comments
 (0)