<?xml version="1.0" encoding="UTF-8"?>
<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>io.github.intellimill</groupId>
        <artifactId>llmkit-parent</artifactId>
        <version>0.1.1</version>
    </parent>

    <artifactId>llmkit-examples</artifactId>
    <name>llmkit-examples</name>
    <description>Example code for llmkit</description>

    <properties>
        <maven.deploy.skip>true</maven.deploy.skip>
    </properties>

    <dependencies>
        <dependency>
            <groupId>io.github.intellimill</groupId>
            <artifactId>llmkit-openai</artifactId>
        </dependency>
        <dependency>
            <groupId>io.github.intellimill</groupId>
            <artifactId>llmkit-anthropic</artifactId>
        </dependency>
        <dependency>
            <groupId>io.github.intellimill</groupId>
            <artifactId>llmkit-deepseek</artifactId>
        </dependency>
        <dependency>
            <groupId>io.github.intellimill</groupId>
            <artifactId>llmkit-glm</artifactId>
        </dependency>
        <dependency>
            <groupId>io.github.intellimill</groupId>
            <artifactId>llmkit-qwen</artifactId>
        </dependency>
        <dependency>
            <groupId>io.github.intellimill</groupId>
            <artifactId>llmkit-minimax</artifactId>
        </dependency>
        <dependency>
            <groupId>io.github.intellimill</groupId>
            <artifactId>llmkit-kimi</artifactId>
        </dependency>
    </dependencies>
</project>
