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
+64Lines changed: 64 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,6 +8,70 @@ To quickly deploy the application, [Deploy to Azure button](https://learn.micros
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
12
+
13
+
#### On Azure
14
+
15
+
```shell
16
+
# Cosmos DB
17
+
make create-cosmosdb-index
18
+
19
+
# Azure AI Search
20
+
make create-ai-search-index
21
+
```
22
+
23
+
#### On Docker
24
+
25
+
```shell
26
+
rm -rf assets/
27
+
28
+
# Launch Docker containers
29
+
docker compose up -d --wait
30
+
31
+
# Qdrant
32
+
make create-qdrant-index
33
+
34
+
# Elasticsearch
35
+
make create-elasticsearch-index
36
+
```
37
+
38
+
### Agents
39
+
40
+
#### Create agent graph in png format
41
+
42
+
```shell
43
+
## Draw agent graph
44
+
mkdir -p generated
45
+
AGENT_NAMES=(
46
+
"chat_with_tools_agent"
47
+
"image_classifier_agent"
48
+
"issue_formatter_agent"
49
+
"kabuto_helpdesk_agent"
50
+
"news_summarizer_agent"
51
+
"task_decomposer_agent"
52
+
)
53
+
forAGENT_NAMEin"${AGENT_NAMES[@]}";do
54
+
uv run python scripts/agent_operator.py png --name "$AGENT_NAME" --verbose --output "generated/${AGENT_NAME}.png"&
echo"Running agent: $AGENT_NAME with question: $QUESTION"
71
+
uv run python scripts/agent_operator.py run --name "$AGENT_NAME" --verbose --question "$QUESTION"
72
+
done
73
+
```
74
+
11
75
### Docker Hub
12
76
13
77
To publish the docker image to Docker Hub, you need to [create access token](https://app.docker.com/settings/personal-access-tokens/create) and set the following secrets in the repository settings.
0 commit comments