Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ public final class InterviewConstant {

public static final int RAW_TEXT_MAX_LENGTH = 10_000;
public static final int KPT_TEXT_MAX_LENGTH = 8_000;
public static final long QNA_SET_CONVERT_RESULT_TIMEOUT_MILLISECONDS = 30_000L;
public static final long QNA_SET_CONVERT_RESULT_TIMEOUT_MILLISECONDS = 180_000L;
}
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ public void startRawTextConvertAsync(Long interviewId) {
GeminiGenerateRequest requestBody = GeminiGenerateRequest.from(prompt);
CompletableFuture<GeminiGenerateResponse> future =
geminiClient.sendAsyncTextGenerateRequest(requestBody, GenerateModel.GEMMA_3_27B_IT);
log.info("request sended");
log.info("[startRawTextConvertAsync] request sended");
future.thenApplyAsync(
response -> {
rawTextConvertService.processConvertSuccess(interviewId, response);
Expand Down
2 changes: 1 addition & 1 deletion backend/src/main/resources/application-gemini.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ spring:
prompt-path: "${GEMINI_PROMPT_PATH}"
rest-client-connect-timeout-sec: 3
rest-client-read-timeout-sec: 30
web-client-request-timeout-sec: 30
web-client-request-timeout-sec: 180
Loading
Loading