SetUp

Installation πŸ”§

For Java

git clone https://github.com/QQyrus/qyrus-ai-sdk-java.git

In the repo folder where pom.xml is present, run this command to create a jar in local mvn cache

mvn clean install

Usage πŸš€

Obtain AI SDK API Token

Get your API Token from qyrus support team or Get the token by signing up into Qyrus.


Install SDK

Add these dependencies in your repository where you want to install this sdk in pom.xml

<dependencies>
    <dependency>
        <groupId>org.qyrus.ai_sdk</groupId>
        <artifactId>qyrus-sdk-java</artifactId>
        <version>1.0-SNAPSHOT</version>
    </dependency>
</dependencies>

Run the code

Below you will find the samples to use the SDK Once you include the code, run the code using

mvn compile exec:java


For Python

  • To install qyrusai, run the following command:

pip install qyrusai

For more details, refer to this linkarrow-up-right

Usage πŸš€

Obtain AI SDK API Token

Get your API Token from qyrus support team or Get the token by signing up into Qyrus. Store the token as "QYRUS_API_TOKEN" in your environment variable.

Here is an example of how to import required modules:

For Rest APIs

Obtain Rest APIs API Token

Get your API Token from qyrus support team or Get the token by signing up into Qyrus and you are good to use our Rest APIs.

Last updated