Skip to content

Commit

Permalink
Fix dependency section
Browse files Browse the repository at this point in the history
  • Loading branch information
NickSeagull authored Jul 20, 2023
1 parent 43323f2 commit fe8a9cf
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions website/docs/02_getting_started.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,17 @@ you can follow the steps below:
Import the eLLMental dependencies in your `build.gradle.kts` file as follows:

```kotlin
repositories {
maven { url = uri("https://jitpack.io") }
allprojects {
repositories {
maven { url = uri("https://jitpack.io") }
}
}

dependencies {
implementation('com.github.theam:ellmental:core')
implementation('com.github.theam:ellmental:modules:semanticsearch')
implementation('com.github.theam:ellmental:modules:vectorstore')
implementation('com.github.theam:ellmental:modules:embeddingsmodel')
implementation("com.github.theam.ellmental:core:main-SNAPSHOT")
implementation("com.github.theam.ellmental:semanticsearch:main-SNAPSHOT")
implementation("com.github.theam.ellmental:vectorstore:main-SNAPSHOT")
implementation("com.github.theam.ellmental:embeddingsmodel:main-SNAPSHOT")
}
```

Expand Down

0 comments on commit fe8a9cf

Please sign in to comment.