自学内容网 自学内容网

Can we Deploy Web Application in Azure OpenAI of Production Level

题意:我们可以在Azure OpenAI中部署生产级别的Web应用程序吗

问题背景:

I have created azure ai search service and used Text split skillset and made index. I also deployed a web Application but have a question that If I want to create to production level, which means that Can we create/deploy a web application in such a way that in web application, I can upload document and ask questions and get answers there and then.

The web application is created using Azure AI Search and it has documents that are stored in Azure Blob Storage. If I want to create Production level Web Application where we can upload Document and ask questions and get answers, Is it possible or not?

Please Guide.

Thanks in Advance!!!

问题解决:

Short answer is Yes, its possible.

On the backend, you can create/link with your index via Azure SDK. Your pipeline/workflow would look something like this on high level:

  • Upload document
  • Process document
  • Upload to an existing index via Azure SDK (create index first if necessary)
  • Link with the new index and do Q/A
  • Remove document from index via Azure SDK (delete index if necessary)

Note: You probably need to create index for each user or each session depending on how you want to design your application.


原文地址:https://blog.csdn.net/suiusoar/article/details/140668899

免责声明:本站文章内容转载自网络资源,如本站内容侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!