Austin
                                            Austin
                                        
                                    @bee-san @PromtEngineer @LeafmanZ ```py def load_documents(source_dir: str) -> list[Document]: """ Loads all documents from the specified source documents directory. Args: source_dir (str): The path to the source documents directory. Returns:...
You can check out my dev branch where I'm experimenting with the full source. https://github.com/teleprint-me/localGPT/tree/dev/localGPT I'm doing my best to clean it up and streamline it. We'll also need to...
The following are the languages support by `langchain` for document splitting: ```py # langchain/text_splitter.py class Language(str, Enum): CPP = "cpp" GO = "go" JAVA = "java" JS = "js" PHP...
So, I got ingest fully refactored and operational. It functions as expected and now allows users to have more control and granularity via the command line options. I'm working on...
@PromtEngineer, I've reviewed issue #173 and appreciate the direction it's heading in. I've been developing some related ideas on the dev branch as well. I'd recommend you dive a bit...
Ingest script is complete and operational. `__init__.py` supercedes `constants.py` now. I'm going to finish up implementation of the `run.py` script and test it today. Then I'm going to look into...
@PromtEngineer @LeafmanZ Thank you for the constructive feedback and the openness to consider my contributions to the project. I've read your thoughts on the CLI options. I truly believe in...
I'm currently working out some issues I'm running into with AutoGPTQ. Unfortunately, I haven't been able to get the `run.py` script to execute. Maybe you guys could take a look....
Yeah, I got ahead of myself because I was preparing to include llama.cpp. I still needed to iron out the ModelLoader class and the constants as you found out. There's...
@ggerganov I'd like to share some thoughts on the templating discussion for `llama.cpp`. In my view, adding extensive templating support that shifts responsibility away from users could lead to significant...