Skip to content

Commit

Permalink
Improve pgvector docs (langchain-ai#755)
Browse files Browse the repository at this point in the history
  • Loading branch information
ankane authored Apr 12, 2023
1 parent 9e4bbea commit 8e4ff20
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 10 deletions.
5 changes: 0 additions & 5 deletions docs/docs/modules/indexes/retrievers/supabase-hybrid.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -52,11 +52,6 @@ begin
end;
$$;

-- Create an index to be used by the similarity search function
create index on documents
using ivfflat (embedding vector_cosine_ops)
with (lists = 100);

-- Create a function to keyword search for documents
create function kw_match_documents(query_text text, match_count int)
returns table (id bigint, content text, metadata jsonb, similarity real)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,6 @@ begin
limit match_count;
end;
$$;

-- Create an index to be used by the search function
create index on documents
using ivfflat (embedding vector_cosine_ops)
with (lists = 100);
```

## Usage
Expand Down

0 comments on commit 8e4ff20

Please sign in to comment.