flappy
Used in
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.pleisto</groupId> <artifactId>flappy</artifactId> <version>0.0.8</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <!-- This module was also published with a richer model, Gradle metadata, --> <!-- which should be used instead. Do not delete the following line which --> <!-- is to indicate to Gradle or any Gradle module metadata file consumer --> <!-- that they should prefer consuming it instead. --> <!-- do_not_remove: published-with-gradle-metadata --> <modelVersion>4.0.0</modelVersion> <groupId>com.pleisto</groupId> <artifactId>flappy</artifactId> <version>0.0.8</version> <name>flappy</name> <description>A library developed to streamline the creation of AI applications and agents that use Large Language Models (LLMs).</description> <url>https://github.com/pleisto/flappy</url> <inceptionYear>2023</inceptionYear> <licenses> <license> <name>The Apache License, Version 2.0</name> <url>https://raw.githubusercontent.com/pleisto/flappy/main/LICENSE</url> </license> </licenses> <developers> <developer> <id>clszzyh</id> <name>Yuhang Shi</name> <url>https://github.com/clszzyh</url> <organization>pleisto</organization> <organizationUrl>https://github.com/pleisto</organizationUrl> </developer> </developers> <scm> <connection>scm:git:https://git@github.com/pleisto/flappy.git</connection> <url>https://github.com/pleisto/flappy</url> </scm> <issueManagement> <system>Github</system> <url>https://github.com/pleisto/flappy/issues</url> </issueManagement> <ciManagement> <system>Github Actions</system> <url>https://github.com/pleisto/flappy/actions/workflows/kotlin-ci.yml</url> </ciManagement> <dependencies> <dependency> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-stdlib</artifactId> <version>1.9.20</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-reflect</artifactId> <version>1.9.20</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.jetbrains.kotlinx</groupId> <artifactId>kotlinx-coroutines-jdk8</artifactId> <version>1.7.3</version> <scope>runtime</scope> </dependency> <dependency> <groupId>io.ktor</groupId> <artifactId>ktor-client-java-jvm</artifactId> <version>2.3.5</version> <scope>runtime</scope> </dependency> <dependency> <groupId>io.ktor</groupId> <artifactId>ktor-client-core-jvm</artifactId> <version>2.3.5</version> <scope>runtime</scope> </dependency> <dependency> <groupId>io.ktor</groupId> <artifactId>ktor-client-okhttp-jvm</artifactId> <version>2.3.5</version> <scope>runtime</scope> </dependency> <dependency> <groupId>com.theokanning.openai-gpt3-java</groupId> <artifactId>service</artifactId> <version>0.16.1</version> <scope>runtime</scope> </dependency> <dependency> <groupId>com.fasterxml.jackson.module</groupId> <artifactId>jackson-module-kotlin</artifactId> <version>2.15.3</version> <scope>runtime</scope> </dependency> <dependency> <groupId>com.fasterxml.jackson.dataformat</groupId> <artifactId>jackson-dataformat-yaml</artifactId> <version>2.15.3</version> <scope>runtime</scope> </dependency> <dependency> <groupId>io.github.cdimascio</groupId> <artifactId>dotenv-kotlin</artifactId> <version>6.4.1</version> <scope>runtime</scope> </dependency> <dependency> <groupId>com.github.spullara.mustache.java</groupId> <artifactId>compiler</artifactId> <version>0.9.11</version> <scope>runtime</scope> </dependency> <dependency> <groupId>com.pleisto</groupId> <artifactId>flappy-java-bindings</artifactId> <version>0.0.8</version> <scope>runtime</scope> </dependency> <dependency> <groupId>com.pleisto</groupId> <artifactId>flappy-java-bindings</artifactId> <version>0.0.8</version> <classifier>linux-x86_64</classifier> <scope>runtime</scope> </dependency> </dependencies> </project>