Skip to content

Commit c89af08

Browse files
committed
Add items
1 parent 39aa276 commit c89af08

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

astra-db-java/src/main/java/com/datastax/astra/client/admin/AstraDBAdmin.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@
5757
@Slf4j
5858
public class AstraDBAdmin {
5959

60+
/** Default timeout in seconds. */
6061
public static final Integer WAIT_IN_SECONDS = 600;
6162

6263
/** Default cloud provider. (free-tier) */

astra-db-java/src/main/java/com/datastax/astra/client/auth/AWSEmbeddingHeadersProvider.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,8 @@ public class AWSEmbeddingHeadersProvider implements EmbeddingHeadersProvider {
2929

3030
/** Headers param with the embedding ApiKey when dealing with a embedding service provider. */
3131
public static String HEADER_AWS_ASSET_ID = "x-embedding-access-id";
32+
33+
/** Headers param with the embedding ApiKey when dealing with a embedding service provider. */
3234
public static String HEADER_AWS_SECRET_ID = "x-embedding-secret-id";
3335

3436
/** Headers param with the embedding ApiKey when dealing with a embedding service provider. */
@@ -62,6 +64,4 @@ public Map<String, String> getHeaders() {
6264
}
6365

6466

65-
66-
6767
}

astra-db-java/src/main/java/com/datastax/astra/client/model/FindEmbeddingProvidersResult.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,9 @@
3131
@Data @AllArgsConstructor
3232
public class FindEmbeddingProvidersResult {
3333

34+
/**
35+
* List of embedding providers
36+
*/
3437
Map<String, EmbeddingProvider> embeddingProviders;
3538

3639
}

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
<version.maven.plugin.coveralls>4.3.0</version.maven.plugin.coveralls>
4545
<version.maven.plugin.dependency>3.8.0</version.maven.plugin.dependency>
4646
<version.maven.plugin.enforcer>3.5.0</version.maven.plugin.enforcer>
47-
<version.maven.plugin.gpg>3.2.5</version.maven.plugin.gpg>
47+
<version.maven.plugin.gpg>3.2.6</version.maven.plugin.gpg>
4848
<version.maven.plugin.jacoco>0.8.12</version.maven.plugin.jacoco>
4949
<version.maven.plugin.javadoc>3.10.0</version.maven.plugin.javadoc>
5050
<version.maven.plugin.jar>3.4.2</version.maven.plugin.jar>

0 commit comments

Comments
 (0)