Feature: Added code and modules to create doc string for any python code. It will read text from an existing python file and output it to a new file with a suffix for the llm model that created it.

This commit is contained in:
Nicholas Arquette
2025-01-28 13:54:58 -06:00
parent 8cb97665af
commit b582e41ecf
4 changed files with 280 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
# Script Overview
The documentation will show you how to run the python script generate_doc_string.py. It is designed to take input
from an existing python file and create a new one with a suffix ('claude' or 'gpt'). If you do not specify and llm
model, it will default to claude.
# How to run
```powershell
conda activate llms
cd <script_location>
python generate_doc_string -fp <full_file_path> -llm <name_of_model>
```
# Show Help Instructions
```shell
python generate_doc_string --help
```
# Error Checking
1) File Path Existence
If the file path doesn't exist, the script will stop running and print out an error.
2) LLM Model Choice
If you choose something other than 'gpt' or 'claude', it will show and assertion error.