-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove Java code and use Kotlin instead
- Loading branch information
1 parent
ebf8370
commit eccb17f
Showing
10 changed files
with
29 additions
and
83 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
ko_fi: alexcheng1982 | ||
github: alexcheng1982 |
32 changes: 0 additions & 32 deletions
32
...-file/src/main/java/io/github/llmagentbuilder/tool/readlocalfile/ReadLocalFileConfig.java
This file was deleted.
Oops, something went wrong.
5 changes: 0 additions & 5 deletions
5
...file/src/main/java/io/github/llmagentbuilder/tool/readlocalfile/ReadLocalFileRequest.java
This file was deleted.
Oops, something went wrong.
5 changes: 0 additions & 5 deletions
5
...ile/src/main/java/io/github/llmagentbuilder/tool/readlocalfile/ReadLocalFileResponse.java
This file was deleted.
Oops, something went wrong.
10 changes: 10 additions & 0 deletions
10
...-file/src/main/kotlin/io/github/llmagentbuilder/tool/readlocalfile/ReadLocalFileConfig.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
package io.github.llmagentbuilder.tool.readlocalfile | ||
|
||
data class ReadLocalFileConfig( | ||
val basePath: String, | ||
val charset: String? | ||
) | ||
|
||
data class ReadLocalFileRequest(val filePath: String) | ||
|
||
data class ReadLocalFileResponse(val content: String) |
21 changes: 0 additions & 21 deletions
21
...ile/src/main/java/io/github/llmagentbuilder/tool/writelocalfile/WriteLocalFileConfig.java
This file was deleted.
Oops, something went wrong.
8 changes: 0 additions & 8 deletions
8
...le/src/main/java/io/github/llmagentbuilder/tool/writelocalfile/WriteLocalFileRequest.java
This file was deleted.
Oops, something went wrong.
5 changes: 0 additions & 5 deletions
5
...e/src/main/java/io/github/llmagentbuilder/tool/writelocalfile/WriteLocalFileResponse.java
This file was deleted.
Oops, something went wrong.
14 changes: 14 additions & 0 deletions
14
...ile/src/main/kotlin/io/github/llmagentbuilder/tool/writelocalfile/WriteLocalFileConfig.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
package io.github.llmagentbuilder.tool.writelocalfile | ||
|
||
data class WriteLocalFileConfig(val basePath: String) | ||
|
||
data class WriteLocalFileRequest( | ||
val filename: String, | ||
val url: String, | ||
val content: String, | ||
val append: Boolean, | ||
) | ||
|
||
data class WriteLocalFileResponse( | ||
val path: String, | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters