├── .gitignore ├── 00_Let_Us_Start ├── 01_Chat.py └── 02_Function.py ├── 01_Asst_Function_Call ├── 01_Create_Assitant.py ├── 02_Cart_Price_Final.py ├── 03_Asst_No_Func_Direct_Complete.py └── 04_Asst_Cancel_Run.py ├── 03_Asst_Code_Intepreter ├── 01_PythonCode.ipynb ├── 02_PythonCode.py ├── 03_Code_Intepreter_Analysis.py ├── 04_Code_Intepreter_Read_Files.py ├── flower_sales.csv ├── image_file-ARR9oWz1AdYwLCVeaDNsYfGk.png ├── image_file-DA3uSxFhVE8KqZFrWKY2YWTX.png └── image_file-aUTB6yfVsc7AoI0SNfQteuwq.png ├── 04_File_Search ├── Retrieval.py ├── flower_sales.docx └── flower_sales.txt ├── 05_5_Prompts └── 5_Pormpts.py ├── 06_More_Prompts ├── 01_few_shots.py ├── 02_CoT.py ├── 03_Self_Consistancy.py ├── 04_Self_Debate.py └── 05_Auto_Prompt_Engineering.py ├── 07_Unit_Test └── LLM_Unit_Test.py ├── 08_Gen_SQL ├── Claude_SQL_Complex.py ├── Claude_SQL_IUD.py ├── Claude_SQL_Simple.py └── del_tables.py ├── 09_PDF_RAG ├── GPT图解.pdf └── Parse_PDF_for_RAG.py ├── 10_Book_Recommendation ├── tag_find_similar_book.py ├── 图书.csv ├── 图书_带关键字.csv └── 图书_词嵌入.csv ├── 11_LongPDF_Summary ├── 01_T5_Summary.py ├── 02_Claude_Summary.py ├── 03_Rouge_Evaluation copy.py ├── 04_BertScore_Evaluation copy.py ├── 05_Claude_Evaluation.py ├── 2401.02385-TinyLlama.pdf ├── claude_summary.txt ├── ref_summary.txt └── t5_summary.txt ├── 12_PPT_Assistants ├── CreatPPT.ipynb ├── Spotify_Songs.csv ├── 音乐趋势图.png └── 鸟语乐境.pptx ├── 13_FinetuneQwenPEFT ├── 01_finetune_qwen_Infernce.py ├── 02_finetune_qwen_1b_lora_ok.py └── data │ ├── chinese_med.json │ └── cpmi.json ├── 14_FinetuneLlama3QLora ├── 01_finetune_llama_Infernce.py └── 02_finetune_llama_7b_qlora.py ├── 15_FinetuneGPT ├── 01_GenerateData.py ├── 02_UploadData.py ├── 03_FinetuneGPT3.5.py ├── 04_CheckJobStatus.py └── 05_UseFinetunedGPT.py ├── 16_Text2Pic ├── generated_237305510.jpeg └── illustrated_responses.ipynb ├── 17_GPT-4o ├── AI_speech.mp3 ├── Good_Driver.mp3 ├── Good_Driver.mp4 └── video_summary.ipynb ├── 18_TTS_ASR_OCR ├── AI_speech.mp3 ├── pdf_ocr.py ├── tts.py └── video_audio(ASR).ipynb ├── 19_Sora ├── generated_video.mp4 ├── humansmall.jpeg ├── lighthouse.jpeg └── video_gen.ipynb ├── README.md ├── asset └── info.png ├── requirements.txt ├── requirements_finetune.txt └── requirements_gpt4o.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/powerful_llm/HEAD/.gitignore -------------------------------------------------------------------------------- /00_Let_Us_Start/01_Chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/powerful_llm/HEAD/00_Let_Us_Start/01_Chat.py -------------------------------------------------------------------------------- /00_Let_Us_Start/02_Function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/powerful_llm/HEAD/00_Let_Us_Start/02_Function.py -------------------------------------------------------------------------------- /01_Asst_Function_Call/01_Create_Assitant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/powerful_llm/HEAD/01_Asst_Function_Call/01_Create_Assitant.py -------------------------------------------------------------------------------- /01_Asst_Function_Call/02_Cart_Price_Final.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/powerful_llm/HEAD/01_Asst_Function_Call/02_Cart_Price_Final.py -------------------------------------------------------------------------------- /01_Asst_Function_Call/03_Asst_No_Func_Direct_Complete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/powerful_llm/HEAD/01_Asst_Function_Call/03_Asst_No_Func_Direct_Complete.py -------------------------------------------------------------------------------- /01_Asst_Function_Call/04_Asst_Cancel_Run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/powerful_llm/HEAD/01_Asst_Function_Call/04_Asst_Cancel_Run.py -------------------------------------------------------------------------------- /03_Asst_Code_Intepreter/01_PythonCode.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/powerful_llm/HEAD/03_Asst_Code_Intepreter/01_PythonCode.ipynb -------------------------------------------------------------------------------- /03_Asst_Code_Intepreter/02_PythonCode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/powerful_llm/HEAD/03_Asst_Code_Intepreter/02_PythonCode.py -------------------------------------------------------------------------------- /03_Asst_Code_Intepreter/03_Code_Intepreter_Analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/powerful_llm/HEAD/03_Asst_Code_Intepreter/03_Code_Intepreter_Analysis.py -------------------------------------------------------------------------------- /03_Asst_Code_Intepreter/04_Code_Intepreter_Read_Files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/powerful_llm/HEAD/03_Asst_Code_Intepreter/04_Code_Intepreter_Read_Files.py -------------------------------------------------------------------------------- /03_Asst_Code_Intepreter/flower_sales.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/powerful_llm/HEAD/03_Asst_Code_Intepreter/flower_sales.csv -------------------------------------------------------------------------------- /03_Asst_Code_Intepreter/image_file-ARR9oWz1AdYwLCVeaDNsYfGk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/powerful_llm/HEAD/03_Asst_Code_Intepreter/image_file-ARR9oWz1AdYwLCVeaDNsYfGk.png -------------------------------------------------------------------------------- /03_Asst_Code_Intepreter/image_file-DA3uSxFhVE8KqZFrWKY2YWTX.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/powerful_llm/HEAD/03_Asst_Code_Intepreter/image_file-DA3uSxFhVE8KqZFrWKY2YWTX.png -------------------------------------------------------------------------------- /03_Asst_Code_Intepreter/image_file-aUTB6yfVsc7AoI0SNfQteuwq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/powerful_llm/HEAD/03_Asst_Code_Intepreter/image_file-aUTB6yfVsc7AoI0SNfQteuwq.png -------------------------------------------------------------------------------- /04_File_Search/Retrieval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/powerful_llm/HEAD/04_File_Search/Retrieval.py -------------------------------------------------------------------------------- /04_File_Search/flower_sales.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/powerful_llm/HEAD/04_File_Search/flower_sales.docx -------------------------------------------------------------------------------- /04_File_Search/flower_sales.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/powerful_llm/HEAD/04_File_Search/flower_sales.txt -------------------------------------------------------------------------------- /05_5_Prompts/5_Pormpts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/powerful_llm/HEAD/05_5_Prompts/5_Pormpts.py -------------------------------------------------------------------------------- /06_More_Prompts/01_few_shots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/powerful_llm/HEAD/06_More_Prompts/01_few_shots.py -------------------------------------------------------------------------------- /06_More_Prompts/02_CoT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/powerful_llm/HEAD/06_More_Prompts/02_CoT.py -------------------------------------------------------------------------------- /06_More_Prompts/03_Self_Consistancy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/powerful_llm/HEAD/06_More_Prompts/03_Self_Consistancy.py -------------------------------------------------------------------------------- /06_More_Prompts/04_Self_Debate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/powerful_llm/HEAD/06_More_Prompts/04_Self_Debate.py -------------------------------------------------------------------------------- /06_More_Prompts/05_Auto_Prompt_Engineering.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/powerful_llm/HEAD/06_More_Prompts/05_Auto_Prompt_Engineering.py -------------------------------------------------------------------------------- /07_Unit_Test/LLM_Unit_Test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/powerful_llm/HEAD/07_Unit_Test/LLM_Unit_Test.py -------------------------------------------------------------------------------- /08_Gen_SQL/Claude_SQL_Complex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/powerful_llm/HEAD/08_Gen_SQL/Claude_SQL_Complex.py -------------------------------------------------------------------------------- /08_Gen_SQL/Claude_SQL_IUD.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/powerful_llm/HEAD/08_Gen_SQL/Claude_SQL_IUD.py -------------------------------------------------------------------------------- /08_Gen_SQL/Claude_SQL_Simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/powerful_llm/HEAD/08_Gen_SQL/Claude_SQL_Simple.py -------------------------------------------------------------------------------- /08_Gen_SQL/del_tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/powerful_llm/HEAD/08_Gen_SQL/del_tables.py -------------------------------------------------------------------------------- /09_PDF_RAG/GPT图解.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/powerful_llm/HEAD/09_PDF_RAG/GPT图解.pdf -------------------------------------------------------------------------------- /09_PDF_RAG/Parse_PDF_for_RAG.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/powerful_llm/HEAD/09_PDF_RAG/Parse_PDF_for_RAG.py -------------------------------------------------------------------------------- /10_Book_Recommendation/tag_find_similar_book.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/powerful_llm/HEAD/10_Book_Recommendation/tag_find_similar_book.py -------------------------------------------------------------------------------- /10_Book_Recommendation/图书.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/powerful_llm/HEAD/10_Book_Recommendation/图书.csv -------------------------------------------------------------------------------- /10_Book_Recommendation/图书_带关键字.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/powerful_llm/HEAD/10_Book_Recommendation/图书_带关键字.csv -------------------------------------------------------------------------------- /10_Book_Recommendation/图书_词嵌入.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/powerful_llm/HEAD/10_Book_Recommendation/图书_词嵌入.csv -------------------------------------------------------------------------------- /11_LongPDF_Summary/01_T5_Summary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/powerful_llm/HEAD/11_LongPDF_Summary/01_T5_Summary.py -------------------------------------------------------------------------------- /11_LongPDF_Summary/02_Claude_Summary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/powerful_llm/HEAD/11_LongPDF_Summary/02_Claude_Summary.py -------------------------------------------------------------------------------- /11_LongPDF_Summary/03_Rouge_Evaluation copy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/powerful_llm/HEAD/11_LongPDF_Summary/03_Rouge_Evaluation copy.py -------------------------------------------------------------------------------- /11_LongPDF_Summary/04_BertScore_Evaluation copy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/powerful_llm/HEAD/11_LongPDF_Summary/04_BertScore_Evaluation copy.py -------------------------------------------------------------------------------- /11_LongPDF_Summary/05_Claude_Evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/powerful_llm/HEAD/11_LongPDF_Summary/05_Claude_Evaluation.py -------------------------------------------------------------------------------- /11_LongPDF_Summary/2401.02385-TinyLlama.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/powerful_llm/HEAD/11_LongPDF_Summary/2401.02385-TinyLlama.pdf -------------------------------------------------------------------------------- /11_LongPDF_Summary/claude_summary.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/powerful_llm/HEAD/11_LongPDF_Summary/claude_summary.txt -------------------------------------------------------------------------------- /11_LongPDF_Summary/ref_summary.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/powerful_llm/HEAD/11_LongPDF_Summary/ref_summary.txt -------------------------------------------------------------------------------- /11_LongPDF_Summary/t5_summary.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/powerful_llm/HEAD/11_LongPDF_Summary/t5_summary.txt -------------------------------------------------------------------------------- /12_PPT_Assistants/CreatPPT.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/powerful_llm/HEAD/12_PPT_Assistants/CreatPPT.ipynb -------------------------------------------------------------------------------- /12_PPT_Assistants/Spotify_Songs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/powerful_llm/HEAD/12_PPT_Assistants/Spotify_Songs.csv -------------------------------------------------------------------------------- /12_PPT_Assistants/音乐趋势图.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/powerful_llm/HEAD/12_PPT_Assistants/音乐趋势图.png -------------------------------------------------------------------------------- /12_PPT_Assistants/鸟语乐境.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/powerful_llm/HEAD/12_PPT_Assistants/鸟语乐境.pptx -------------------------------------------------------------------------------- /13_FinetuneQwenPEFT/01_finetune_qwen_Infernce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/powerful_llm/HEAD/13_FinetuneQwenPEFT/01_finetune_qwen_Infernce.py -------------------------------------------------------------------------------- /13_FinetuneQwenPEFT/02_finetune_qwen_1b_lora_ok.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/powerful_llm/HEAD/13_FinetuneQwenPEFT/02_finetune_qwen_1b_lora_ok.py -------------------------------------------------------------------------------- /13_FinetuneQwenPEFT/data/chinese_med.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/powerful_llm/HEAD/13_FinetuneQwenPEFT/data/chinese_med.json -------------------------------------------------------------------------------- /13_FinetuneQwenPEFT/data/cpmi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/powerful_llm/HEAD/13_FinetuneQwenPEFT/data/cpmi.json -------------------------------------------------------------------------------- /14_FinetuneLlama3QLora/01_finetune_llama_Infernce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/powerful_llm/HEAD/14_FinetuneLlama3QLora/01_finetune_llama_Infernce.py -------------------------------------------------------------------------------- /14_FinetuneLlama3QLora/02_finetune_llama_7b_qlora.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/powerful_llm/HEAD/14_FinetuneLlama3QLora/02_finetune_llama_7b_qlora.py -------------------------------------------------------------------------------- /15_FinetuneGPT/01_GenerateData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/powerful_llm/HEAD/15_FinetuneGPT/01_GenerateData.py -------------------------------------------------------------------------------- /15_FinetuneGPT/02_UploadData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/powerful_llm/HEAD/15_FinetuneGPT/02_UploadData.py -------------------------------------------------------------------------------- /15_FinetuneGPT/03_FinetuneGPT3.5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/powerful_llm/HEAD/15_FinetuneGPT/03_FinetuneGPT3.5.py -------------------------------------------------------------------------------- /15_FinetuneGPT/04_CheckJobStatus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/powerful_llm/HEAD/15_FinetuneGPT/04_CheckJobStatus.py -------------------------------------------------------------------------------- /15_FinetuneGPT/05_UseFinetunedGPT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/powerful_llm/HEAD/15_FinetuneGPT/05_UseFinetunedGPT.py -------------------------------------------------------------------------------- /16_Text2Pic/generated_237305510.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/powerful_llm/HEAD/16_Text2Pic/generated_237305510.jpeg -------------------------------------------------------------------------------- /16_Text2Pic/illustrated_responses.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/powerful_llm/HEAD/16_Text2Pic/illustrated_responses.ipynb -------------------------------------------------------------------------------- /17_GPT-4o/AI_speech.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/powerful_llm/HEAD/17_GPT-4o/AI_speech.mp3 -------------------------------------------------------------------------------- /17_GPT-4o/Good_Driver.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/powerful_llm/HEAD/17_GPT-4o/Good_Driver.mp3 -------------------------------------------------------------------------------- /17_GPT-4o/Good_Driver.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/powerful_llm/HEAD/17_GPT-4o/Good_Driver.mp4 -------------------------------------------------------------------------------- /17_GPT-4o/video_summary.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/powerful_llm/HEAD/17_GPT-4o/video_summary.ipynb -------------------------------------------------------------------------------- /18_TTS_ASR_OCR/AI_speech.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/powerful_llm/HEAD/18_TTS_ASR_OCR/AI_speech.mp3 -------------------------------------------------------------------------------- /18_TTS_ASR_OCR/pdf_ocr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/powerful_llm/HEAD/18_TTS_ASR_OCR/pdf_ocr.py -------------------------------------------------------------------------------- /18_TTS_ASR_OCR/tts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/powerful_llm/HEAD/18_TTS_ASR_OCR/tts.py -------------------------------------------------------------------------------- /18_TTS_ASR_OCR/video_audio(ASR).ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/powerful_llm/HEAD/18_TTS_ASR_OCR/video_audio(ASR).ipynb -------------------------------------------------------------------------------- /19_Sora/generated_video.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/powerful_llm/HEAD/19_Sora/generated_video.mp4 -------------------------------------------------------------------------------- /19_Sora/humansmall.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/powerful_llm/HEAD/19_Sora/humansmall.jpeg -------------------------------------------------------------------------------- /19_Sora/lighthouse.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/powerful_llm/HEAD/19_Sora/lighthouse.jpeg -------------------------------------------------------------------------------- /19_Sora/video_gen.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/powerful_llm/HEAD/19_Sora/video_gen.ipynb -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/powerful_llm/HEAD/README.md -------------------------------------------------------------------------------- /asset/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/powerful_llm/HEAD/asset/info.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/powerful_llm/HEAD/requirements.txt -------------------------------------------------------------------------------- /requirements_finetune.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/powerful_llm/HEAD/requirements_finetune.txt -------------------------------------------------------------------------------- /requirements_gpt4o.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangjia2019/powerful_llm/HEAD/requirements_gpt4o.txt --------------------------------------------------------------------------------