Azure-Samples / azure-search-openai-demo

A sample app for the Retrieval-Augmented Generation pattern running in Azure, using Azure AI Search for retrieval and Azure OpenAI large language models to power ChatGPT-style and Q&A experiences.
https://azure.microsoft.com/products/search
MIT License
5.59k stars 3.75k forks source link

Access the localhost application from another machine using IP #1670

Open gitsofkhaleel opened 4 weeks ago

gitsofkhaleel commented 4 weeks ago

We are able to run this successfully. Backend is started using this command. App is running in local. but my collegue wants to access the application using my ip:port but it doesnt work. please help

.\backend_env\Scripts\python -m quart --app main:app run --port "50505" --host "0.0.0.0" --reload

pamelafox commented 3 weeks ago

You would need to expose the port on your local machine in a way that your colleague can access it. That's not something that I've done myself, but there should be instructions online for how to do that generally, I don't think that's particular to this app.