Austin

Results 8 issues of Austin

This pull request addresses Issue #72 and includes the following changes: 1. Refactor document loading in `ingest.py` to utilize the `DOCUMENT_MAP` dictionary from `constants.py`. This improves modularity and allows for...

This isn't ideal: ```py @click.command() @click.option('--device_type', default='cuda', help='device to run on, select gpu, cpu or mps') def main(device_type, ): # load the instructorEmbeddings if device_type in ['cpu', 'CPU']: device='cpu' elif...

Summary: 1. **Refactoring and Code Organization**: The codebase has been extensively refactored for better organization and readability. This includes abstracting model loading into a separate ModelLoader class, using package constants...

@PromtEngineer @LeafmanZ We need to establish detailed guides for setting up the prerequisites and building the project. I've previously developed a similar setup with my bootstrap repository, but we need...

# Issue: Handling ingestion file types The issue is handling the variety of file types. e.g. ```py DOCUMENT_MAP = { ".txt": TextLoader, ".py": TextLoader, ".pdf": PDFMinerLoader, ".csv": CSVLoader, ".xls": UnstructuredExcelLoader,...

**Title:** Add verbose parameter for llamacpp **Description:** This pull request adds a 'verbose' parameter to the llamacpp module. The 'verbose' parameter, when set to True, will enable the output of...

auto:improvement

# Prerequisites Please answer the following questions for yourself before submitting an issue. - [x] I am running the latest code. Development is very rapid so there are no tagged...

enhancement

Sometimes I need to inspect the models chat templates and I created a script awhile back to do this. This is a updated and modified version of the same script....

Review Complexity : Low
python