├── LLMS_langchain ├── .gitignore ├── Pipfile ├── __pycache__ │ └── constants.cpython-39.pyc ├── chat_with_pdf.py ├── data.json ├── example.py ├── influencer.py └── main.py ├── LLmcodeUsing1pdf ├── .gitignore └── main.py ├── README.md ├── first_Project_langchain └── main.py └── langchain ├── .DS_Store ├── .gitignore ├── main.py └── requirements.txt /LLMS_langchain/.gitignore: -------------------------------------------------------------------------------- 1 | constants.py 2 | 3 | myenv -------------------------------------------------------------------------------- /LLMS_langchain/Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amanastel/llm_project/HEAD/LLMS_langchain/Pipfile -------------------------------------------------------------------------------- /LLMS_langchain/__pycache__/constants.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amanastel/llm_project/HEAD/LLMS_langchain/__pycache__/constants.cpython-39.pyc -------------------------------------------------------------------------------- /LLMS_langchain/chat_with_pdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amanastel/llm_project/HEAD/LLMS_langchain/chat_with_pdf.py -------------------------------------------------------------------------------- /LLMS_langchain/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amanastel/llm_project/HEAD/LLMS_langchain/data.json -------------------------------------------------------------------------------- /LLMS_langchain/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amanastel/llm_project/HEAD/LLMS_langchain/example.py -------------------------------------------------------------------------------- /LLMS_langchain/influencer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amanastel/llm_project/HEAD/LLMS_langchain/influencer.py -------------------------------------------------------------------------------- /LLMS_langchain/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amanastel/llm_project/HEAD/LLMS_langchain/main.py -------------------------------------------------------------------------------- /LLmcodeUsing1pdf/.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | myenv -------------------------------------------------------------------------------- /LLmcodeUsing1pdf/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amanastel/llm_project/HEAD/LLmcodeUsing1pdf/main.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amanastel/llm_project/HEAD/README.md -------------------------------------------------------------------------------- /first_Project_langchain/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amanastel/llm_project/HEAD/first_Project_langchain/main.py -------------------------------------------------------------------------------- /langchain/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amanastel/llm_project/HEAD/langchain/.DS_Store -------------------------------------------------------------------------------- /langchain/.gitignore: -------------------------------------------------------------------------------- 1 | constants.py -------------------------------------------------------------------------------- /langchain/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amanastel/llm_project/HEAD/langchain/main.py -------------------------------------------------------------------------------- /langchain/requirements.txt: -------------------------------------------------------------------------------- 1 | openai 2 | langchain 3 | streamlit --------------------------------------------------------------------------------