This repository was archived by the owner on Jul 16, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
src/main/scala/io/cequence/pineconescala/demo Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 1
1
# Pinecone Scala Client - Demo/Seed Project
2
- [ ![ version] ( https://img.shields.io/badge/version-0.0.1 -green.svg )] ( https://cequence.io ) [ ![ License] ( https://img.shields.io/badge/License-MIT-lightgrey.svg )] ( https://opensource.org/licenses/MIT ) [ ![ Twitter Follow] ( https://img.shields.io/twitter/follow/0xbnd?style=social )] ( https://twitter.com/0xbnd )
2
+ [ ![ version] ( https://img.shields.io/badge/version-0.1.0 -green.svg )] ( https://cequence.io ) [ ![ License] ( https://img.shields.io/badge/License-MIT-lightgrey.svg )] ( https://opensource.org/licenses/MIT ) [ ![ Twitter Follow] ( https://img.shields.io/twitter/follow/0xbnd?style=social )] ( https://twitter.com/0xbnd )
3
3
4
4
This is a ready-to-fork, example/demo project demonstrating how to use [ Pinecone Scala Client] ( https://github.com/cequence-io/pinecone-scala ) .
5
5
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ organization := "io.cequence"
2
2
3
3
name := " pinecone-scala-demo"
4
4
5
- version := " 0.0.1 "
5
+ version := " 0.1.0 "
6
6
7
7
// Supported Scala versions
8
8
val scala212 = " 2.12.15"
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ object QueryVectors extends PineconeDemoApp {
16
16
println(s " Matched vector id: ${matchInfo.id}" )
17
17
println(s " Matched vector values: ${matchInfo.values.take(20 ).mkString(" , " )}.. " ) // by default values are not included
18
18
println(s " Matched vector score: ${matchInfo.score}" )
19
- println(s " Matched vector metadata: ${matchInfo.metadata.get }" ) // by default metadata is included
19
+ println(s " Matched vector metadata: ${matchInfo.metadataUnwrapped }" ) // by default metadata is included
20
20
}
21
21
}
22
22
}
You can’t perform that action at this time.
0 commit comments