Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add langchain4j-pinecone #1163

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
io.grpc.internal.PickFirstLoadBalancerProvider
io.grpc.util.SecretRoundRobinLoadBalancerProvider$Provider
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
io.grpc.netty.shaded.io.grpc.netty.NettyChannelProvider
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
io.grpc.internal.DnsNameResolverProvider
58 changes: 58 additions & 0 deletions langchain4j-pinecone/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
<?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>

<groupId>dev.langchain4j.wso2</groupId>
<artifactId>langchain4j-pinecone</artifactId>
<version>0.35.0.wso2v1</version>
<packaging>bundle</packaging>

<dependencies>
<dependency>
<groupId>dev.langchain4j</groupId>
<artifactId>langchain4j-pinecone</artifactId>
<version>0.35.0</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-nop</artifactId>
<version>1.7.36</version>
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

use properties

</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<version>5.1.8</version>
<extensions>true</extensions>
<configuration>
<instructions>
<Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
<Bundle-Name>${project.artifactId}</Bundle-Name>
<Export-Package>
dev.langchain4j.*;version="${project.version}"
</Export-Package>
<Private-Package>
</Private-Package>
<Import-Package>
dev.langchain4j.*
</Import-Package>
<Embed-Dependency>*;scope=compile|runtime;inline=true</Embed-Dependency>
<Embed-Transitive>true</Embed-Transitive>
<_failok>true</_failok>
<_nouses>true</_nouses>
<DynamicImport-Package>*</DynamicImport-Package>
<Include-Resource>
META-INF/services=${basedir}/META-INF/services
</Include-Resource>
<_fixupmessages>"Classes found in the wrong directory..."</_fixupmessages>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
</project>