From the uDemy course on LLM engineering.
https://www.udemy.com/course/llm-engineering-master-ai-and-large-language-models
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
3 months ago | |
---|---|---|
.. | ||
data | 3 months ago | |
README.md | 3 months ago | |
generate_doc_string.py | 3 months ago | |
utils.py | 3 months ago |
README.md
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
conda activate llms
cd <script_location>
python generate_doc_string -fp <full_file_path> -llm <name_of_model>
Show Help Instructions
python generate_doc_string --help
Error Checking
- File Path Existence
If the file path doesn't exist, the script will stop running and print out an error.
- LLM Model Choice
If you choose something other than 'gpt' or 'claude', it will show and assertion error.