Skip to content

Commit 13106d7

Browse files
authored
Merge pull request #671 from holly-cummins/update-diagrams-to-remove-semantic-kernel
Drop semantic kernel from diagrams and use guard for azure AI
2 parents 0d44f9b + 6e866b6 commit 13106d7

4 files changed

Lines changed: 15 additions & 7 deletions

File tree

.gitignore

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,3 @@ node/
3434
.classpath
3535
.settings
3636
.factorypath
37-
38-
39-
# Semantic Kernel
40-
conf.properties

quarkus-workshop-super-heroes/docs/src/docs/asciidoc/plantuml/0-introduction-physical-architecture-ai.puml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,15 @@ node "Villain" as villain {
2121

2222
node "Narration" as narration {
2323
agent "Quarkus" <<application>> as narrationQuarkus
24-
hexagon "Semantic Kernel" as sk
24+
hexagon "LangChain4j" as sk
2525
narrationQuarkus .up> sk
2626
}
2727

28+
!ifdef use_azure
2829
cloud "Open AI \n Azure OpenAI" as openai
30+
!else
31+
cloud "LLM Provider \n (OpenAI, Ollama, etc.)" as openai
32+
!endif
2933

3034
node "Fight" as fight {
3135
agent "Quarkus" <<application>> as fightQuarkus

quarkus-workshop-super-heroes/docs/src/docs/asciidoc/plantuml/5a-ai-physical-architecture.puml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,15 @@ node "Villain" as villain {
2121

2222
node "Narration" as narration {
2323
agent "Quarkus" <<application>> as narrationQuarkus
24-
hexagon "Semantic Kernel" as sk
24+
hexagon "LangChain4j" as sk
2525
narrationQuarkus .up> sk
2626
}
2727

28+
!ifdef use_azure
2829
cloud "Open AI \n Azure OpenAI" as openai
30+
!else
31+
cloud "LLM Provider \n (OpenAI, Ollama, Gemini, etc.)" as openai
32+
!endif
2933

3034
node "Fight" as fight {
3135
agent "Quarkus" <<application>> as fightQuarkus

quarkus-workshop-super-heroes/docs/src/docs/asciidoc/plantuml/5b-ai-narration-microservice.puml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,15 @@ left to right direction
55

66
node "Narration" as hero {
77
agent "Quarkus" <<application>> as narrationQuarkus
8-
hexagon "Semantic Kernel" as sk
8+
hexagon "LangChain4j" as sk
99
narrationQuarkus .up> sk
1010
}
1111

12+
!ifdef use_azure
1213
cloud "Open AI \n Azure OpenAI" as openai
14+
!else
15+
cloud "LLM Provider \n (OpenAI, Ollama, Gemini, etc.)" as openai
16+
!endif
1317

1418
REST ()-- narrationQuarkus
1519
sk --> openai : HTTP

0 commit comments

Comments
 (0)