You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: sdks/java/ml/inference/openai/src/main/java/org/apache/beam/sdk/ml/inference/openai/OpenAIModelHandler.java
+41-44Lines changed: 41 additions & 44 deletions
Original file line number
Diff line number
Diff line change
@@ -4,13 +4,13 @@
4
4
* distributed with this work for additional information
5
5
* regarding copyright ownership. The ASF licenses this file
6
6
* to you under the Apache License, Version 2.0 (the
7
-
* License); you may not use this file except in compliance
7
+
* "License"); you may not use this file except in compliance
8
8
* with the License. You may obtain a copy of the License at
9
9
*
10
10
* http://www.apache.org/licenses/LICENSE-2.0
11
11
*
12
12
* Unless required by applicable law or agreed to in writing, software
13
-
* distributed under the License is distributed on an AS IS BASIS,
13
+
* distributed under the License is distributed on an "AS IS" BASIS,
14
14
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15
15
* See the License for the specific language governing permissions and
Copy file name to clipboardExpand all lines: sdks/java/ml/inference/openai/src/main/java/org/apache/beam/sdk/ml/inference/openai/OpenAIModelParameters.java
+10-13Lines changed: 10 additions & 13 deletions
Original file line number
Diff line number
Diff line change
@@ -4,13 +4,13 @@
4
4
* distributed with this work for additional information
5
5
* regarding copyright ownership. The ASF licenses this file
6
6
* to you under the Apache License, Version 2.0 (the
7
-
* License); you may not use this file except in compliance
7
+
* "License"); you may not use this file except in compliance
8
8
* with the License. You may obtain a copy of the License at
9
9
*
10
10
* http://www.apache.org/licenses/LICENSE-2.0
11
11
*
12
12
* Unless required by applicable law or agreed to in writing, software
13
-
* distributed under the License is distributed on an AS IS BASIS,
13
+
* distributed under the License is distributed on an "AS IS" BASIS,
14
14
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15
15
* See the License for the specific language governing permissions and
16
16
* limitations under the License.
@@ -22,10 +22,11 @@
22
22
/**
23
23
* Configuration parameters required for OpenAI model inference.
24
24
*
25
-
* <p>This class encapsulates all configuration needed to initialize and communicate with
26
-
* OpenAI's API, including authentication credentials, model selection, and inference instructions.
25
+
* <p>This class encapsulates all configuration needed to initialize and communicate with OpenAI's
26
+
* API, including authentication credentials, model selection, and inference instructions.
Copy file name to clipboardExpand all lines: sdks/java/ml/inference/openai/src/main/java/org/apache/beam/sdk/ml/inference/openai/OpenAIModelResponse.java
+4-2Lines changed: 4 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -4,13 +4,13 @@
4
4
* distributed with this work for additional information
5
5
* regarding copyright ownership. The ASF licenses this file
6
6
* to you under the Apache License, Version 2.0 (the
7
-
* License); you may not use this file except in compliance
7
+
* "License"); you may not use this file except in compliance
8
8
* with the License. You may obtain a copy of the License at
9
9
*
10
10
* http://www.apache.org/licenses/LICENSE-2.0
11
11
*
12
12
* Unless required by applicable law or agreed to in writing, software
13
-
* distributed under the License is distributed on an AS IS BASIS,
13
+
* distributed under the License is distributed on an "AS IS" BASIS,
14
14
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15
15
* See the License for the specific language governing permissions and
16
16
* limitations under the License.
@@ -21,9 +21,11 @@
21
21
22
22
/**
23
23
* Response from OpenAI model inference results.
24
+
*
24
25
* <p>This class encapsulates the text output returned from OpenAI models..
0 commit comments