Skip to content

Commit 1249941

Browse files
committed
update readme to add details for 0.6.0 version
1 parent 7560814 commit 1249941

File tree

1 file changed

+13
-10
lines changed

1 file changed

+13
-10
lines changed

README.md

Lines changed: 13 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,40 +1,43 @@
11
# IntelliJava-OpenaiAPI
2-
*IntelliJava V0.5.5*
2+
*IntelliJava V0.6.0*
33

4-
IntelliJava allows java developers to easily integrate with the latest language models and deep learning frameworks using few lines of java code.
5-
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.
4+
IntelliJava is the ultimate tool for Java developers looking to integrate with the latest language models and deep learning frameworks. The library 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. With just a few lines of code, you can easily access the power of cutting-edge AI models to enhance your projects.
5+
6+
The supported models in this version:
7+
- OpenAI: Access GPT-3 to generate text and DALL·E to generate images. OpenAI is preferred when you want quality results without tuning.
8+
- Cohere.ai: generate text; Cohere allows you to generate your language model to suit your specific needs.
69

710

811
# How to use
912
1. Import the core jar file to your project or add the maven package (check Integration section).
1013
2. Add gson dependency using maven or the jar file (check dependencies section).
11-
3. Call the ``RemoteLanguageModel`` for the language model and ``RemoateImageModel`` for image generation.
14+
3. Call the ``RemoteLanguageModel`` for the language models and ``RemoateImageModel`` for image generation.
1215

1316
## Integration
14-
The package released to [Maven Central Repository](https://central.sonatype.dev/artifact/io.github.barqawiz/intellijava.core/0.5.5).
17+
The package released to [Maven Central Repository](https://central.sonatype.dev/artifact/io.github.barqawiz/intellijava.core/0.6.0).
1518

1619
Maven:
1720
```xml
1821
<dependency>
1922
<groupId>io.github.barqawiz</groupId>
2023
<artifactId>intellijava.core</artifactId>
21-
<version>0.5.5</version>
24+
<version>0.6.0</version>
2225
</dependency>
2326
```
2427

2528
Gradle:
2629

2730
```
28-
implementation group: 'io.github.barqawiz', name: 'intellijava.core', version: '0.5.5'
31+
implementation group: 'io.github.barqawiz', name: 'intellijava.core', version: '0.6.0'
2932
```
3033

3134
Gradle(Kotlin):
3235
```
33-
implementation("io.github.barqawiz:intellijava.core:0.5.5")
36+
implementation("io.github.barqawiz:intellijava.core:0.6.0")
3437
```
3538

3639
Jar download:
37-
[intellijava.jar](https://insta-answer-public.s3.amazonaws.com/opensource/IntelliJava/version0.5.5/intellijava.core-0.5.5.jar).
40+
[intellijava.jar](https://repo1.maven.org/maven2/io/github/barqawiz/intellijava.core/0.6.0/intellijava.core-0.6.0.jar).
3841

3942
For ready integration: try the sample_code.
4043

@@ -95,7 +98,7 @@ Call for contributors:
9598
- [x] Add support to OpenAI Completion API.
9699
- [x] Add support to OpenAI DALL·E 2.
97100
- [ ] Add support to other OpenAI functions.
98-
- [ ] Add support to cohere generate API.
101+
- [x] Add support to cohere generate API.
99102
- [ ] Add support to Google language models.
100103
- [ ] Add support to Amazon language models.
101104
- [ ] Add support to Midjourney image generation.

0 commit comments

Comments
 (0)