Skip to content

Commit 22887a9

Browse files
committed
support array as tool property type
1 parent d653582 commit 22887a9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/VectorStore/ElasticsearchTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ protected function setUp(): void
2424
$this->client = ClientBuilder::create()->build();
2525

2626
// embedding "Hello World!"
27-
$this->embedding = json_decode(file_get_contents(__DIR__ . '/stubs/hello-world.embeddings'), true);
27+
$this->embedding = json_decode(file_get_contents(__DIR__ . '/../stubs/hello-world.embeddings'), true);
2828
}
2929

3030
private function isPortOpen(string $host, int $port, int $timeout = 1): bool

tests/VectorStore/TypesenseTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ protected function setUp(): void
3737
]);
3838

3939
// embedding "Hello World!"
40-
$this->embedding = json_decode(file_get_contents(__DIR__ . '/stubs/hello-world.embeddings'), true);
40+
$this->embedding = json_decode(file_get_contents(__DIR__ . '/../stubs/hello-world.embeddings'), true);
4141
}
4242

4343
private function isPortOpen(string $host, int $port, int $timeout = 1): bool

0 commit comments

Comments
 (0)