Azure / GPT-RAG

Sharing the learning along the way we been gathering to enable Azure OpenAI at enterprise scale in a secure manner. GPT-RAG core is a Retrieval-Augmented Generation pattern running in Azure, using Azure Cognitive Search for retrieval and Azure OpenAI large language models to power ChatGPT-style and Q&A experiences.
https://azure.microsoft.com/en-us/products/cognitive-services/openai-service
MIT License
882 stars 182 forks source link

Differences Between the Main Branch and the Agentic Branch #241

Open VAN613 opened 2 weeks ago

VAN613 commented 2 weeks ago

I would like to confirm my understanding of the differences between the main branch and the agentic branch. Is it correct that the only difference is the URL used in the git clone command?

In the script scripts/fetchComponents.sh, it is currently: git clone https://github.com/Azure/gpt-rag-orchestrator ./.azure/gpt-rag-orchestrator

And it is changed to: git clone https://github.com/Azure/gpt-rag-agentic ./.azure/gpt-rag-orchestrator

If this is correct, I believe it would be simpler to use: git clone $GIT_REPO_URL ./.azure/gpt-rag-orchestrator

And specify GIT_REPO_URL before executing azd init -t azure/gpt-rag.

A. When using Semantic Kernel functions (default) export GIT_REPO_URL="https://github.com/Azure/gpt-rag-orchestrator"

B. When using Agentic, with AutoGen agents export GIT_REPO_URL="https://github.com/Azure/gpt-rag-agentic"

VAN613 commented 2 weeks ago

If the GIT_REPO_URL is not specified, it might be simpler to explicitly execute: git clone https://github.com/Azure/gpt-rag-orchestrator ..azure\gpt-rag-orchestrator