├── .gitignore ├── 1 - LangChain LLM with OpenAI.ipynb ├── 10 - API Key-based Rate Limiting.ipynb ├── 2 - Prompt Templates with LangChain OpenAI.ipynb ├── 3 - Embeddings and Vector Similarity.ipynb ├── 4 - Using the Upstash Vector Database.ipynb ├── 5 - Large Text with Langchan and Upstash Vector Store.ipynb ├── 6 - Langchain + Upstash Vector Chatbot.ipynb ├── 7 - Python Requests to LangChain API.ipynb ├── 8 - Using LangServe Client RemoteRunnable.ipynb ├── 9 - Rate Limit Verification.ipynb ├── LICENSE ├── README.md ├── helpers.py ├── main.py ├── requirements.txt └── try-langchain.code-workspace /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/try-langchain/HEAD/.gitignore -------------------------------------------------------------------------------- /1 - LangChain LLM with OpenAI.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/try-langchain/HEAD/1 - LangChain LLM with OpenAI.ipynb -------------------------------------------------------------------------------- /10 - API Key-based Rate Limiting.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/try-langchain/HEAD/10 - API Key-based Rate Limiting.ipynb -------------------------------------------------------------------------------- /2 - Prompt Templates with LangChain OpenAI.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/try-langchain/HEAD/2 - Prompt Templates with LangChain OpenAI.ipynb -------------------------------------------------------------------------------- /3 - Embeddings and Vector Similarity.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/try-langchain/HEAD/3 - Embeddings and Vector Similarity.ipynb -------------------------------------------------------------------------------- /4 - Using the Upstash Vector Database.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/try-langchain/HEAD/4 - Using the Upstash Vector Database.ipynb -------------------------------------------------------------------------------- /5 - Large Text with Langchan and Upstash Vector Store.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/try-langchain/HEAD/5 - Large Text with Langchan and Upstash Vector Store.ipynb -------------------------------------------------------------------------------- /6 - Langchain + Upstash Vector Chatbot.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/try-langchain/HEAD/6 - Langchain + Upstash Vector Chatbot.ipynb -------------------------------------------------------------------------------- /7 - Python Requests to LangChain API.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/try-langchain/HEAD/7 - Python Requests to LangChain API.ipynb -------------------------------------------------------------------------------- /8 - Using LangServe Client RemoteRunnable.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/try-langchain/HEAD/8 - Using LangServe Client RemoteRunnable.ipynb -------------------------------------------------------------------------------- /9 - Rate Limit Verification.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/try-langchain/HEAD/9 - Rate Limit Verification.ipynb -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/try-langchain/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/try-langchain/HEAD/README.md -------------------------------------------------------------------------------- /helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/try-langchain/HEAD/helpers.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/try-langchain/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/try-langchain/HEAD/requirements.txt -------------------------------------------------------------------------------- /try-langchain.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codingforentrepreneurs/try-langchain/HEAD/try-langchain.code-workspace --------------------------------------------------------------------------------