chore: new release version (#50)
This commit is contained in:
parent
69bd064243
commit
a0cfa07adc
3 changed files with 5 additions and 5 deletions
|
|
@ -30,7 +30,7 @@ Add the following dependency to your `pom.xml`:
|
|||
<dependency>
|
||||
<groupId>ai.z.openapi</groupId>
|
||||
<artifactId>zai-sdk</artifactId>
|
||||
<version>0.0.4</version>
|
||||
<version>0.0.5</version>
|
||||
</dependency>
|
||||
```
|
||||
|
||||
|
|
@ -39,7 +39,7 @@ Add the following dependency to your `build.gradle` (for Groovy DSL):
|
|||
|
||||
```groovy
|
||||
dependencies {
|
||||
implementation 'ai.z.openapi:zai-sdk:0.0.4'
|
||||
implementation 'ai.z.openapi:zai-sdk:0.0.5'
|
||||
}
|
||||
```
|
||||
|
||||
|
|
|
|||
|
|
@ -30,7 +30,7 @@ Z.ai AI 平台官方 Java SDK,提供统一接口访问强大的AI能力,包
|
|||
<dependency>
|
||||
<groupId>ai.z.openapi</groupId>
|
||||
<artifactId>zai-sdk</artifactId>
|
||||
<version>0.0.4</version>
|
||||
<version>0.0.5</version>
|
||||
</dependency>
|
||||
```
|
||||
|
||||
|
|
@ -39,7 +39,7 @@ Z.ai AI 平台官方 Java SDK,提供统一接口访问强大的AI能力,包
|
|||
|
||||
```groovy
|
||||
dependencies {
|
||||
implementation 'ai.z.openapi:zai-sdk:0.0.4'
|
||||
implementation 'ai.z.openapi:zai-sdk:0.0.5'
|
||||
}
|
||||
```
|
||||
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@ public class HttpRequestInterceptor implements Interceptor {
|
|||
.newBuilder()
|
||||
.header("Authorization", "Bearer " + accessToken)
|
||||
.header("x-source-channel", source_channel)
|
||||
.header("Zai-SDK-Ver", "0.0.4")
|
||||
.header("Zai-SDK-Ver", "0.0.5")
|
||||
.header("Accept-Language", "en-US,en");
|
||||
if (Objects.nonNull(config.getCustomHeaders())) {
|
||||
for (Map.Entry<String, String> entry : config.getCustomHeaders().entrySet()) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue