├── .github └── ISSUE_TEMPLATE │ └── 사전과제-템플릿.md ├── README.md ├── w1-1 └── [240706] w1-1 프롬프트 엔지니어의 업무 및 노하우.pdf ├── w1-2 ├── [240707] w1-2 프롬프트 엔지니어링 실습 - 작업 생산성 높이기.pdf └── practice │ ├── .gitignore │ ├── environment.yml │ ├── p1_doc_keyword_summarization │ ├── document.jsonl │ ├── p1.ipynb │ ├── response.jsonl │ └── response_json.jsonl │ ├── p2_persona_chatbot │ ├── app.py │ ├── prompts │ │ └── buddha.prompt │ └── utils.py │ └── p3_bestseller_prediction │ ├── book_info.csv │ └── p3.ipynb ├── w2-1 ├── [240713] w2-1 프롬프트 엔지니어링 심화 실습 - LLM Agent 만들기.pdf └── practice │ ├── .gitignore │ ├── environment.yml │ ├── p1_openai_assistants_api │ ├── data │ │ ├── NVIDIA 10-K.pdf │ │ ├── NVIDIA 10-Q.pdf │ │ ├── energy.csv │ │ └── housing_prices.csv │ └── p1.ipynb │ ├── p2_langchain_tools │ └── p2.ipynb │ ├── p3_langchain_agent │ ├── app.py │ ├── data │ │ ├── NVIDIA 10-K.pdf │ │ ├── NVIDIA 10-Q.pdf │ │ └── NVIDIA-2024-Annual-Report.pdf │ ├── env_sample.txt │ ├── prompts │ │ ├── system1.prompt │ │ └── system2.prompt │ └── utils.py │ └── requirements.txt └── w2-2 ├── [240714] w2-2 프롬프트 버전 관리와 테스트 방법.pdf └── practice ├── .gitignore └── p1_langsmith_prompt └── p1.ipynb /.github/ISSUE_TEMPLATE/사전과제-템플릿.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lim-hyo-jeong/Wanted-Pre-Onboarding-AI-2407/HEAD/.github/ISSUE_TEMPLATE/사전과제-템플릿.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lim-hyo-jeong/Wanted-Pre-Onboarding-AI-2407/HEAD/README.md -------------------------------------------------------------------------------- /w1-1/[240706] w1-1 프롬프트 엔지니어의 업무 및 노하우.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lim-hyo-jeong/Wanted-Pre-Onboarding-AI-2407/HEAD/w1-1/[240706] w1-1 프롬프트 엔지니어의 업무 및 노하우.pdf -------------------------------------------------------------------------------- /w1-2/[240707] w1-2 프롬프트 엔지니어링 실습 - 작업 생산성 높이기.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lim-hyo-jeong/Wanted-Pre-Onboarding-AI-2407/HEAD/w1-2/[240707] w1-2 프롬프트 엔지니어링 실습 - 작업 생산성 높이기.pdf -------------------------------------------------------------------------------- /w1-2/practice/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lim-hyo-jeong/Wanted-Pre-Onboarding-AI-2407/HEAD/w1-2/practice/.gitignore -------------------------------------------------------------------------------- /w1-2/practice/environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lim-hyo-jeong/Wanted-Pre-Onboarding-AI-2407/HEAD/w1-2/practice/environment.yml -------------------------------------------------------------------------------- /w1-2/practice/p1_doc_keyword_summarization/document.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lim-hyo-jeong/Wanted-Pre-Onboarding-AI-2407/HEAD/w1-2/practice/p1_doc_keyword_summarization/document.jsonl -------------------------------------------------------------------------------- /w1-2/practice/p1_doc_keyword_summarization/p1.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lim-hyo-jeong/Wanted-Pre-Onboarding-AI-2407/HEAD/w1-2/practice/p1_doc_keyword_summarization/p1.ipynb -------------------------------------------------------------------------------- /w1-2/practice/p1_doc_keyword_summarization/response.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lim-hyo-jeong/Wanted-Pre-Onboarding-AI-2407/HEAD/w1-2/practice/p1_doc_keyword_summarization/response.jsonl -------------------------------------------------------------------------------- /w1-2/practice/p1_doc_keyword_summarization/response_json.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lim-hyo-jeong/Wanted-Pre-Onboarding-AI-2407/HEAD/w1-2/practice/p1_doc_keyword_summarization/response_json.jsonl -------------------------------------------------------------------------------- /w1-2/practice/p2_persona_chatbot/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lim-hyo-jeong/Wanted-Pre-Onboarding-AI-2407/HEAD/w1-2/practice/p2_persona_chatbot/app.py -------------------------------------------------------------------------------- /w1-2/practice/p2_persona_chatbot/prompts/buddha.prompt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lim-hyo-jeong/Wanted-Pre-Onboarding-AI-2407/HEAD/w1-2/practice/p2_persona_chatbot/prompts/buddha.prompt -------------------------------------------------------------------------------- /w1-2/practice/p2_persona_chatbot/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lim-hyo-jeong/Wanted-Pre-Onboarding-AI-2407/HEAD/w1-2/practice/p2_persona_chatbot/utils.py -------------------------------------------------------------------------------- /w1-2/practice/p3_bestseller_prediction/book_info.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lim-hyo-jeong/Wanted-Pre-Onboarding-AI-2407/HEAD/w1-2/practice/p3_bestseller_prediction/book_info.csv -------------------------------------------------------------------------------- /w1-2/practice/p3_bestseller_prediction/p3.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lim-hyo-jeong/Wanted-Pre-Onboarding-AI-2407/HEAD/w1-2/practice/p3_bestseller_prediction/p3.ipynb -------------------------------------------------------------------------------- /w2-1/[240713] w2-1 프롬프트 엔지니어링 심화 실습 - LLM Agent 만들기.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lim-hyo-jeong/Wanted-Pre-Onboarding-AI-2407/HEAD/w2-1/[240713] w2-1 프롬프트 엔지니어링 심화 실습 - LLM Agent 만들기.pdf -------------------------------------------------------------------------------- /w2-1/practice/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lim-hyo-jeong/Wanted-Pre-Onboarding-AI-2407/HEAD/w2-1/practice/.gitignore -------------------------------------------------------------------------------- /w2-1/practice/environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lim-hyo-jeong/Wanted-Pre-Onboarding-AI-2407/HEAD/w2-1/practice/environment.yml -------------------------------------------------------------------------------- /w2-1/practice/p1_openai_assistants_api/data/NVIDIA 10-K.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lim-hyo-jeong/Wanted-Pre-Onboarding-AI-2407/HEAD/w2-1/practice/p1_openai_assistants_api/data/NVIDIA 10-K.pdf -------------------------------------------------------------------------------- /w2-1/practice/p1_openai_assistants_api/data/NVIDIA 10-Q.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lim-hyo-jeong/Wanted-Pre-Onboarding-AI-2407/HEAD/w2-1/practice/p1_openai_assistants_api/data/NVIDIA 10-Q.pdf -------------------------------------------------------------------------------- /w2-1/practice/p1_openai_assistants_api/data/energy.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lim-hyo-jeong/Wanted-Pre-Onboarding-AI-2407/HEAD/w2-1/practice/p1_openai_assistants_api/data/energy.csv -------------------------------------------------------------------------------- /w2-1/practice/p1_openai_assistants_api/data/housing_prices.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lim-hyo-jeong/Wanted-Pre-Onboarding-AI-2407/HEAD/w2-1/practice/p1_openai_assistants_api/data/housing_prices.csv -------------------------------------------------------------------------------- /w2-1/practice/p1_openai_assistants_api/p1.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lim-hyo-jeong/Wanted-Pre-Onboarding-AI-2407/HEAD/w2-1/practice/p1_openai_assistants_api/p1.ipynb -------------------------------------------------------------------------------- /w2-1/practice/p2_langchain_tools/p2.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lim-hyo-jeong/Wanted-Pre-Onboarding-AI-2407/HEAD/w2-1/practice/p2_langchain_tools/p2.ipynb -------------------------------------------------------------------------------- /w2-1/practice/p3_langchain_agent/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lim-hyo-jeong/Wanted-Pre-Onboarding-AI-2407/HEAD/w2-1/practice/p3_langchain_agent/app.py -------------------------------------------------------------------------------- /w2-1/practice/p3_langchain_agent/data/NVIDIA 10-K.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lim-hyo-jeong/Wanted-Pre-Onboarding-AI-2407/HEAD/w2-1/practice/p3_langchain_agent/data/NVIDIA 10-K.pdf -------------------------------------------------------------------------------- /w2-1/practice/p3_langchain_agent/data/NVIDIA 10-Q.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lim-hyo-jeong/Wanted-Pre-Onboarding-AI-2407/HEAD/w2-1/practice/p3_langchain_agent/data/NVIDIA 10-Q.pdf -------------------------------------------------------------------------------- /w2-1/practice/p3_langchain_agent/data/NVIDIA-2024-Annual-Report.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lim-hyo-jeong/Wanted-Pre-Onboarding-AI-2407/HEAD/w2-1/practice/p3_langchain_agent/data/NVIDIA-2024-Annual-Report.pdf -------------------------------------------------------------------------------- /w2-1/practice/p3_langchain_agent/env_sample.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lim-hyo-jeong/Wanted-Pre-Onboarding-AI-2407/HEAD/w2-1/practice/p3_langchain_agent/env_sample.txt -------------------------------------------------------------------------------- /w2-1/practice/p3_langchain_agent/prompts/system1.prompt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lim-hyo-jeong/Wanted-Pre-Onboarding-AI-2407/HEAD/w2-1/practice/p3_langchain_agent/prompts/system1.prompt -------------------------------------------------------------------------------- /w2-1/practice/p3_langchain_agent/prompts/system2.prompt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lim-hyo-jeong/Wanted-Pre-Onboarding-AI-2407/HEAD/w2-1/practice/p3_langchain_agent/prompts/system2.prompt -------------------------------------------------------------------------------- /w2-1/practice/p3_langchain_agent/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lim-hyo-jeong/Wanted-Pre-Onboarding-AI-2407/HEAD/w2-1/practice/p3_langchain_agent/utils.py -------------------------------------------------------------------------------- /w2-1/practice/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lim-hyo-jeong/Wanted-Pre-Onboarding-AI-2407/HEAD/w2-1/practice/requirements.txt -------------------------------------------------------------------------------- /w2-2/[240714] w2-2 프롬프트 버전 관리와 테스트 방법.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lim-hyo-jeong/Wanted-Pre-Onboarding-AI-2407/HEAD/w2-2/[240714] w2-2 프롬프트 버전 관리와 테스트 방법.pdf -------------------------------------------------------------------------------- /w2-2/practice/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lim-hyo-jeong/Wanted-Pre-Onboarding-AI-2407/HEAD/w2-2/practice/.gitignore -------------------------------------------------------------------------------- /w2-2/practice/p1_langsmith_prompt/p1.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lim-hyo-jeong/Wanted-Pre-Onboarding-AI-2407/HEAD/w2-2/practice/p1_langsmith_prompt/p1.ipynb --------------------------------------------------------------------------------