Build Python LLM apps in minutes Using Chainlit ⚡️

  Рет қаралды 46,424

Krish Naik

Krish Naik

Күн бұрын

Пікірлер: 33
@Coding_Connoisseur
@Coding_Connoisseur Жыл бұрын
What an amazing library!!! Thank you sir for uploading this video.
@Tech_Enthusiasts_Shubham
@Tech_Enthusiasts_Shubham Жыл бұрын
Thanks a lot please be continue in publishing ai content like this your videos are really interactive and helpful for me to understand new tech stuff
@darshan7673
@darshan7673 Жыл бұрын
Can we just use serpAPI key and make a chainlit application? As a student I cannot buy OpenAI's API Key.
@commoncats5437
@commoncats5437 Жыл бұрын
@krushnaik please cover from scratch so everyone can understand..we r new to llm
@user-wr4yl7tx3w
@user-wr4yl7tx3w Жыл бұрын
Is there a way to deploy Chainlit on the cloud, so others can use it?
@ctcsys
@ctcsys Жыл бұрын
Great stuff. Maybe you could do a sum up also with using embedded vectors and get code search/ created based on human language requirements but also getting those 'reengineered' from given code maybe using code2seq tools? Thx!!
@khalidal-reemi3361
@khalidal-reemi3361 Жыл бұрын
Thanks Krish for your GREAT videos. Please consider building opensource ChatGPT like models and how to fine tune them. Be amazing as usual. ❤
@malleswararaomaguluri6344
@malleswararaomaguluri6344 Жыл бұрын
Hi krish, is there any way to generate gpt or llm model using our own data due To data privacy. Pls clarify
@mohsinkhan-bw3cd
@mohsinkhan-bw3cd Жыл бұрын
Thanks for the video and pls continue with mlops tools
@kevinshah2702
@kevinshah2702 9 ай бұрын
Can you please provide the code for the above mentioned implementation
@darshankholakiya553
@darshankholakiya553 Жыл бұрын
Great video sir! Can you please make one end to end video on making LLM model with tunning pre trained model for our use case and without Open AI Key so students like me can make project on LLM and include in our resume.
@mackfold
@mackfold 7 ай бұрын
im new to this, this is great and has got be started, just tried your code, why do i get a different response to the same question to the chatbot?
@pritishghatkar6148
@pritishghatkar6148 Жыл бұрын
Hi krish please upload tutorials if possible of using GPT4All and langchain which allows us to chat with our pdf files or csv without using OpenAI
@pawankarthik1578
@pawankarthik1578 Жыл бұрын
can we use this in organization by providing some customized data resources which it can search provide us the information
@rangaraokulkarni3069
@rangaraokulkarni3069 Жыл бұрын
Hello Sir, how this will be useful for HR analytics / People Analytics?
@amparoconsuelo9451
@amparoconsuelo9451 Жыл бұрын
Can a subsequent SFT and RTHF with different, additional or lesser contents change the character, improve, or degrade a GPT model? Can you modify a GPT model?
@Artificialintelligencia
@Artificialintelligencia Жыл бұрын
where are the codes ???
@jagatkrishna1543
@jagatkrishna1543 Жыл бұрын
Thanks SIR ❤🎉
@AjayM-h1w
@AjayM-h1w 8 ай бұрын
Can you make a video of performing authentication using chainlit
@nikk6489
@nikk6489 Жыл бұрын
can we run it using Docker or Docker-compose? Locally it's running fine. If not running on the docker then no use :(
@user-wr4yl7tx3w
@user-wr4yl7tx3w Жыл бұрын
can OpenAI function calling be used instead of LangChain agents?
@lakshmik.v-mh9ej
@lakshmik.v-mh9ej Жыл бұрын
Please upload tutorial on Creating algorithms for analysing data like 5PL, 4PL, Quadratic, Log-Log, exponential.
@akshatapalsule2940
@akshatapalsule2940 Жыл бұрын
Thankyou Krish hope it would be easy creating UI with chainlit 👍
@avbendre
@avbendre Жыл бұрын
AttributeError: partially initialized module 'chil' has no attribute 'langchain_factory' (most likely due to a circular import)
@wftrdshometoprofessionalfo142
@wftrdshometoprofessionalfo142 10 ай бұрын
Amazing!
@Pad6
@Pad6 7 ай бұрын
couldn't we just use simple Tkinter to create a UI in Python?
@Tech_Enthusiasts_Shubham
@Tech_Enthusiasts_Shubham Жыл бұрын
siŕ please make a playlist on how to make a L.L.M. model from scratch to advanced
@ezSyntax
@ezSyntax 8 ай бұрын
Hey, can anyone help me with chat history in frontend?, like how can we add it in custom frontend?
@RazorIance
@RazorIance Жыл бұрын
what does the -w flag do?
@ajlahade2201
@ajlahade2201 Жыл бұрын
more on this brother please : Chainlit
@code_ansh
@code_ansh 9 ай бұрын
Can someone drop me the api key
@pareshsharma1584
@pareshsharma1584 Жыл бұрын
I have built an platform to learn datascience practically. Where a learner choose dataset, then follow step by step guide with AI, to build the model and consideration while building model. Also include, how to derive a business question/problem and draw a path to make a decision on problem. The software do everything from A to Z. But at the moment it's only limited to small datasets about 2 gb max and no CVision models. If possible I am looking for place to sell this platform or interested in deal with collaboration.
@aiml.meetsolanki
@aiml.meetsolanki 8 ай бұрын
Updated Code of Chain-lit import os from langchain.prompts import PromptTemplate from langchain.chains.llm import LLMChain from chainlit import on_chat_start, on_message from chainlit.message import Message import chainlit as cl from langchain_groq import ChatGroq template = """ Question: {question} Answer: Let's think step by step.""" prompt = PromptTemplate(template=template, input_variables=["question"]) llm = ChatGroq(groq_api_key = "") # Instantiate the chain for that user session llm_chain = LLMChain(prompt=prompt, llm=llm, verbose=True) @on_chat_start def main(): # Store the chain in the user session (optional) cl.user_session.set("llm_chain", llm_chain) @on_message async def handle_message(message: Message): try: # Extract the plain text question from the Message object question = message.content llm_chain = LLMChain(prompt=prompt, llm=llm, verbose=True) # Call the chain with the extracted question res = await llm_chain.acall(question) # Do any post-processing here (optional) # Send the response await Message(content=res["text"]).send() except Exception as e: # Handle the error gracefully await Message(content="An error occurred. Please try again later.").send()
End To End MLOPS Data Science Project Implementation With Deployment
2:32:35
Python RAG Tutorial (with Local LLMs): AI For Your PDFs
21:33
pixegami
Рет қаралды 354 М.
УЛИЧНЫЕ МУЗЫКАНТЫ В СОЧИ 🤘🏻
0:33
РОК ЗАВОД
Рет қаралды 7 МЛН
Война Семей - ВСЕ СЕРИИ, 1 сезон (серии 1-20)
7:40:31
Семейные Сериалы
Рет қаралды 1,6 МЛН
Sigma girl VS Sigma Error girl 2  #shorts #sigma
0:27
Jin and Hattie
Рет қаралды 124 МЛН
What is Agentic AI? Important For GEN AI In 2025
22:36
Krish Naik
Рет қаралды 131 М.
Qwen Just Casually Started the Local AI Revolution
16:05
Cole Medin
Рет қаралды 126 М.
How I'd Learn AI in 2025 (if I could start over)
17:55
Dave Ebbelaar
Рет қаралды 1,2 МЛН
💀 R.I.P. YouTube Tutorials: Gemini 2.0 AI is the NEW Teacher
10:00
Teacher's Tech
Рет қаралды 113 М.
Run your own AI (but private)
22:13
NetworkChuck
Рет қаралды 1,8 МЛН
Complete Langchain Course For Generative AI In 3 Hours
3:13:35
Krish Naik
Рет қаралды 111 М.
УЛИЧНЫЕ МУЗЫКАНТЫ В СОЧИ 🤘🏻
0:33
РОК ЗАВОД
Рет қаралды 7 МЛН