This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # fileprint.py | |
| # Prints directory content for inputting into an LLM | |
| # python fileprint.py -d src/ -o myCode.md | |
| import os | |
| import sys | |
| import argparse | |
| # Hard-coded folders to exclude | |
| EXCLUDED_FOLDERS = ['.venv', '__pycache__', 'cache', '.git', '.pytest_cache', 'analysis'] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Triangulates the semantle word of the day. Put in your existing guesses, their similarities, and go! | |
| # Play semantle @ https://semantle.novalis.org/ | |
| # David Haas ~ 04/08/22 | |
| import gensim.downloader as api | |
| import numpy as np | |
| import os | |
| def load_model(): |