From f4edc302a8535f81cba7417abc2b5a0d5eea1e20 Mon Sep 17 00:00:00 2001 From: Matt Williams Date: Tue, 14 Nov 2023 10:31:22 -0800 Subject: [PATCH] Update examples/python-loganalysis/readme.md Co-authored-by: Bruce MacDonald --- examples/python-loganalysis/readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/python-loganalysis/readme.md b/examples/python-loganalysis/readme.md index 58180444..fbfb89a1 100644 --- a/examples/python-loganalysis/readme.md +++ b/examples/python-loganalysis/readme.md @@ -45,4 +45,4 @@ for line in response.iter_lines(): There is a lot more that can be done here. This is a simple way to detect errors, looking for the word error. Perhaps it would be interesting to find anomalous activity in the logs. It could be interesting to create embeddings for each line and compare them, looking for similar lines. Or look into applying Levenshtein Distance algorithms to find similar lines to help identify the anomalous lines. -Also try different models and different prompts to analyze the data. You could consider adding RAG to this to help understand newer log formats. +Also try different models and different prompts to analyze the data. You could consider adding retrieval augmented generation (RAG) to this to help understand newer log formats.