Skip to content

Commit

Permalink
Google Java Format
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions committed Sep 2, 2023
1 parent 9c2cab9 commit fed9d3f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Examples/supabase-miniLM/SupabaseMiniLMExample.java
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@
import java.util.Objects;
import java.util.Properties;
import java.util.concurrent.TimeUnit;
import java.util.stream.IntStream;

import static com.edgechain.lib.constants.EndpointConstants.OPENAI_CHAT_COMPLETION_API;

Expand Down Expand Up @@ -159,7 +158,8 @@ public void upsert(ArkRequest arkRequest) throws IOException {

String[] arr = pdfReader.readByChunkSize(file, 512);

PostgresRetrieval retrieval = new PostgresRetrieval(arr, miniLMEndpoint, postgresEndpoint, 1536, filename, arkRequest);
PostgresRetrieval retrieval =
new PostgresRetrieval(arr, miniLMEndpoint, postgresEndpoint, 1536, filename, arkRequest);

// retrieval.setBatchSize(100); // Modifying batchSize....

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
import java.util.Collection;
import java.util.Enumeration;
import java.util.Objects;
import java.util.stream.Collectors;

public class ArkRequest {

Expand Down

0 comments on commit fed9d3f

Please sign in to comment.