forked from HamaWhiteGG/langchain-java
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAzureOpenAiClientTest.java
98 lines (81 loc) · 3.2 KB
/
AzureOpenAiClientTest.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.hw.openai;
import com.hw.openai.common.OpenaiApiType;
import com.hw.openai.entity.chat.ChatCompletion;
import com.hw.openai.entity.chat.ChatMessage;
import com.hw.openai.entity.completions.Completion;
import com.hw.openai.entity.embeddings.Embedding;
import org.junit.jupiter.api.AfterAll;
import org.junit.jupiter.api.BeforeAll;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
import java.util.List;
import static org.assertj.core.api.Assertions.assertThat;
/**
* @author Tingliang Wang
*/
@Disabled("Test requires costly Azure OpenAI calls, can be run manually.")
class AzureOpenAiClientTest {
private static OpenAiClient client;
@BeforeAll
static void setup() {
client = OpenAiClient.builder()
.openaiApiKey("xxx")
.openaiApiType(OpenaiApiType.AZURE)
.openaiApiBase("https://xxx.openai.azure.com/")
.openaiApiVersion("2023-05-15")
.build()
.init();
}
@AfterAll
static void cleanup() {
client.close();
}
@Test
void testCompletion() {
Completion completion = Completion.builder()
.model("text-davinci-003")
.prompt(List.of("Say this is a test"))
.maxTokens(700)
.temperature(0)
.build();
assertThat(client.completion(completion)).isEqualTo("This is indeed a test.");
}
@Test
void testChatCompletion() {
ChatMessage message = ChatMessage.of("Hello!");
ChatCompletion chatCompletion = ChatCompletion.builder()
.model("gpt-35-turbo")
.temperature(0)
.messages(List.of(message))
.build();
assertThat(client.chatCompletion(chatCompletion)).isEqualTo("Hello there! How can I assist you today?");
}
@Test
void testEmbeddings() {
var embedding = Embedding.builder()
.model("text-embedding-ada-002")
.input(List.of("The food was delicious and the waiter..."))
.build();
var response = client.createEmbedding(embedding);
assertThat(response).as("Response should not be null").isNotNull();
assertThat(response.getData()).as("Data list should have size 1").hasSize(1);
assertThat(response.getData().get(0).getEmbedding()).as("Embedding should have size 1536").hasSize(1536);
}
}