Skip to content
This repository has been archived by the owner on Aug 25, 2024. It is now read-only.

Commit

Permalink
Properly initialize Couchbase assets classes
Browse files Browse the repository at this point in the history
  • Loading branch information
cdbartholomew committed Aug 1, 2024
1 parent ed61270 commit 8da7b20
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion examples/applications/query-couchbase/write.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ assets:
scope: "PLACEHOLDER"
collection: "PLACEHOLDER"
dimension: 1536
port: 8091
port: "8091"
pipeline:
- name: "compute-embeddings"
type: "compute-ai-embeddings"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ solr-collection
opensearch-index
elasticsearch-index
astra-collection
couchbase-bucket
couchbase-assets
pinecone-index
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,5 @@ ai.langstream.agents.vector.solr.SolrAssetsManagerProvider
ai.langstream.agents.vector.opensearch.OpenSearchAssetsManagerProvider
ai.langstream.agents.vector.elasticsearch.ElasticSearchAssetsManagerProvider
ai.langstream.agents.vector.astra.AstraVectorDBAssetsManagerProvider
ai.langstream.agents.vector.pinecone.PineconeAssetsManagerProvider
ai.langstream.agents.vector.pinecone.PineconeAssetsManagerProvider
ai.langstream.agents.vector.couchbase.CouchbaseAssetsManagerProvider
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ public static class InstanceConfig {
"""
The name of the port.
""")
private int port;
private String port;

@ConfigProperty(
required = true,
Expand Down

0 comments on commit 8da7b20

Please sign in to comment.