<project xmlns="http://maven.apache.org/POM/4.0.0"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>

    <parent>
        <groupId>top.bella</groupId>
        <artifactId>openai-java</artifactId>
        <version>0.24.5</version>
    </parent>
    <packaging>jar</packaging>


    <artifactId>openai-client</artifactId>
    <name>openai-client</name>
    <description>Basic retrofit client for OpenAI's GPT APIs</description>

    <dependencies>
        <!-- API Module Dependency -->
        <dependency>
            <groupId>top.bella</groupId>
            <artifactId>openai-api</artifactId>
            <version>${project.version}</version>
        </dependency>
        <dependency>
            <groupId>com.squareup.retrofit2</groupId>
            <artifactId>retrofit</artifactId>
            <version>2.9.0</version>
        </dependency>
        <dependency>
            <groupId>com.squareup.retrofit2</groupId>
            <artifactId>adapter-rxjava2</artifactId>
            <version>2.9.0</version>
        </dependency>
        <dependency>
            <groupId>com.squareup.retrofit2</groupId>
            <artifactId>converter-jackson</artifactId>
            <version>2.9.0</version>
        </dependency>
    </dependencies>


</project>
