Skip to content

Commit

Permalink
1.0.83 (#88)
Browse files Browse the repository at this point in the history
* 1.0.83

* ,diff/path

* Update IterativePatchUtil.kt

* diff/patch and tabs fixes

* Update tabs.js

* Update IterativePatchUtilTest.kt

* wip

* wip

* Update AddApplyFileDiffLinks.kt
  • Loading branch information
acharneski authored Jul 12, 2024
1 parent 96720aa commit 158203a
Show file tree
Hide file tree
Showing 18 changed files with 1,071 additions and 627 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,18 +76,18 @@ Maven:
<dependency>
<groupId>com.simiacryptus</groupId>
<artifactId>skyenet-webui</artifactId>
<version>1.0.63</version>
<version>1.0.64</version>
</dependency>
```

Gradle:

```groovy
implementation group: 'com.simiacryptus', name: 'skyenet', version: '1.0.63'
implementation group: 'com.simiacryptus', name: 'skyenet', version: '1.0.64'
```

```kotlin
implementation("com.simiacryptus:skyenet:1.0.63")
implementation("com.simiacryptus:skyenet:1.0.64")
```

### 🌟 To Use
Expand Down
2 changes: 1 addition & 1 deletion core/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ val hsqldb_version = "2.7.2"

dependencies {

implementation(group = "com.simiacryptus", name = "jo-penai", version = "1.0.63")
implementation(group = "com.simiacryptus", name = "jo-penai", version = "1.0.64")
implementation(group = "org.hsqldb", name = "hsqldb", version = hsqldb_version)

implementation("org.apache.commons:commons-text:1.11.0")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ open class ClientManager {
apiBase: Map<APIProvider, String> = APIProvider.values().associate { it to (it.base ?: "") },
scheduledPool: ListeningScheduledExecutorService = HttpClientManager.scheduledPool,
workPool: ThreadPoolExecutor = HttpClientManager.workPool,
client: CloseableHttpClient = HttpClientManager.client
client: CloseableHttpClient = HttpClientManager.createHttpClient()
) : OpenAIClient(
key = key,
logLevel = Level.DEBUG,
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Gradle Releases -> https://github.com/gradle/gradle/releases
libraryGroup = com.simiacryptus.skyenet
libraryVersion = 1.0.82
libraryVersion = 1.0.83
gradleVersion = 7.6.1
kotlin.daemon.jvmargs=-Xmx2g
7 changes: 3 additions & 4 deletions webui/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ val jetty_version = "11.0.18"
val jackson_version = "2.17.0"
dependencies {

implementation(group = "com.simiacryptus", name = "jo-penai", version = "1.0.63") {
implementation(group = "com.simiacryptus", name = "jo-penai", version = "1.0.64") {
exclude(group = "org.slf4j", module = "slf4j-api")
}

Expand Down Expand Up @@ -96,9 +96,8 @@ dependencies {
implementation(group = "commons-codec", name = "commons-codec", version = "1.16.0")

implementation(group = "org.slf4j", name = "slf4j-api", version = "2.0.9")
runtimeOnly(group = "org.slf4j", name = "slf4j-simple", version = "2.0.9")
testImplementation(group = "ch.qos.logback", name = "logback-classic", version = "1.4.14")
testImplementation(group = "ch.qos.logback", name = "logback-core", version = "1.4.14")
runtimeOnly(group = "ch.qos.logback", name = "logback-classic", version = "1.4.14")
runtimeOnly(group = "ch.qos.logback", name = "logback-core", version = "1.4.14")

testImplementation(kotlin("script-runtime"))
testImplementation(group = "org.junit.jupiter", name = "junit-jupiter-api", version = "5.10.1")
Expand Down
Loading

0 comments on commit 158203a

Please sign in to comment.