├── .coveragerc ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── docs └── example_notebooks │ └── example.ipynb ├── poetry.lock ├── pyproject.toml ├── tests ├── __init__.py ├── data │ └── product_df.json ├── integration_tests │ ├── __init__.py │ └── test_llm_accessor.py └── unit_tests │ ├── __init__.py │ └── test_llm_accessor.py └── yolopandas ├── __init__.py ├── chains.py ├── llm_accessor.py └── utils ├── __init__.py └── query_helpers.py /.coveragerc: -------------------------------------------------------------------------------- 1 | [run] 2 | omit = tests/* 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccurme/yolopandas/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccurme/yolopandas/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccurme/yolopandas/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccurme/yolopandas/HEAD/README.md -------------------------------------------------------------------------------- /docs/example_notebooks/example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccurme/yolopandas/HEAD/docs/example_notebooks/example.ipynb -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccurme/yolopandas/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccurme/yolopandas/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccurme/yolopandas/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/data/product_df.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccurme/yolopandas/HEAD/tests/data/product_df.json -------------------------------------------------------------------------------- /tests/integration_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration_tests/test_llm_accessor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccurme/yolopandas/HEAD/tests/integration_tests/test_llm_accessor.py -------------------------------------------------------------------------------- /tests/unit_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit_tests/test_llm_accessor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccurme/yolopandas/HEAD/tests/unit_tests/test_llm_accessor.py -------------------------------------------------------------------------------- /yolopandas/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccurme/yolopandas/HEAD/yolopandas/__init__.py -------------------------------------------------------------------------------- /yolopandas/chains.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccurme/yolopandas/HEAD/yolopandas/chains.py -------------------------------------------------------------------------------- /yolopandas/llm_accessor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccurme/yolopandas/HEAD/yolopandas/llm_accessor.py -------------------------------------------------------------------------------- /yolopandas/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /yolopandas/utils/query_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ccurme/yolopandas/HEAD/yolopandas/utils/query_helpers.py --------------------------------------------------------------------------------