Skip to content

Commit 3fdda60

Browse files
committed
put back
1 parent 551b35f commit 3fdda60

File tree

1 file changed

+26
-5
lines changed

1 file changed

+26
-5
lines changed

llm4j-huggingface/pom.xml

Lines changed: 26 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,16 +11,37 @@
1111
<relativePath>../parent-pom.xml</relativePath>
1212
</parent>
1313

14-
<artifactId>llm4j-api</artifactId>
14+
<artifactId>llm4j-huggingface</artifactId>
1515

1616
<packaging>jar</packaging>
17-
<name>LLM4J API Module</name>
18-
<description>The LLM4J package</description>
17+
<name>LLM4J HuggingFace Module</name>
18+
<description>The LLM4J API implementation for HuggingFace</description>
1919

20-
<url>http://www.slf4j.org</url>
20+
<url>http://github.com/dzlab</url>
2121

2222
<properties>
23-
<module-name>org.llm4j</module-name>
23+
<module-name>org.llm4j.huggingface</module-name>
24+
<llm4j.provider.implementation>org.llm4j.huggingface.HFServiceProvider</llm4j.provider.implementation>
25+
<llm4j.provider.type>huggingface</llm4j.provider.type>
26+
<retrofit2.version>2.9.0</retrofit2.version>
2427
</properties>
2528

29+
<dependencies>
30+
<dependency>
31+
<groupId>org.llm4j</groupId>
32+
<artifactId>llm4j-api</artifactId>
33+
</dependency>
34+
<dependency>
35+
<groupId>com.squareup.retrofit2</groupId>
36+
<artifactId>retrofit</artifactId>
37+
<version>${retrofit2.version}</version>
38+
</dependency>
39+
<dependency>
40+
<groupId>com.squareup.retrofit2</groupId>
41+
<artifactId>converter-gson</artifactId>
42+
<version>${retrofit2.version}</version>
43+
</dependency>
44+
</dependencies>
45+
46+
2647
</project>

0 commit comments

Comments
 (0)