Skip to content

Commit

Permalink
updated VectorStoreFile fixture
Browse files Browse the repository at this point in the history
  • Loading branch information
nathadfield committed Apr 26, 2024
1 parent 4a1cdc0 commit dfa8d5b
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tests/providers/openai/hooks/test_openai.py
Expand Up @@ -242,15 +242,19 @@ def mock_vector_file_store_list():
id="test-file-abc123",
object="vector_store.file",
created_at=1699061776,
usage_bytes=1234,
vector_store_id=VECTOR_STORE_ID,
status="completed",
last_error=None
),
VectorStoreFile(
id="test-file-abc456",
object="vector_store.file",
created_at=1699061776,
usage_bytes=1234,
vector_store_id=VECTOR_STORE_ID,
status="completed",
last_error=None
),
]
)
Expand Down

0 comments on commit dfa8d5b

Please sign in to comment.