End to End Medical Chatbot Project Implementation | Generative AI | English | Euron

Поделиться
HTML-код
  • Опубликовано: 27 янв 2025

Комментарии • 56

  • @TyokahaIsrael
    @TyokahaIsrael 3 месяца назад +19

    In my 7 years of watching RUclips code projects on Python, no one has explained Python code the way you have. Thank you for these tutorials; you are the best.

  • @agaming4187
    @agaming4187 3 месяца назад +3

    this is the most underrated channell i future years this would surely be a big channel

  • @QuocNguyen-se7vi
    @QuocNguyen-se7vi 2 месяца назад +2

    Thank you very much, Can you teach how to apply LightRag or any novel knowledge graph RAG for LLM to query and generate new information based on LLM's inference along the relationships in the graph...Thank you a lot!

  • @AkhilSKumar
    @AkhilSKumar 4 дня назад

    While adding new documents, will the vectors already there for a document will be overwritten?, because when i initially run the app i had 1098 record count, but when i re-run with same document it become 2196 record count. So even if we add new documents whether it create new queries for same document?

  • @r.a.shasank5981
    @r.a.shasank5981 Месяц назад +1

    38:38 at this part im getting error
    It's saying import error i installed all the import things and finally it showed install sentence-transformer i already did then also not working 😢

    • @Depo_31
      @Depo_31 Месяц назад

      change the sentence transformer version to 3.3.1 then restart the kernal

  • @Probattu
    @Probattu 2 месяца назад

    Nice content bro.

  • @rudranilghosh3004
    @rudranilghosh3004 4 дня назад

    during the embedding part more errors are coming as of all are attribute error what to do sir??

  • @SubinKrishnaKT
    @SubinKrishnaKT 3 месяца назад +4

    IN THIS PROJECT IS THE PINECONDE DB FREE?

  • @Arifkoyani
    @Arifkoyani Месяц назад

    Thanks for thiss

  • @aditijangra2398
    @aditijangra2398 14 дней назад

    Defaulting to user installation because normal site-packages is not writeable,, what to do?

  • @samratdutta3366
    @samratdutta3366 16 дней назад +1

    you should provide the source code and the materials even if you have provided but not easy to get it then whats the purpose

  • @gauravmalakar3551
    @gauravmalakar3551 Месяц назад +1

    Can I use Groq LLMs instead of OpenAi ? The price is lower seems

  • @adityakrishnavangipurapu428
    @adityakrishnavangipurapu428 2 месяца назад +1

    Sir I am facing issue with creating an index for pinecone python code

    • @Euron-official
      @Euron-official  2 месяца назад +1

      Creating an index in Pinecone using Python can occasionally result in errors due to misconfigurations or connectivity issues. Here's a checklist and troubleshooting guide to help resolve the issue:
      1. Verify Pinecone Installation
      Ensure the Pinecone Python client is installed and updated:
      bash
      Copy code
      pip install pinecone-client
      or, for the newer version:
      bash
      Copy code
      pip install pinecone-client[grpc]
      2. Check Your API Key
      Ensure you have the correct API key for your Pinecone account:
      Log in to the Pinecone Dashboard.
      Navigate to the API Keys section.
      Use the following code to initialize Pinecone:
      python
      Copy code
      import pinecone
      pinecone.init(api_key="your-api-key", environment="your-environment")
      Replace "your-api-key" with your Pinecone API key.
      Replace "your-environment" with the environment (e.g., "us-west1-gcp").
      3. Create the Index
      Here’s the Python code to create an index:
      python
      Copy code
      # Initialize Pinecone
      pinecone.init(api_key="your-api-key", environment="your-environment")
      # Define the index name and dimensions
      index_name = "example-index"
      dimension = 128 # Example dimensionality of your embeddings
      # Create the index
      if index_name not in pinecone.list_indexes():
      pinecone.create_index(name=index_name, dimension=dimension)
      # Connect to the index
      index = pinecone.Index(index_name)
      print(f"Connected to index: {index_name}")
      4. Common Errors and Fixes
      Error: "Invalid API Key or Environment"
      Cause: The API key or environment is incorrect.
      Fix: Double-check the API key and environment in the Pinecone dashboard.
      Error: "Index Already Exists"
      Cause: Attempting to create an index with a name that already exists.
      Fix: List existing indexes to verify:
      python
      Copy code
      print(pinecone.list_indexes())
      Then use a different name or delete the existing index:
      python
      Copy code
      pinecone.delete_index("example-index")
      Error: "Invalid Dimension"
      Cause: The dimension specified does not match the embeddings.
      Fix: Verify the dimensionality of your embeddings and update the dimension parameter.
      Error: "Connection Timeout"
      Cause: Network issues or server-side delays.
      Fix: Retry after a few minutes or check your network settings.
      Error: "Rate Limit Exceeded"
      Cause: Too many requests sent to the Pinecone API.
      Fix: Pause requests for a short period or check your Pinecone plan for rate limits.
      Error: "Index Configuration Error"
      Cause: Invalid or incomplete index configuration.
      Fix: Ensure all required parameters are set correctly when creating the index (e.g., dimension, metric).
      5. Debugging
      Enable detailed logging to identify issues:
      python
      Copy code
      import logging
      logging.basicConfig(level=logging.DEBUG)
      pinecone.init(api_key="your-api-key", environment="your-environment")
      6. Check Pinecone Status
      Use the Pinecone API to verify system health:
      python
      Copy code
      status = pinecone.describe_index("example-index")
      print(status)

    • @adityakrishnavangipurapu428
      @adityakrishnavangipurapu428 2 месяца назад +1

      @ Thank you very much sir I request you to guide me for this project where ever I struck can I ask you 🙏🙏🙏

  • @narendra514
    @narendra514 2 месяца назад

    I am facing error AttributeError: 'function' object has no attribute 'embed_query' when trying to import the hugging face model

  • @PavanKumar-sw4wr
    @PavanKumar-sw4wr Месяц назад +1

    How can i deploy this application in vercel or netlify or anywhere it is free.

  • @hitesh_razz
    @hitesh_razz Месяц назад +3

    Using paid openai but not declared that this is paid or not, this is very sad for the student

  • @NISHANTPAREEK-d6o
    @NISHANTPAREEK-d6o 2 месяца назад +1

    @Euron I am facing RateLimit Error for OpenAI, kindly please help.

    • @BrainyAdventures007
      @BrainyAdventures007 Месяц назад +1

      you need to use credit card in order to use OpenAI, he's providing false information. Nothing is free at all.

    • @NISHANTPAREEK-d6o
      @NISHANTPAREEK-d6o Месяц назад

      @@BrainyAdventures007 True! had to pay around 6 dollars for it to work. Only if he had mentioned this in the video, a lot of my time would have been saved.

  • @Sanatani_Maratha
    @Sanatani_Maratha 2 месяца назад

    How much does this project costs totally.

  • @utkarshdey2339
    @utkarshdey2339 Месяц назад

    how can i get the code?

  • @Sabeer-k-s
    @Sabeer-k-s 2 месяца назад

    ❤️Thank you

  • @KamalnaathC.P.L
    @KamalnaathC.P.L 17 дней назад

    Where is the github link?

    • @samratdutta3366
      @samratdutta3366 16 дней назад

      i think they didn't created any which is not right

  • @shabazuddin2854
    @shabazuddin2854 3 месяца назад

    Can this whole project be built free of cost?

    • @Euron-official
      @Euron-official  3 месяца назад +1

      You can use Groq Api as its free

    • @harikamudhiraj2633
      @harikamudhiraj2633 Месяц назад

      What will be the major changes in code if we use Groq Api

    • @jenithjain1000
      @jenithjain1000 Месяц назад +1

      ​@@Euron-official please send the code for groq API one i tried but getting too many errors

  • @Arifkoyani
    @Arifkoyani Месяц назад

    Bro please git repo link

  • @ARkhan-xw8ud
    @ARkhan-xw8ud 2 месяца назад

    But we can access open source model through groq API bro. What your doing man use llama3-70 b parameter model next time

  • @deepalichauhan6054
    @deepalichauhan6054 2 месяца назад

    sir I am facing issue regarding openai api key it shows that my current quota has been exceeded even though I have created a new account for it kindly help me asap

    • @immanuels9680
      @immanuels9680 2 месяца назад

      Yeah same error for me, eventhough I have a $5 balance. How did you resolve this

    • @deepalichauhan6054
      @deepalichauhan6054 Месяц назад

      @@immanuels9680 I bought the plan went to pwershell tried to assign my new api key and it worked idk how but it took me 1-2 days

    • @njagikevin1069
      @njagikevin1069 14 дней назад

      Did you manage to solve this issue?

  • @jenithjain1000
    @jenithjain1000 Месяц назад

    Please give code for groq api

    • @Euron-official
      @Euron-official  29 дней назад

      api you can generate for free from groq website itself

    • @jenithjain1000
      @jenithjain1000 29 дней назад

      Then it will do the sentiment analysis as well ? ​@@Euron-official

    • @jenithjain1000
      @jenithjain1000 29 дней назад

      And also is llama model is better or groq API ?

  • @Manish_1176
    @Manish_1176 3 месяца назад

    It seems like Creating Medical Chatbot using RAG technology

    • @Manish_1176
      @Manish_1176 2 месяца назад

      its fantastic explanation about all the technologies you used in this project. Please tell us about deployment of this project on cloud AWS.

  • @bababooey4772
    @bababooey4772 14 дней назад

    Did anyone made this watching the video?

  • @BrainyAdventures007
    @BrainyAdventures007 Месяц назад +1

    Hey get your basic clear first before providing knowledge to others. The __init__ method which you refer to as constructor is different than __init__.py which you have created.