-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e7da1ca
commit 5c45cdd
Showing
12 changed files
with
324 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
<?php | ||
|
||
namespace Upstash\Vector; | ||
|
||
final readonly class SparseVector | ||
{ | ||
/** | ||
* @param array<int> $indices | ||
* @param array<float> $values | ||
*/ | ||
public function __construct(public array $indices = [], public array $values = []) {} | ||
|
||
public static function of(array $indices = [], array $values = []): SparseVector | ||
{ | ||
return new self($indices, $values); | ||
} | ||
|
||
public function toArray(): array | ||
{ | ||
return [ | ||
'indices' => $this->indices, | ||
'values' => $this->values, | ||
]; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
<?php | ||
|
||
namespace Upstash\Vector\Tests\Concerns; | ||
|
||
use Upstash\Vector\Contracts\IndexInterface; | ||
use Upstash\Vector\Contracts\IndexNamespaceInterface; | ||
use Upstash\Vector\Index; | ||
|
||
trait UsesSparseIndex | ||
{ | ||
protected IndexInterface $index; | ||
|
||
protected IndexNamespaceInterface $namespace; | ||
|
||
public function setUp(): void | ||
{ | ||
parent::setUp(); | ||
|
||
$this->index = new Index( | ||
url: getenv('SPARSE_UPSTASH_VECTOR_REST_URL'), | ||
token: getenv('SPARSE_UPSTASH_VECTOR_REST_TOKEN'), | ||
); | ||
|
||
$this->namespace = $this->index->namespace(bin2hex(random_bytes(32))); | ||
} | ||
|
||
public function tearDown(): void | ||
{ | ||
$this->namespace->delete(); | ||
|
||
parent::tearDown(); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
<?php | ||
|
||
namespace Upstash\Vector\Tests\Dense\Operations; | ||
|
||
use PHPUnit\Framework\TestCase; | ||
use Upstash\Vector\DataQuery; | ||
use Upstash\Vector\DataUpsert; | ||
use Upstash\Vector\Tests\Concerns\UsesDenseIndexWithEmbedding; | ||
use Upstash\Vector\Tests\Concerns\WaitsForIndex; | ||
|
||
class QueryDataTest extends TestCase | ||
{ | ||
use UsesDenseIndexWithEmbedding; | ||
use WaitsForIndex; | ||
|
||
public function test_query_data(): void | ||
{ | ||
$this->namespace->upsertDataMany([ | ||
new DataUpsert( | ||
id: '1', | ||
data: 'The capital of Japan is Tokyo', | ||
), | ||
new DataUpsert( | ||
id: '2', | ||
data: 'The capital of France is Paris', | ||
), | ||
new DataUpsert( | ||
id: '3', | ||
data: 'The capital of Germany is Berlin', | ||
), | ||
]); | ||
|
||
$this->waitForIndex($this->namespace); | ||
|
||
$results = $this->namespace->queryData(new DataQuery( | ||
data: 'What is the capital of France?', | ||
topK: 1, | ||
)); | ||
|
||
$this->assertCount(1, $results); | ||
$this->assertEquals('2', $results[0]->id); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
<?php | ||
|
||
namespace Upstash\Vector\Tests\Sparse\Operations; | ||
|
||
use PHPUnit\Framework\TestCase; | ||
use Upstash\Vector\DataQuery; | ||
use Upstash\Vector\DataUpsert; | ||
use Upstash\Vector\Tests\Concerns\UsesSparseIndex; | ||
use Upstash\Vector\Tests\Concerns\WaitsForIndex; | ||
|
||
class QueryDataTest extends TestCase | ||
{ | ||
use UsesSparseIndex; | ||
use WaitsForIndex; | ||
|
||
public function test_query_data(): void | ||
{ | ||
$this->namespace->upsertDataMany([ | ||
new DataUpsert( | ||
id: '1', | ||
data: 'The capital of Japan is Tokyo', | ||
), | ||
new DataUpsert( | ||
id: '2', | ||
data: 'The capital of France is Paris', | ||
), | ||
new DataUpsert( | ||
id: '3', | ||
data: 'The capital of Germany is Berlin', | ||
), | ||
]); | ||
|
||
$this->waitForIndex($this->namespace); | ||
|
||
$results = $this->namespace->queryData(new DataQuery( | ||
data: 'capital of France', | ||
topK: 1, | ||
)); | ||
|
||
$this->assertCount(1, $results); | ||
$this->assertEquals('2', $results[0]->id); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
<?php | ||
|
||
namespace Upstash\Vector\Tests\Sparse\Operations; | ||
|
||
use PHPUnit\Framework\TestCase; | ||
use Upstash\Vector\SparseVector; | ||
use Upstash\Vector\Tests\Concerns\UsesSparseIndex; | ||
use Upstash\Vector\Tests\Concerns\WaitsForIndex; | ||
use Upstash\Vector\VectorQuery; | ||
use Upstash\Vector\VectorUpsert; | ||
|
||
class QueryVectorsTest extends TestCase | ||
{ | ||
use UsesSparseIndex; | ||
use WaitsForIndex; | ||
|
||
public function test_query_vectors(): void | ||
{ | ||
$this->namespace->upsertMany([ | ||
new VectorUpsert( | ||
id: '1', | ||
sparseVector: new SparseVector( | ||
indices: [1, 2, 3], | ||
values: [5, 6, 7], | ||
), | ||
data: 'Test Data', | ||
), | ||
]); | ||
|
||
$this->waitForIndex($this->namespace); | ||
|
||
$results = $this->namespace->query(new VectorQuery( | ||
sparseVector: new SparseVector( | ||
indices: [1, 2, 3], | ||
values: [5, 6, 7], | ||
), | ||
topK: 1, | ||
)); | ||
|
||
$this->assertCount(1, $results); | ||
$this->assertEquals('1', $results[0]->id); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
<?php | ||
|
||
namespace Upstash\Vector\Tests\Sparse\Operations; | ||
|
||
use PHPUnit\Framework\TestCase; | ||
use Upstash\Vector\DataUpsert; | ||
use Upstash\Vector\Tests\Concerns\UsesSparseIndex; | ||
use Upstash\Vector\Tests\Concerns\WaitsForIndex; | ||
|
||
class UpsertDataTest extends TestCase | ||
{ | ||
use UsesSparseIndex; | ||
use WaitsForIndex; | ||
|
||
public function test_upsert_data(): void | ||
{ | ||
$this->namespace->upsertData(new DataUpsert('1', 'The capital of Japan is Tokyo')); | ||
|
||
$this->waitForIndex($this->namespace); | ||
|
||
$info = $this->namespace->getNamespaceInfo(); | ||
|
||
$this->assertSame(1, $info->vectorCount); | ||
} | ||
|
||
public function test_upsert_many_data(): void | ||
{ | ||
$this->namespace->upsertDataMany([ | ||
new DataUpsert('1', 'The capital of Japan is Tokyo'), | ||
new DataUpsert('2', 'The capital of France is Paris'), | ||
new DataUpsert('3', 'The capital of Germany is Berlin'), | ||
]); | ||
|
||
$this->waitForIndex($this->namespace); | ||
|
||
$info = $this->namespace->getNamespaceInfo(); | ||
|
||
$this->assertSame(3, $info->vectorCount); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
<?php | ||
|
||
namespace Upstash\Vector\Tests\Sparse\Operations; | ||
|
||
use PHPUnit\Framework\TestCase; | ||
use Upstash\Vector\SparseVector; | ||
use Upstash\Vector\Tests\Concerns\UsesSparseIndex; | ||
use Upstash\Vector\Tests\Concerns\WaitsForIndex; | ||
use Upstash\Vector\VectorUpsert; | ||
|
||
class UpsertVectorTest extends TestCase | ||
{ | ||
use UsesSparseIndex; | ||
use WaitsForIndex; | ||
|
||
public function test_upsert_vector(): void | ||
{ | ||
$this->namespace->upsert(new VectorUpsert( | ||
id: '1', | ||
sparseVector: new SparseVector( | ||
indices: [0, 1], | ||
values: [1, 2], | ||
), | ||
)); | ||
$this->waitForIndex($this->namespace); | ||
|
||
$info = $this->namespace->getNamespaceInfo(); | ||
|
||
$this->assertSame(1, $info->vectorCount); | ||
} | ||
|
||
public function test_upsert_many_vectors(): void | ||
{ | ||
$this->namespace->upsertMany([ | ||
new VectorUpsert(id: '1', sparseVector: new SparseVector( | ||
indices: [0, 1], | ||
values: [1, 2], | ||
)), | ||
new VectorUpsert(id: '2', sparseVector: new SparseVector( | ||
indices: [2, 3], | ||
values: [4, 5], | ||
)), | ||
]); | ||
|
||
$this->waitForIndex($this->namespace); | ||
|
||
$info = $this->namespace->getNamespaceInfo(); | ||
|
||
$this->assertSame(2, $info->vectorCount); | ||
} | ||
} |