Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
nicoloboschi committed Nov 17, 2023
1 parent 489a791 commit dba3e36
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,10 @@
import lombok.Data;

@Data
@AgentConfig(name = "Pinecone", description = """
@AgentConfig(
name = "Pinecone",
description =
"""
Writes data to Pinecone service.
To add metadata fields you can add vector.metadata.my-field: "value.my-field". The value is a JSTL Expression to compute the actual value.
""")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,6 @@ public void testWriteDb() {
null);
}


@Test
@SneakyThrows
public void testWritePinecone() {
Expand All @@ -121,7 +120,7 @@ public void testWritePinecone() {
vector.namespace: "value.namespace"
vector.metadata.genre: "value.genre"
vector.metadata.genre2: "value.genre2"
""",
null);
}
Expand Down

0 comments on commit dba3e36

Please sign in to comment.