Skip to content

Commit

Permalink
Fix broken links to tests in README (#30)
Browse files Browse the repository at this point in the history
  • Loading branch information
wesdoyle authored Jan 4, 2024
1 parent 7cb2f95 commit 800370d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Follow the instructions for your database library:

Or check out an example:

- [Embeddings](tests/Pgvector.Tests/OpenAITests.cs) with OpenAI
- [Embeddings](tests/Pgvector.CSharp.Tests/OpenAITests.cs) with OpenAI

## Npgsql (C#)

Expand Down Expand Up @@ -175,7 +175,7 @@ conn.Execute("CREATE INDEX ON items USING hnsw (embedding vector_l2_ops)");

Use `vector_ip_ops` for inner product and `vector_cosine_ops` for cosine distance

See a [full example](https://github.com/pgvector/pgvector-dotnet/blob/master/tests/Pgvector.Tests/DapperTests.cs)
See a [full example](https://github.com/pgvector/pgvector-dotnet/blob/master/tests/Pgvector.CSharp.Tests/DapperTests.cs)

## Entity Framework Core

Expand Down Expand Up @@ -288,7 +288,7 @@ protected override void OnModelCreating(ModelBuilder modelBuilder)

Use `vector_ip_ops` for inner product and `vector_cosine_ops` for cosine distance

See a [full example](https://github.com/pgvector/pgvector-dotnet/blob/master/tests/Pgvector.Tests/EntityFrameworkCoreTests.cs)
See a [full example](https://github.com/pgvector/pgvector-dotnet/blob/master/tests/Pgvector.CSharp.Tests/EntityFrameworkCoreTests.cs)

## Npgsql.FSharp

Expand Down

0 comments on commit 800370d

Please sign in to comment.