Skip to content

Commit

Permalink
refactor: move root to core #236
Browse files Browse the repository at this point in the history
  • Loading branch information
phodal committed Sep 26, 2024
1 parent ddd30c1 commit 6789fae
Show file tree
Hide file tree
Showing 401 changed files with 4 additions and 2 deletions.
3 changes: 3 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -427,6 +427,9 @@ project(":core") {
}

implementation("com.theokanning.openai-gpt3-java:service:0.18.2")
implementation("com.squareup.okhttp3:okhttp:4.4.1")
implementation("com.squareup.okhttp3:okhttp-sse:4.4.1")

implementation("com.squareup.retrofit2:converter-jackson:2.9.0")
implementation("com.squareup.retrofit2:converter-gson:2.9.0")
implementation("com.fasterxml.jackson.module:jackson-module-kotlin:2.14.2")
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ import kotlinx.coroutines.Dispatchers
import kotlinx.coroutines.delay
import kotlinx.coroutines.flow.*
import kotlinx.coroutines.withContext
import org.jetbrains.annotations.Nls
import java.awt.BorderLayout
import java.awt.event.MouseAdapter
import java.awt.event.MouseEvent
Expand Down Expand Up @@ -316,7 +315,7 @@ class ChatCodingPanel(private val chatCodingService: ChatCodingService, val disp
inputSection.moveCursorToStart()
}

fun showSuggestion(msg: @Nls String) {
fun showSuggestion(msg: String) {
val label = panel {
row {
icon(AutoDevIcons.Idea).gap(RightGap.SMALL)
Expand Down
Loading

0 comments on commit 6789fae

Please sign in to comment.