Skip to content

Commit

Permalink
initial setup
Browse files Browse the repository at this point in the history
  • Loading branch information
kstathou committed Dec 2, 2023
1 parent 6c9b4fe commit 41773be
Showing 1 changed file with 0 additions and 19 deletions.
19 changes: 0 additions & 19 deletions src/llm_stack/dummy.py
Original file line number Diff line number Diff line change
@@ -1,19 +0,0 @@
import pandas as pd


class Move:
"""Process data.
Yes a long one.
"""

def __init__(self, data: str) -> None:
"""Do something nice."""
self.data = pd.read_csv(data)

self.columns = list(data.columns)
self.index = list(data.index)

def __getitem__(self, item: str) -> str:
"""Do something nice squared."""
return self.data[item]

0 comments on commit 41773be

Please sign in to comment.