Slide 48
Slide 48 text
©2023 DataStax. – All rights reserved
CREATE TABLE $name (
row_id text PRIMARY KEY,
attributes_blob text,
body_blob text,
metadata_s map,
vector vector
)
CREATE TABLE $name (
partition_id text,
row_id text,
attributes_blob text,
body_blob text,
metadata_s map,
vector vector,
PRIMARY KEY (partition_id, row_id)
)
CREATE TABLE BaseTable (
row_id text PRIMARY KEY,
body_blob text,
metadata_s map,
)
LLM Providers
Embeddings API
Rest API
Chat completion API
Rest API
Prompt Template
Map data into prompts
PlainCassandraTable
VectorStore
Store embeddings as knowledge for LLM
MetadataVectorCassandraTable
VectorStore + Partition aware
Store embeddings as knowledge for LLM
ClusteredMetadataVectorCassandraTable
create
put
search
create
put
search
connection
VectorStore
ChatMemory
Semantic Cache
Meta-Data Filtering
KV Cache
🦜🔗Langchain
adapters
adapters
adapters
CASSIO: Dedicated models for your Queries