Skip to content

Commit 71b0bb8

Browse files
author
Sam Partee
authored
Remove pandas and readers concept (#20)
Remove the reader concept in favor of other libraries that will supply more capability. Focus moved to the query. also change ``redisvl`` to ``rvl`` as the command line tool
1 parent 8cda41d commit 71b0bb8

26 files changed

+192
-1211
lines changed

conftest.py

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import os
22
import pytest
3-
import pandas as pd
43

54
from redisvl.utils.connection import (
65
get_async_redis_connection,
@@ -20,24 +19,6 @@ def async_client():
2019
def client():
2120
return redis
2221

23-
@pytest.fixture
24-
def df():
25-
26-
data = pd.DataFrame(
27-
{
28-
"users": ["john", "mary", "joe"],
29-
"age": [1, 2, 3],
30-
"job": ["engineer", "doctor", "dentist"],
31-
"credit_score": ["high", "low", "medium"],
32-
"user_embedding": [
33-
[0.1, 0.1, 0.5],
34-
[0.1, 0.1, 0.5],
35-
[0.9, 0.9, 0.1],
36-
],
37-
}
38-
)
39-
return data
40-
4122

4223
@pytest.fixture
4324
def openai_key():

docs/examples/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@ myst:
1111
```{toctree}
1212
:caption: Getting Started
1313
14-
01-getting-started
14+
1515
```

0 commit comments

Comments
 (0)