Skip to content

Commit

Permalink
released to [Maven Central Repository]
Browse files Browse the repository at this point in the history
- update readme.
- update pom details.
  • Loading branch information
Barqawiz committed Jan 12, 2023
1 parent a2bd72d commit 3aaf050
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 20 deletions.
26 changes: 21 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# IntelliJava-OpenaiAPI
*IntelliJava V0.4.0*
*IntelliJava V0.5.5*

IntelliJava allows java developers to easily integrate with the latest language models and deep learning frameworks using few lines of java code.
The first version supports only Openai APIs. It provides a simple and intuitive API with convenient methods for sending text input to models like (GPT-3 and DALL·E) and receiving generated text or images in return.
Expand All @@ -11,15 +11,31 @@ The first version supports only Openai APIs. It provides a simple and intuitive
3. Call the ``RemoteLanguageModel`` for the language model and ``RemoateImageModel`` for image generation.

## Integration
The package released to [Maven Central Repository](https://central.sonatype.dev/artifact/io.github.barqawiz/intellijava.core/0.5.5).

For jar integration download:
[intellijava.jar](https://insta-answer-public.s3.amazonaws.com/opensource/IntelliJava/version0.3/com.intellijava.core-0.3.jar).
Maven:
```xml
<dependency>
<groupId>io.github.barqawiz</groupId>
<artifactId>intellijava.core</artifactId>
<version>0.5.5</version>
</dependency>
```

Gradle:

For maven:
```
to be updated.
implementation group: 'io.github.barqawiz', name: 'intellijava.core', version: '0.5.5'
```

Gradle(Kotlin):
```
implementation("io.github.barqawiz:intellijava.core:0.5.5")
```

Jar download:
[intellijava.jar](https://insta-answer-public.s3.amazonaws.com/opensource/IntelliJava/version0.5.5/intellijava.core-0.5.5.jar).

For ready integration: try the sample_code.

## Code Example
Expand Down
30 changes: 15 additions & 15 deletions core/com.intellijava.core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>io.github.barqawiz</groupId>
<artifactId>intellijava.core</artifactId>
<version>0.4.0</version>
<version>0.5.5</version>

<name>Intellijava</name>
<description>IntelliJava allows java developers to easily integrate with the latest language models, image generation, and deep learning frameworks.</description>
Expand Down Expand Up @@ -119,19 +119,19 @@
<plugins>
<!-- GPG Signed Components -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.5</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.6</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- maven publish plugin -->
<plugin>
<groupId>org.sonatype.plugins</groupId>
Expand All @@ -152,7 +152,7 @@
<executions>
<execution>
<id>attach-sources</id>
<phase>verify</phase>

<goals>
<goal>jar-no-fork</goal>
</goals>
Expand Down

0 comments on commit 3aaf050

Please sign in to comment.