What an amazing library!!! Thank you sir for uploading this video.
@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 Жыл бұрын
Can we just use serpAPI key and make a chainlit application? As a student I cannot buy OpenAI's API Key.
@commoncats5437 Жыл бұрын
@krushnaik please cover from scratch so everyone can understand..we r new to llm
@user-wr4yl7tx3w Жыл бұрын
Is there a way to deploy Chainlit on the cloud, so others can use it?
@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 Жыл бұрын
Thanks Krish for your GREAT videos. Please consider building opensource ChatGPT like models and how to fine tune them. Be amazing as usual. ❤
@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 Жыл бұрын
Thanks for the video and pls continue with mlops tools
@kevinshah27029 ай бұрын
Can you please provide the code for the above mentioned implementation
@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.
@mackfold7 ай бұрын
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 Жыл бұрын
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 Жыл бұрын
can we use this in organization by providing some customized data resources which it can search provide us the information
@rangaraokulkarni3069 Жыл бұрын
Hello Sir, how this will be useful for HR analytics / People Analytics?
@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 Жыл бұрын
where are the codes ???
@jagatkrishna1543 Жыл бұрын
Thanks SIR ❤🎉
@AjayM-h1w8 ай бұрын
Can you make a video of performing authentication using chainlit
@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 Жыл бұрын
can OpenAI function calling be used instead of LangChain agents?
@lakshmik.v-mh9ej Жыл бұрын
Please upload tutorial on Creating algorithms for analysing data like 5PL, 4PL, Quadratic, Log-Log, exponential.
@akshatapalsule2940 Жыл бұрын
Thankyou Krish hope it would be easy creating UI with chainlit 👍
@avbendre Жыл бұрын
AttributeError: partially initialized module 'chil' has no attribute 'langchain_factory' (most likely due to a circular import)
@wftrdshometoprofessionalfo14210 ай бұрын
Amazing!
@Pad67 ай бұрын
couldn't we just use simple Tkinter to create a UI in Python?
@Tech_Enthusiasts_Shubham Жыл бұрын
siŕ please make a playlist on how to make a L.L.M. model from scratch to advanced
@ezSyntax8 ай бұрын
Hey, can anyone help me with chat history in frontend?, like how can we add it in custom frontend?
@RazorIance Жыл бұрын
what does the -w flag do?
@ajlahade2201 Жыл бұрын
more on this brother please : Chainlit
@code_ansh9 ай бұрын
Can someone drop me the api key
@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.meetsolanki8 ай бұрын
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()