Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cambios y correcciones en el diagrama #44

Merged
merged 1 commit into from
Feb 23, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file removed docs/images/doc3-technical_context-diagram.png
Binary file not shown.
41 changes: 36 additions & 5 deletions docs/src/03_context_and_scope.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,38 @@ together with a mapping table showing the relationships between channels and inp
****
endif::arc42help[]

image::doc3-technical_context-diagram.png["Technical Context diagram", align="center"]
[plantuml, technical-context-diagram, svg]
----
@startuml
actor User

node "Webapp" {
[Frontend]
}

node "Backend Services" {
[User service]
[History service]
[Question service]
[LLM service]
}

database "Persistence"
[Wikidata]

User --> Frontend : Interacts with
Frontend --> "User service" : Sends and requests user info
Frontend --> "History service" : Requests history
Frontend --> "LLM service" : Ask for hints

"User service" --> Persistence : Saves user info and checks
"History service" --> Persistence : Saves history
"Question service" --> Wikidata : Requests questions
Wikidata --> "Question service" : Gets data from
"Question service" --> Persistence : Saves questions
@enduml
----


|===
| Communication partners | Inputs | Outputs
Expand All @@ -110,6 +141,10 @@ image::doc3-technical_context-diagram.png["Technical Context diagram", align="ce
| Session user info
| User's history

| *_LLM service_*
| User text inputs
| Hints about the question

| *_Users_*
| Questions and possible answers
| Interaction to log in and answer to questions
Expand All @@ -126,8 +161,4 @@ image::doc3-technical_context-diagram.png["Technical Context diagram", align="ce
| User inputs
| Browser outputs

| *_LLM service_*
| User text inputs
| Hints about the question

|===