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
Copy file name to clipboardExpand all lines: docs/deployment.md
+17-8Lines changed: 17 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,16 +1,16 @@
1
-
##Deployment instructions
1
+
# Deployment instructions
2
2
3
-
###Azure resources
3
+
## Azure resources
4
4
5
5
To deploy Azure resources for this project, you can use the provided [Bicep template](https://github.com/ks6088ts-labs/baseline-environment-on-azure-bicep/tree/main/infra/scenarios/template-langgraph). This template sets up the necessary resources for running the LangGraph application.
6
6
7
7
To quickly deploy the application, [Deploy to Azure button](https://learn.microsoft.com/azure/azure-resource-manager/templates/deploy-to-azure-button) is available. By clicking the following button, you can deploy the resources directly from the Azure portal:
8
8
9
9
[](https://portal.azure.com/#create/Microsoft.Template/uri/https%3A%2F%2Fraw.githubusercontent.com%2Fks6088ts-labs%2Fbaseline-environment-on-azure-bicep%2Frefs%2Fheads%2Fmain%2Finfra%2Fscenarios%2Ftemplate-langgraph%2Fazuredeploy.json)
10
10
11
-
###Create index
11
+
## Create index
12
12
13
-
####On Azure
13
+
### On Azure
14
14
15
15
```shell
16
16
# Cosmos DB
@@ -20,7 +20,7 @@ make create-cosmosdb-index
20
20
make create-ai-search-index
21
21
```
22
22
23
-
####On Docker
23
+
### On Docker
24
24
25
25
```shell
26
26
rm -rf assets/
@@ -33,11 +33,14 @@ make create-qdrant-index
33
33
34
34
# Elasticsearch
35
35
make create-elasticsearch-index
36
+
37
+
# (Optional) Azure services
38
+
# Cosmos DB / Azure AI Search are also supported via Make targets above.
36
39
```
37
40
38
-
###Agents
41
+
## Agents
39
42
40
-
####Create agent graph in png format
43
+
### Create agent graph in png format
41
44
42
45
```shell
43
46
## Draw agent graph
@@ -56,7 +59,7 @@ done
56
59
wait
57
60
```
58
61
59
-
####Run agents
62
+
### Run agents
60
63
61
64
```shell
62
65
NAME_QUESTION_ARRAY=(
@@ -70,6 +73,12 @@ for NAME_QUESTION in "${NAME_QUESTION_ARRAY[@]}"; do
70
73
echo"Running agent: $AGENT_NAME with question: $QUESTION"
71
74
uv run python scripts/agent_operator.py run --name "$AGENT_NAME" --verbose --question "$QUESTION"
0 commit comments