Update blog post draft about Cyberpunk 2077#87
Open
stichbury wants to merge 8 commits into
Open
Conversation
Contributor
stichbury
commented
Nov 27, 2025
- Saved the original draft to a folder
- Some minor copy edits for US English, capitalisation, typos
- Some additional edits for links and readability to intro.
Updated the blog post to improve clarity and fix minor errors.
Contributor
stichbury
commented
Nov 28, 2025
Contributor
Author
stichbury
left a comment
There was a problem hiding this comment.
Looks great to me, thanks 🎉
Contributor
Author
|
Hi @lrcouto I have realised that the problem with the graphics is that they are very tall vertically, and this is going to consume a lot of screen realestate in an already long article. Folks are going to get RSI from scrolling! Would it be possible to convert the Mermaid code to flow horizontally rather than vertically? |
Contributor
|
It looks super long on the horizontal as well. Maybe we can break the flowchart in two like this? flowchart LR
A["Data Sources"] --> B["Transcript<br/>(400 pages)"]
A --> C["Clean Wiki Data<br/>(13,000 pages)"]
B --> D["Processing Pipeline"]
C --> D
D --> E["Chunk Transcript"]
E --> G["Generate Embeddings"]
G --> H[("Kedro Datasets:<br/>• Chunked Data<br/>• Wiki Embeddings<br/>• Character List")]
style A fill:#e1f5ff
style H fill:#fff3e0
flowchart LR
H[("Kedro Datasets:<br/>• Chunked Data<br/>• Wiki Embeddings<br/>• Character List")]
I["User Query"] --> J["Query Pipeline"]
H --> J
J --> K["Find Relevant<br/>Contexts"]
J --> L["Extract Character<br/>Mentions"]
K --> M["Semantic Search<br/>with Embeddings"]
L --> M
M --> N["Select Most<br/>Relevant Chunks"]
N --> O["Format Prompt"]
O --> P["Prompt LLM"]
P --> Q["Response"]
style H fill:#fff3e0
style I fill:#f3e5f5
style P fill:#fce4ec
style Q fill:#e8f5e9
|
Contributor
|
The other two are too small to break I think. Here's what they look like horizontally. graph LR
A["CLI Query Node Starts"] --> B["Initialize LLM<br/>& History"]
B --> C["Loop Iteration"]
C --> D["Get User Input"]
D --> E{"Exit?"}
E -->|Yes| F["Return"]
E -->|No| G["Find Contexts<br/>& Format Prompt"]
G --> H["Add to History"]
H --> I["Query LLM"]
I --> J["Display Response"]
J --> K["Append to History"]
K --> C
style A fill:#e3f2fd
style C fill:#fff3e0
style D fill:#f3e5f5
style K fill:#e8f5e9
style F fill:#ffebee
graph LR
A["User Query"] --> B["find_relevant_contexts<br/>tags: cli, discord"]
B --> C["format_prompt_with_context<br/>tags: cli, discord"]
C --> D{"Which tags<br/>to run?"}
D -->|kedro run --tags=cli| E["query_llm_cli<br/>tags: cli"]
D -->|kedro run --tags=discord| F["query_llm_discord<br/>tags: discord"]
E --> G["Interactive Loop<br/>Maintains History"]
F --> H["Discord Response<br/>Chunked Message"]
G --> I["CLI Output"]
H --> J["Discord Message"]
style A fill:#f3e5f5
style B fill:#e8f5e9
style C fill:#e8f5e9
style D fill:#fff3e0
style E fill:#e3f2fd
style F fill:#fce4ec
style G fill:#e3f2fd
style H fill:#fce4ec
style I fill:#c8e6c9
style J fill:#f8bbd0
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
