-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
updating readme - added Maven and Gradle dependencies after deployment
- Loading branch information
1 parent
03e779b
commit 2d2945b
Showing
1 changed file
with
53 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,54 @@ | ||
# Easy-open-ai | ||
This repo contains the community library for OpenAI's API in java | ||
This repo contains the community library for OpenAI's API in java, the easiest way to use GPT 3/4 in your applications. | ||
|
||
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/io.github.namankhurpia/easyopenai/badge.svg)](https://maven-badges.herokuapp.com/maven-central/io.github.namankhurpia/easyopenai) | ||
|
||
[![Your Custom Badge](https://img.shields.io/badge/Easyopenai-1.0.0-brightgreen)](https://central.sonatype.com/artifact/io.github.namankhurpia/easyopenai) | ||
|
||
# Implementation | ||
|
||
## Maven | ||
|
||
```xml | ||
<dependency> | ||
<groupId>io.github.namankhurpia</groupId> | ||
<artifactId>easyopenai</artifactId> | ||
<version>1.0.0</version> | ||
</dependency> | ||
``` | ||
|
||
## Groovy - Gradle | ||
``` | ||
implementation group: 'io.github.namankhurpia', name: 'easyopenai', version: '1.0.0' | ||
``` | ||
|
||
## Gradle Java - | ||
``` | ||
implementation 'io.github.namankhurpia:easyopenai:1.0.0' | ||
``` | ||
## Gradle Kotlin- | ||
``` | ||
implementation("io.github.namankhurpia:easyopenai:1.0.0") | ||
``` | ||
## SBT - | ||
``` | ||
libraryDependencies += "io.github.namankhurpia" % "easyopenai" % "1.0.0" | ||
``` | ||
## Ivy- | ||
``` | ||
<dependency org="io.github.namankhurpia" name="easyopenai" rev="1.0.0"/> | ||
``` | ||
## Grape- | ||
``` | ||
@Grapes( | ||
@Grab(group='io.github.namankhurpia', module='easyopenai', version='1.0.0') | ||
) | ||
``` | ||
## Leiningen | ||
``` | ||
[io.github.namankhurpia/easyopenai "1.0.0"] | ||
``` | ||
## Buildr | ||
``` | ||
'io.github.namankhurpia:easyopenai:jar:1.0.0' | ||
``` |