Skip to content

Commit

Permalink
feat(llm-modules): update module names and dependencies
Browse files Browse the repository at this point in the history
- Update module names and dependencies in `settings.gradle.kts` and `build.gradle.kts` files.
- Rename files and directories related to the `sentence-transformers` module to `local-embedding`.
- Update dependencies in `rag-script/build.gradle.kts` and `server/build.gradle.kts` files.
- Update file paths and references in the codebase.
  • Loading branch information
phodal committed Feb 5, 2024
1 parent c176000 commit b0296fc
Show file tree
Hide file tree
Showing 14 changed files with 3 additions and 3 deletions.
File renamed without changes.
2 changes: 1 addition & 1 deletion rag-modules/rag-script/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ dependencies {
implementation(projects.ragModules.document)
implementation(projects.ragModules.storeElasticsearch)
implementation(projects.codeModules.codeSplitter)
implementation(projects.llmModules.sentenceTransformers)
implementation(projects.llmModules.localEmbedding)
implementation(projects.llmModules.openai)

implementation(libs.chapi.domain)
Expand Down
2 changes: 1 addition & 1 deletion server/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ tasks.withType<BootJar> {

dependencies {
implementation(projects.llmModules.openai)
implementation(projects.llmModules.sentenceTransformers)
implementation(projects.llmModules.localEmbedding)
implementation(projects.codeModules.codeSplitter)
implementation(projects.cocoaCore)
implementation(projects.dsl.design)
Expand Down
2 changes: 1 addition & 1 deletion settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ include(":rag-modules:store-milvus")
include(":rag-modules:store-pinecone")
include(":rag-modules:store-elasticsearch")

include(":llm-modules:sentence-transformers")
include(":llm-modules:local-embedding")
include(":llm-modules:openai")
include(":llm-modules:connection")
include(":llm-modules:prompt-script")
Expand Down

0 comments on commit b0296fc

Please sign in to comment.