This commit is contained in:
Amith Koujalgi 2023-11-08 14:09:31 +05:30
parent f5b46410e8
commit bf0a1e2160
2 changed files with 1 additions and 2 deletions

View File

@ -195,6 +195,7 @@ Find the full `Javadoc` (API specifications) [here](https://amithkoujalgi.github
- Use Java-naming conventions for attributes in the request/response models instead of the snake-case conventions. ( - Use Java-naming conventions for attributes in the request/response models instead of the snake-case conventions. (
possibly with Jackson-mapper's `@JsonProperty`) possibly with Jackson-mapper's `@JsonProperty`)
- Setup logging
#### Get Involved #### Get Involved

View File

@ -36,8 +36,6 @@ public class OllamaAsyncResultCallback extends Thread {
if (!ollamaResponseModel.getDone()) { if (!ollamaResponseModel.getDone()) {
response.append(ollamaResponseModel.getResponse()); response.append(ollamaResponseModel.getResponse());
} }
// System.out.println("Streamed response line: " +
// responseModel.getResponse());
} }
in.close(); in.close();
this.isDone = true; this.isDone = true;