forked from Mirror/ollama4j
		
	Compare commits
	
		
			38 Commits
		
	
	
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
|   | 44e4d6f8b0 | ||
|   | b5a647ea30 | ||
|   | 14c6efb761 | ||
|   | 2ea8faeea8 | ||
|   | 9f79dfa936 | ||
|   | 1fb2258a77 | ||
|   | 5a46e08759 | ||
|   | 885fe14309 | ||
|   | 94d043d0fd | ||
|   | 981a033a1d | ||
|   | e3a8f1e153 | ||
|   | 2cefc1e80a | ||
|   | 275649329a | ||
|   | 581400d44d | ||
|   | b0733dcd87 | ||
|   | 148b748efb | ||
|   | 9c52368ab2 | ||
|   | 729dd9c41f | ||
|   | 4b49d6004c | ||
|   | 7fd27634d4 | ||
|   | ea64fc4677 | ||
|   | 376cd28e0c | ||
|   | 31c47c6468 | ||
|   | 2e34a1514c | ||
|   | dae99e839d | ||
|   | 877901ccff | ||
|   | 0fec81eef7 | ||
|   | 4dd27b3e1a | ||
|   | a06ededd46 | ||
|   | 1c687831d1 | ||
|   | 2c2750b3e1 | ||
|   | 809efa9053 | ||
|   | 4a7e9ac7f0 | ||
|   | 04f9e77149 | ||
|   | 553e7dab41 | ||
|   | 3a75cd7e92 | ||
|   | c45b5de3ea | ||
|   | 6c2b3ca206 | 
							
								
								
									
										15
									
								
								.github/workflows/maven-publish.yml
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										15
									
								
								.github/workflows/maven-publish.yml
									
									
									
									
										vendored
									
									
								
							| @@ -3,14 +3,14 @@ | ||||
|  | ||||
| name: Test and Publish Package | ||||
|  | ||||
| on: | ||||
|   release: | ||||
|     types: [ "created" ] | ||||
|  | ||||
| #on: | ||||
| #  push: | ||||
| #    branches: [ "main" ] | ||||
| #  workflow_dispatch: | ||||
| #  release: | ||||
| #    types: [ "created" ] | ||||
|  | ||||
| on: | ||||
|   push: | ||||
|     branches: [ "main" ] | ||||
|   workflow_dispatch: | ||||
|  | ||||
| jobs: | ||||
|   build: | ||||
| @@ -58,7 +58,6 @@ jobs: | ||||
|           git config --global user.email "koujalgi.amith@gmail.com" | ||||
|           git config --global user.name "amithkoujalgi" | ||||
|           mvn -B -ntp -DskipTests -Pci-cd -Darguments="-DskipTests -Pci-cd" release:clean release:prepare release:perform | ||||
|         #          mvn clean -Punit-tests release:clean release:prepare release:perform -B -Darguments="-DskipTests -Dgpg.passphrase=${{ secrets.GPG_PASSPHRASE }}" | ||||
|         env: | ||||
|           MAVEN_USERNAME: ${{ secrets.OSSRH_USERNAME }} | ||||
|           MAVEN_PASSWORD: ${{ secrets.OSSRH_PASSWORD }} | ||||
|   | ||||
							
								
								
									
										18
									
								
								Makefile
									
									
									
									
									
								
							
							
						
						
									
										18
									
								
								Makefile
									
									
									
									
									
								
							| @@ -1,17 +1,13 @@ | ||||
