Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 0 additions & 19 deletions conftest.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import os
import pytest
import pandas as pd

from redisvl.utils.connection import (
get_async_redis_connection,
Expand All @@ -20,24 +19,6 @@ def async_client():
def client():
return redis

@pytest.fixture
def df():

data = pd.DataFrame(
{
"users": ["john", "mary", "joe"],
"age": [1, 2, 3],
"job": ["engineer", "doctor", "dentist"],
"credit_score": ["high", "low", "medium"],
"user_embedding": [
[0.1, 0.1, 0.5],
[0.1, 0.1, 0.5],
[0.9, 0.9, 0.1],
],
}
)
return data


@pytest.fixture
def openai_key():
Expand Down
2 changes: 1 addition & 1 deletion docs/examples/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ myst:
```{toctree}
:caption: Getting Started

01-getting-started

```
Loading