You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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?
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"
The text was updated successfully, but these errors were encountered: