This is an automated email from the ASF dual-hosted git repository.
davsclaus pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-website.git
The following commit(s) were added to refs/heads/main by this push:
new 1e621246 blog: Simple LLM Integration with Camel OpenAI Component
1e621246 is described below
commit 1e6212464f1d50fd8fdbf233c5f2a16749c55790
Author: Claus Ibsen <[email protected]>
AuthorDate: Wed Jan 14 10:12:18 2026 +0100
blog: Simple LLM Integration with Camel OpenAI Component
---
content/blog/2026/01/camel-openai/index.md | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/content/blog/2026/01/camel-openai/index.md
b/content/blog/2026/01/camel-openai/index.md
index 8a3bf501..5c5b95d9 100644
--- a/content/blog/2026/01/camel-openai/index.md
+++ b/content/blog/2026/01/camel-openai/index.md
@@ -91,7 +91,7 @@ format.
parameters:
temperature: 0.15
jsonSchema: "resource:classpath:pii.schema.json"
- systemMessage: You are a strict data privacy compliance
assistant. Your goal is to analyze the user input, redact all PII, and return
the results in the specified JSON format.
+ systemMessage: "You are a strict data privacy compliance
assistant. Your goal is to analyze the user input, redact all PII, and return
the results in the specified JSON format. RULES: 1. ONLY redact specific
identifiers, 2. DO NOT redact generic titles, roles, or common nouns unless
they are part of a proper noun. 3. Preserve the grammatical structure of the
sentence."
- route:
from:
uri: stream
@@ -218,7 +218,7 @@ echo 'Customer John Doe (email: [email protected])
requested a refund for ord
"action": "REDACTED"
}
],
- "sanitizedText": "Customer [REDACTED] ([REDACTED]) requested a refund for
order #998877."
+ "sanitizedText": "Customer [REDACTED] (email: [REDACTED]) requested a refund
for order #998877."
}
```