Created
November 6, 2023 10:47
-
-
Save rominirani/f80cde0fc391b18af672d8eaf4bf667f to your computer and use it in GitHub Desktop.
This file contains hidden or 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
<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/maven-v4_0_0.xsd"> | |
<modelVersion>4.0.0</modelVersion> | |
<groupId>gcfv2</groupId> | |
<artifactId>http</artifactId> | |
<version>0.0.1</version> | |
<name>HTTP Function for Cloud Functions 2nd gen</name> | |
<properties> | |
<maven.compiler.target>11</maven.compiler.target> | |
<maven.compiler.source>11</maven.compiler.source> | |
</properties> | |
<dependencies> | |
<dependency> | |
<groupId>com.google.cloud.functions</groupId> | |
<artifactId>functions-framework-api</artifactId> | |
<version>1.0.4</version> | |
</dependency> | |
<dependency> | |
<groupId>com.google.code.gson</groupId> | |
<artifactId>gson</artifactId> | |
<version>2.10</version> | |
</dependency> | |
<dependency> | |
<groupId>dev.langchain4j</groupId> | |
<artifactId>langchain4j-core</artifactId> | |
<version>0.23.0</version> | |
</dependency> | |
<dependency> | |
<groupId>dev.langchain4j</groupId> | |
<artifactId>langchain4j</artifactId> | |
<version>0.23.0</version> | |
</dependency> | |
<dependency> | |
<groupId>dev.langchain4j</groupId> | |
<artifactId>langchain4j-vertex-ai</artifactId> | |
<version>0.23.0</version> | |
</dependency> | |
<dependency> | |
<groupId>ch.qos.logback</groupId> | |
<artifactId>logback-core</artifactId> | |
<version>1.3.5</version> | |
</dependency> | |
<dependency> | |
<groupId>ch.qos.logback</groupId> | |
<artifactId>logback-classic</artifactId> | |
<version>1.3.5</version> | |
</dependency> | |
<dependency> | |
<groupId>org.slf4j</groupId> | |
<artifactId>slf4j-api</artifactId> | |
<version>2.0.4</version> | |
</dependency> | |
</dependencies> | |
</project> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment