Skip to content

Commit 11017b8

Browse files
committed
RAG Pattern
1 parent 0824fca commit 11017b8

File tree

4 files changed

+33
-149
lines changed

4 files changed

+33
-149
lines changed

.gitmodules

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +0,0 @@
1-
[submodule "themes/up-business-theme"]
2-
path = themes/up-business-theme
3-
url = https://gitlab.com/writeonlyhugo/up-business-theme.git
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
+++
2+
author = "Bob Kozdemba (Red Hat), and Josh Reagan (Red Hat)"
3+
title = "Summarization with Retreival Augmented Generation (RAG) AI workflow"
4+
date = "2025-03-18"
5+
description = "Integrates a number of open source technologies to create a solution that ingests and summarizes near real-time data by mimicing how a human would analyze and summarize information."
6+
tags = [
7+
"AI/ML", "RAG"
8+
]
9+
categories = [
10+
"themes",
11+
"syntax",
12+
]
13+
series = ["Cloud Native Applications", "AI/ML"]
14+
externalurl = "https://www.solutionpatterns.io/solution-pattern-ai-financial"
15+
headerimage = "images/patterns/solution-pattern-ai-financial.png"
16+
+++
17+
18+
Integrates a number of open source technologies to create a solution that ingests and summarizes near real-time data by mimicing how a human would analyze and summarize information.
19+
20+
<!--more-->
21+
22+
Explore the Solution Pattern: https://www.solutionpatterns.io/solution-pattern-ai-financial
Lines changed: 11 additions & 146 deletions
Original file line numberDiff line numberDiff line change
@@ -1,152 +1,17 @@
1-
+++
2-
author = "Bernard Tison, Jaya Baskaran"
3-
title = "Recommendation Engine using Event Streaming"
4-
date = "2019-03-11"
5-
description = "An event streaming platform using Red Hat AMQ Streams based on Apache Kafka to track user activity in real time."
6-
tags = [
7-
"kafka",
8-
"AMQ Streams"
9-
]
10-
categories = [
11-
"themes",
12-
"syntax",
13-
]
14-
series = ["Cloud Native Applications"]
15-
aliases = ["migrate-from-jekyl"]
16-
externalurl = "https://www.solutionpatterns.io/solution-pattern-recommendation-engine"
17-
headerimage = "images/patterns/solution-pattern-recommendation-engine.png"
18-
+++
1+
---
2+
author: "Bernard Tison, Jaya Baskaran"
3+
title: "Recommendation Engine using Event Streaming"
4+
date: "2019-03-11"
5+
description: "An event streaming platform using Red Hat AMQ Streams based on Apache Kafka to track user activity in real time."
6+
tags: [ "kafka", "AMQ Streams"]
7+
categories : [ "themes", "syntax",]
8+
series: ["Cloud Native Applications"]
9+
externalurl: "https://www.solutionpatterns.io/solution-pattern-recommendation-engine"
10+
headerimage: "images/patterns/solution-pattern-recommendation-engine.png"
11+
---
1912

2013
An event streaming platform using Red Hat AMQ Streams based on Apache Kafka to track user activity in real time
2114

2215

23-
2416
<!--more-->
2517

