У нас вы можете посмотреть бесплатно COMPLETE Guide to LangServe - Make Your AI Agent Actually Useful или скачать в максимальном доступном качестве, видео которое было загружено на ютуб. Для загрузки выберите вариант из формы ниже:
Если кнопки скачивания не
загрузились
НАЖМИТЕ ЗДЕСЬ или обновите страницу
Если возникают проблемы со скачиванием видео, пожалуйста напишите в поддержку по адресу внизу
страницы.
Спасибо за использование сервиса ClipSaver.ru
This is the 10th video in the AI Agents masterclass series! Artificial Intelligence is no doubt the future of not just software development but the whole world. And I'm on a mission to master it - focusing first on mastering AI Agents. In this video I show you step by step how to self host your AI agent built with LangChain in the cloud using LangServe. You definitely can't keep all of your AI agents running locally on your computer! To bring them to production, you need to deploy them in the cloud and this is exactly what I show you how to do. LangChain offers cloud hosting for LangServe, but hosting it yourself is cheaper and gives you a LOT more control! ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ The code I show in this video for the AI Agent and LangServe is here: https://github.com/coleam00/ai-agents... As mentioned in the video, here are the steps for deploying the AI Agent with LangServe on your Digital Ocean Droplet: 1. Sign up for Digital Ocean 2. Purchase a Droplet (Premium AMD for $7 a month is ideal to start) 3. Log into your Droplet 3. git clone https://github.com/coleam00/ai-agents... 4. apt install python3-venv 5. python3 -m venv /home/ai-agent-venv 6. source /home/ai-agent-venv/bin/activate 7. cd ~/ai-agents-masterclass/10-deploy-ai-agent-langserve 8. pip install -r requirements.txt --no-cache-dir 9. nano ~/ai-agents-masterclass/10-deploy-ai-agent-langserve/.env and add environment variables 10. sudo ufw enable 11. sudo ufw allow 8000 12. sudo ufw reload 13. python langserve-endpoints.py If you want to run this as a background process in the droplet (so your terminal isn't hanging), you can use a command like (angle brackets aren't allowed you YouTube descriptions for sure reason, so I have a placeholder for two): nohup ~/ai-agents-masterclass/10-deploy-ai-agent-langserve/langserve-endpoints.py [angle bracket] ~/langserve-output.txt 2[angle bracket]&1 & and then to confirm it is running you can run the following command and look for the langserve-endpoints.py process: ps ax | grep .py ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Join me as I push the limits of what is possible with AI. I'll be uploading videos twice a week - Sundays and Wednesdays at 7:00 PM CDT!