Skip to content

Commit

Permalink
Create core module (#51)
Browse files Browse the repository at this point in the history
  • Loading branch information
franciscodr authored May 11, 2023
1 parent 2351c37 commit 2f3739c
Show file tree
Hide file tree
Showing 60 changed files with 5 additions and 5 deletions.
File renamed without changes.
2 changes: 1 addition & 1 deletion example/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ java {
}

dependencies {
implementation(projects.langchain4kKotlin)
implementation(projects.langchain4kCore)
implementation(projects.langchain4kFilesystem)
implementation(libs.kotlinx.serialization.json)
implementation(libs.logback)
Expand Down
2 changes: 1 addition & 1 deletion langchain4k-filesystem/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ kotlin {
sourceSets {
val commonMain by getting {
dependencies {
implementation(projects.langchain4kKotlin)
implementation(projects.langchain4kCore)
implementation(libs.okio)
implementation(libs.klogging)
}
Expand Down
2 changes: 1 addition & 1 deletion scala/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ plugins {
}

dependencies {
//implementation(projects.langchain4kKotlin)
//implementation(projects.langchain4kCore)
implementation(libs.kotlinx.coroutines)
implementation(libs.ciris.core)
implementation(libs.ciris.refined)
Expand Down
4 changes: 2 additions & 2 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,5 @@ include("example")
include("langchain4k-scala")
project(":langchain4k-scala").projectDir = file("scala")

include("langchain4k-kotlin")
project(":langchain4k-kotlin").projectDir = file("kotlin")
include("langchain4k-core")
project(":langchain4k-core").projectDir = file("core")

0 comments on commit 2f3739c

Please sign in to comment.