26-
## Headings
27-
28-
The following HTML `<h1>``<h6>` elements represent six levels of section headings. `<h1>` is the highest section level while `<h6>` is the lowest.
29-
30-
# H1
31-
## H2
32-
### H3
33-
#### H4
34-
##### H5
35-
###### H6
36-
37-
## Paragraph
38-
39-
Xerum, quo qui aut unt expliquam qui dolut labo. Aque venitatiusda cum, voluptionse latur sitiae dolessi aut parist aut dollo enim qui voluptate ma dolestendit peritin re plis aut quas inctum laceat est volestemque commosa as cus endigna tectur, offic to cor sequas etum rerum idem sintibus eiur? Quianimin porecus evelectur, cum que nis nust voloribus ratem aut omnimi, sitatur? Quiatem. Nam, omnis sum am facea corem alique molestrunt et eos evelece arcillit ut aut eos eos nus, sin conecerem erum fuga. Ri oditatquam, ad quibus unda veliamenimin cusam et facea ipsamus es exerum sitate dolores editium rerore eost, temped molorro ratiae volorro te reribus dolorer sperchicium faceata tiustia prat.
40-
41-
Itatur? Quiatae cullecum rem ent aut odis in re eossequodi nonsequ idebis ne sapicia is sinveli squiatum, core et que aut hariosam ex eat.
42-
43-
## Blockquotes
44-
45-
The blockquote element represents content that is quoted from another source, optionally with a citation which must be within a `footer` or `cite` element, and optionally with in-line changes such as annotations and abbreviations.
46-
47-
#### Blockquote without attribution
48-
49-
> Tiam, ad mint andaepu dandae nostion secatur sequo quae.
50-
> **Note** that you can use *Markdown syntax* within a blockquote.
51-
52-
#### Blockquote with attribution
53-
54-
> Don't communicate by sharing memory, share memory by communicating.<br>
55-
> — <cite>Rob Pike[^1]</cite>
56-
57-
[^1]: The above quote is excerpted from Rob Pike's [talk](https://www.youtube.com/watch?v=PAAkCSZUG1c) during Gopherfest, November 18, 2015.
58-
59-
## Tables
60-
61-
Tables aren't part of the core Markdown spec, but Hugo supports supports them out-of-the-box.
62-
63-
Name | Age
64-
--------|------
65-
Bob | 27
66-
Alice | 23
67-
68-
#### Inline Markdown within tables
69-
70-
| Italics | Bold | Code |
71-
| -------- | -------- | ------ |
72-
| *italics* | **bold** | `code` |
73-
74-
## Code Blocks
75-
76-
#### Code block with backticks
77-
78-
```html
79-
<!doctype html>
80-
<html lang="en">
81-
<head>
82-
<meta charset="utf-8">
83-
<title>Example HTML5 Document</title>
84-
</head>
85-
<body>
86-
<p>Test</p>
87-
</body>
88-
</html>
89-
```
90-
91-
#### Code block indented with four spaces
92-
93-
<!doctype html>
94-
<html lang="en">
95-
<head>
96-
<meta charset="utf-8">
97-
<title>Example HTML5 Document</title>
98-
</head>
99-
<body>
100-
<p>Test</p>
101-
</body>
102-
</html>
103-
104-
#### Code block with Hugo's internal highlight shortcode
105-
{{< highlight html >}}
106-
<!doctype html>
107-
<html lang="en">
108-
<head>
109-
<meta charset="utf-8">
110-
<title>Example HTML5 Document</title>
111-
</head>
112-
<body>
113-
<p>Test</p>
114-
</body>
115-
</html>
116-
{{< /highlight >}}
117-
118-
## List Types
119-
120-
#### Ordered List
121-
122-
1. First item
123-
2. Second item
124-
3. Third item
125-
126-
#### Unordered List
127-
128-
* List item
129-
* Another item
130-
* And another item
131-
132-
#### Nested list
133-
134-
* Fruit
135-
* Apple
136-
* Orange
137-
* Banana
138-
* Dairy
139-
* Milk
140-
* Cheese
141-
142-
## Other Elements — abbr, sub, sup, kbd, mark
143-
144-
<abbr title="Graphics Interchange Format">GIF</abbr> is a bitmap image format.
145-
146-
H<sub>2</sub>O
147-
148-
X<sup>n</sup> + Y<sup>n</sup> = Z<sup>n</sup>
149-
150-
Press <kbd><kbd>CTRL</kbd>+<kbd>ALT</kbd>+<kbd>Delete</kbd></kbd> to end the session.
151-
152-
Most <mark>salamanders</mark> are nocturnal, and hunt for insects, worms, and other small creatures.
Loading

0 commit comments

Comments
 (0)