Skip to content

Commit

Permalink
#4292 - ollama-based recommender
Browse files Browse the repository at this point in the history
- Clean up dependencies
  • Loading branch information
reckart committed Nov 14, 2023
1 parent 444e235 commit f43561b
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 13 deletions.
1 change: 1 addition & 0 deletions inception/inception-app-webapp/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -900,6 +900,7 @@
<usedDependency>de.tudarmstadt.ukp.inception.app:inception-imls-external</usedDependency>
<usedDependency>de.tudarmstadt.ukp.inception.app:inception-imls-elg</usedDependency>
<usedDependency>de.tudarmstadt.ukp.inception.app:inception-imls-hf</usedDependency>
<usedDependency>de.tudarmstadt.ukp.inception.app:inception-imls-ollama</usedDependency>
<usedDependency>de.tudarmstadt.ukp.inception.app:inception-imls-opennlp</usedDependency>
<usedDependency>de.tudarmstadt.ukp.inception.app:inception-imls-stringmatch</usedDependency>
<usedDependency>de.tudarmstadt.ukp.inception.app:inception-imls-weblicht</usedDependency>
Expand Down
33 changes: 21 additions & 12 deletions inception/inception-imls-ollama/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,10 @@
<groupId>de.tudarmstadt.ukp.inception.app</groupId>
<artifactId>inception-recommendation-api</artifactId>
</dependency>
<dependency>
<groupId>de.tudarmstadt.ukp.inception.app</groupId>
<artifactId>inception-api-annotation</artifactId>
</dependency>

<dependency>
<groupId>de.tudarmstadt.ukp.inception.app</groupId>
Expand All @@ -57,12 +61,24 @@
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
</dependency>

<!-- UIMA -->
<dependency>
<groupId>org.apache.uima</groupId>
<artifactId>uimaj-core</artifactId>
</dependency>
<dependency>
<groupId>org.apache.uima</groupId>
<artifactId>uimafit-core</artifactId>
</dependency>
<dependency>
<groupId>org.dkpro.core</groupId>
<artifactId>dkpro-core-api-segmentation-asl</artifactId>
</dependency>

<!-- Spring -->
<dependency>
Expand All @@ -86,18 +102,6 @@
<groupId>org.apache.wicket</groupId>
<artifactId>wicket-spring</artifactId>
</dependency>
<dependency>
<groupId>com.googlecode.wicket-jquery-ui</groupId>
<artifactId>wicket-kendo-ui</artifactId>
</dependency>
<dependency>
<groupId>com.googlecode.wicket-jquery-ui</groupId>
<artifactId>wicket-jquery-ui-core</artifactId>
</dependency>
<dependency>
<groupId>org.danekja</groupId>
<artifactId>jdk-serializable-functional</artifactId>
</dependency>

<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
Expand All @@ -108,6 +112,11 @@
<artifactId>jackson-databind</artifactId>
</dependency>

<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>

<!-- Test -->
<dependency>
<groupId>org.dkpro.core</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,4 @@ OllamaResponseFormat.JSON=JSON

extractionMode=Extraction mode
ExtractionMode.RESPONSE_AS_LABEL=Response as label
ExtractionMode.MENTIONS_FROM_JSON=Mentions from JSON list
ExtractionMode.MENTIONS_FROM_JSON=Mentions from JSON

0 comments on commit f43561b

Please sign in to comment.