I believe you currently do some of the very best tutorials that are out there. It's hands on and even despite being 1 year old already, together with the documentation it's easily applicable. Thank you
Thank you for this video. I have a question.When i try this it return random question and answers after my question's answer. I never find why it is happend
embeddings = OpenAIEmbeddings() vectorstore = Chroma.from_texts(text, embeddings) =========================================== Why bove codes get me the following errors: InvalidRequestError: The API deployment for this resource does not exist.
hello shweta , thank you for this tutorial i want to ask you if you have any ideas of how to adapt a hugging face model in order to deploy it on azure open ai
hi mam. watched your video as python is not my first lang as a coder. but it was so simple and well explained. subscribing to the channel for more knowledge. thanx once again.
Great explanation, When I followed what you said, this is what happened: "The API deployment for this resource does not exist. If you created the deployment within the last 5 minutes, please wait a moment and try again." and also show "Argument missing for parameter "client"" in the code, what should i do?🤔
Hi, Shweta firstly, thanks a lot for your efforts I'm a junior in programming and this channel has become my lovely destination on RUclips but , I faced an error in this line of code .{ with open('turtles.pdf') as f: text = f.read() } ----------------------------------------------------------- the errror is: 'utf-8' codec can't decode byte 0xe2 in position 10: invalid continuation byte . How can I fix it ,please?
I believe you currently do some of the very best tutorials that are out there. It's hands on and even despite being 1 year old already, together with the documentation it's easily applicable. Thank you
Glad you like them!
Thanks for the explanation. Is there a way to use an Azure OpenAI embeddings deployment rather than importing the standard OpenAIEmbeddings class?
@Shweta Can we use llamaindex with azure openai
Yes, you can. Check out marketplace
Thanks!! Just a question: In case we need to load the data from Azure blob then How can we do this?
Will make a video on this shortly
Thank you for this video. I have a question.When i try this it return random question and answers after my question's answer. I never find why it is happend
How's it possible? You will get response only when you ask question, it will never come automatically. Could you please check your prompt?
embeddings = OpenAIEmbeddings()
vectorstore = Chroma.from_texts(text, embeddings)
===========================================
Why bove codes get me the following errors:
InvalidRequestError: The API deployment for this resource does not exist.
Same error here
hello shweta , thank you for this tutorial i want to ask you if you have any ideas of how to adapt a hugging face model in order to deploy it on azure open ai
I've created 2 videos (no code and complete code) on this. Please search for the keyword 'Hugging Face' under my videos and you will see them.
Hello Shweta, can i use gpt-35-turbo model for the same code?
Wow, very helpful, thank you so much!
Thank you for your explanation it was very helpful. Could you do a demostration with multiple PDF files using Azure OpenAI?
Thanks Fabian, I am glad that you find it useful. Will do it shortly.
can you show us the same in .NET C#?
Unfortunately c# is not very preferred when it comes to GenAI apps. Hence I didn’t prioritize doing this with c#. Hope this makes sense.
hi mam. watched your video as python is not my first lang as a coder. but it was so simple and well explained. subscribing to the channel for more knowledge. thanx once again.
Thanks and welcome
good
Thanks
vewy simple , thank you
Glad that you think so 😊
is access to Azure openai below generally available?
You need to fill in a registration form and get it done easily.
Thank you!
Welcome 🤗
How can I put this into a frontward facing user interface? I'm new here :)
It won't be that difficult. Just create a UI in Python, create methods for whatever you are doing and call them on user interactions.
Hi, how to resolve the rate limit in Azure OpenAI with LangChain?
like the limit of Requests per minute per model
One solution is to move on to pay as you go model
Hi Shweta, great video i have been following lot of your videos .Can you please show how vector stor can be created using azure search service...
That’s gonna be my next video. Stay tuned!
Great explanation, When I followed what you said, this is what happened: "The API deployment for this resource does not exist. If you created the deployment within the last 5 minutes, please wait a moment and try again." and also show "Argument missing for parameter "client"" in the code, what should i do?🤔
Please verify the name of your deployed model.
Hi Shweta...Great Session...Could you pls brief about token limits in Azure OpenAI?
Will do this one shortly. Thanks!
Hi, Shweta
firstly, thanks a lot for your efforts
I'm a junior in programming and this channel has become my lovely destination on RUclips
but , I faced an error in this line of code
.{
with open('turtles.pdf') as f:
text = f.read()
}
-----------------------------------------------------------
the errror is:
'utf-8' codec can't decode byte 0xe2 in position 10: invalid continuation byte
.
How can I fix it ,please?
Please try this: with open(‘turtles.pdf’, ‘rb’) as f:
Facing package installation errors
?