| build: | ||||
| 	mvn -B clean install | ||||
|  | ||||
| ut: | ||||
| 	mvn clean test -Punit-tests | ||||
|  | ||||
| it: | ||||
| 	mvn clean verify -Pintegration-tests | ||||
|  | ||||
| build: | ||||
| 	mvn -B clean test install -Punit-tests -Dgpg.passphrase="${GPG_PASSPHRASE}" -e | ||||
|  | ||||
| release: | ||||
| 	mvn -B clean install -Punit-tests release:clean release:prepare release:perform -Dgpg.passphrase="${GPG_PASSPHRASE}" -e | ||||
|  | ||||
| update-version: | ||||
| 	mvn versions:set -DnewVersion=1.0.1 | ||||
|  | ||||
| deploy: | ||||
| 	mvn clean deploy -Punit-tests -Dgpg.passphrase="$GPG_PASSPHRASE" -e | ||||
| list-releases: | ||||
| 	curl 'https://central.sonatype.com/api/internal/browse/component/versions?sortField=normalizedVersion&sortDirection=asc&page=0&size=12&filter=namespace%3Aio.github.amithkoujalgi%2Cname%3Aollama4j' \ | ||||
|       --compressed \ | ||||
|       --silent | jq '.components[].version' | ||||
							
								
								
									
										37
									
								
								README.md
									
									
									
									
									
								
							
							
						
						
									
										37
									
								
								README.md
									
									
									
									
									
								
							| @@ -53,34 +53,27 @@ for [Ollama](https://github.com/jmorganca/ollama/blob/main/docs/api.md) APIs. | ||||
|  | ||||
| #### Installation | ||||
|  | ||||
| In your Maven project, add this dependency available in: | ||||
|  | ||||
| - https://central.sonatype.com/artifact/io.github.amithkoujalgi/ollama4j | ||||
| - [Central Repository](https://s01.oss.sonatype.org/#nexus-search;quick~ollama4j) | ||||
| In your Maven project, add this dependency: | ||||
|  | ||||
| ```xml | ||||
|  | ||||
| <dependency> | ||||
|     <groupId>io.github.amithkoujalgi</groupId> | ||||
|     <artifactId>ollama4j</artifactId> | ||||
|     <version>1.0-SNAPSHOT</version> | ||||
|     <version>1.0.20</version> | ||||
| </dependency> | ||||
| ``` | ||||
|  | ||||
| You might want to include the Maven repository to pull the ollama4j library from. Include this in | ||||
| your `pom.xml`: | ||||
|  | ||||
|  | ||||
| ```xml | ||||
| [![][lib-shield]][lib] | ||||
|  | ||||
| <repositories> | ||||
|     <repository> | ||||
|         <id>ollama4j-from-ossrh</id> | ||||
|         <url>https://s01.oss.sonatype.org/content/repositories/snapshots</url> | ||||
|     </repository> | ||||
| </repositories> | ||||
| ``` | ||||
| [lib]: https://central.sonatype.com/artifact/io.github.amithkoujalgi/ollama4j | ||||
|  | ||||
| You should also include an implementation of [SL4J](https://www.slf4j.org/) logger in your `pom.xml` file. For example, | ||||
| [lib-shield]: https://img.shields.io/badge/ollama4j-get_latest_version-blue.svg?style=for-the-badge&labelColor=gray | ||||
|  | ||||
| You might want to include an implementation of [SL4J](https://www.slf4j.org/) logger in your `pom.xml` file. For | ||||
| example, | ||||
|  | ||||
| Use `slf4j-jdk14` implementation: | ||||
|  | ||||
| @@ -106,14 +99,6 @@ or use `logback-classic` implementation: | ||||
|  | ||||
| or use other suitable implementations. | ||||
|  | ||||
| #### Build: | ||||
|  | ||||
| Build your project to resolve the dependencies: | ||||
|  | ||||
| ```shell | ||||
| mvn clean install -U | ||||
| ``` | ||||
|  | ||||
| You can then use the Ollama Java APIs by importing `ollama4j`: | ||||
|  | ||||
| ```java | ||||
| @@ -468,6 +453,10 @@ Run integration tests: | ||||
| make it | ||||
| ``` | ||||
|  | ||||
| #### Releases | ||||
|  | ||||
| Releases (newer artifact versions) are done automatically on pushing the code to the `main` branch through GitHub Actions CI workflow. | ||||
|  | ||||
| #### Traction | ||||
|  | ||||
| [](https://star-history.com/#amithkoujalgi/ollama4j&Date) | ||||
|   | ||||
| @@ -1,13 +1,16 @@ | ||||
| Understanding publishing: | ||||
| https://dzone.com/articles/how-to-publish-artifacts-to-maven-central | ||||
|  | ||||
| GPG Signing setup | ||||
| Reference Repo: | ||||
| https://github.com/dsibilio/badge-maker/tree/main | ||||
|  | ||||
| ## GPG Setup | ||||
| ## GPG Signing setup | ||||
|  | ||||
| ### GPG Setup | ||||
|  | ||||
| https://central.sonatype.org/publish/requirements/gpg/#listing-keys | ||||
|  | ||||
| ### Steps | ||||
| #### Steps | ||||
|  | ||||
| - Create key: `gpg --gen-key` and then list keys to verify: `gpg --list-keys` | ||||
| - Distributing Your Public Key: | ||||
| @@ -33,4 +36,19 @@ gpg --armor --export-secret-keys 88AA0C903A513340A0F3094326257A6F6F5F24A9 > ~/ol | ||||
|  | ||||
| https://central.sonatype.org/publish/publish-maven/ | ||||
|  | ||||
| ### Steps | ||||
| ## List release versions | ||||
|  | ||||
| ```shell | ||||
| curl 'https://central.sonatype.com/api/internal/browse/component/versions?sortField=normalizedVersion&sortDirection=desc&page=0&size=12&filter=namespace%3Aio.github.amithkoujalgi%2Cname%3Aollama4j' \ | ||||
|   --compressed \ | ||||
|   --silent | jq '.components[].version' | ||||
| ``` | ||||
|  | ||||
| Deployment steps to test. [IGNORE THIS FOR PUBLISHING CONTEXT. THIS IS ONLY TO TEST STUFF OUT LOCALLY] | ||||
|  | ||||
| ```shell | ||||
| # release: | ||||
| mvn -B clean install deploy -Punit-tests -Dgpg.passphrase="${GPG_PASSPHRASE}" -e | ||||
| #or | ||||
| mvn -B clean install -Punit-tests release:clean release:prepare release:perform -Dgpg.passphrase="${GPG_PASSPHRASE}" -e | ||||
| ``` | ||||
							
								
								
									
										26
									
								
								pom.xml
									
									
									
									
									
								
							
							
						
						
									
										26
									
								
								pom.xml
									
									
									
									
									
								
							| @@ -4,7 +4,7 @@ | ||||
|  | ||||
|     <groupId>io.github.amithkoujalgi</groupId> | ||||
|     <artifactId>ollama4j</artifactId> | ||||
|     <version>1.0.16-SNAPSHOT</version> | ||||
|     <version>1.0.27</version> | ||||
|  | ||||
|     <name>Ollama4j</name> | ||||
|     <description>Java library for interacting with Ollama API.</description> | ||||
| @@ -39,22 +39,11 @@ | ||||
|         <connection>scm:git:git@github.com:amithkoujalgi/ollama4j.git</connection> | ||||
|         <developerConnection>scm:git:https://github.com/amithkoujalgi/ollama4j.git</developerConnection> | ||||
|         <url>https://github.com/amithkoujalgi/ollama4j</url> | ||||
|         <tag>v1.0.1</tag> | ||||
|         <tag>v1.0.27</tag> | ||||
|     </scm> | ||||
|  | ||||
|     <build> | ||||
|         <plugins> | ||||
|             <!--            <plugin>--> | ||||
|             <!--                <groupId>org.sonatype.plugins</groupId>--> | ||||
|             <!--                <artifactId>nexus-staging-maven-plugin</artifactId>--> | ||||
|             <!--                <version>1.6.13</version>--> | ||||
|             <!--                <extensions>true</extensions>--> | ||||
|             <!--                <configuration>--> | ||||
|             <!--                    <serverId>ossrh</serverId>--> | ||||
|             <!--                    <nexusUrl>https://s01.oss.sonatype.org/</nexusUrl>--> | ||||
|             <!--                    <autoReleaseAfterClose>true</autoReleaseAfterClose>--> | ||||
|             <!--                </configuration>--> | ||||
|             <!--            </plugin>--> | ||||
|             <plugin> | ||||
|                 <groupId>org.apache.maven.plugins</groupId> | ||||
|                 <artifactId>maven-source-plugin</artifactId> | ||||
| @@ -249,6 +238,17 @@ | ||||
|                             </execution> | ||||
|                         </executions> | ||||
|                     </plugin> | ||||
|                     <plugin> | ||||
|                         <groupId>org.sonatype.plugins</groupId> | ||||
|                         <artifactId>nexus-staging-maven-plugin</artifactId> | ||||
|                         <version>1.6.13</version> | ||||
|                         <extensions>true</extensions> | ||||
|                         <configuration> | ||||
|                             <serverId>ossrh</serverId> | ||||
|                             <nexusUrl>https://s01.oss.sonatype.org/</nexusUrl> | ||||
|                             <autoReleaseAfterClose>true</autoReleaseAfterClose> | ||||
|                         </configuration> | ||||
|                     </plugin> | ||||
|                 </plugins> | ||||
|             </build> | ||||
|         </profile> | ||||
|   | ||||
		Reference in New Issue
	
	Block a user