From fbcf0168f9c90d723c76b67fce379445675eaef2 Mon Sep 17 00:00:00 2001 From: Romain Quinet Date: Sat, 7 Oct 2023 08:50:13 +0200 Subject: [PATCH] update readme --- README.MD | 8 +++++--- main.py | 2 +- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/README.MD b/README.MD index 737f081..a465238 100644 --- a/README.MD +++ b/README.MD @@ -30,8 +30,7 @@ python3 main.py On the first run, it will generate the index. This can take a while, but it will be cached on disk for the next runs. -You can then ask it any questions about Darknet Diaries! Currently, it does hallucinate a lot about episode numbers and titles. Other than that, it's pretty accurate! - +You can then ask it any questions about Darknet Diaries! ## Examples > What is the intro of the podcast? @@ -67,4 +66,7 @@ You can then ask it any questions about Darknet Diaries! Currently, it does hall >> >>One of his memorable stories involves a physical penetration test where he had to break into a former employer's building. He used his knowledge of the building's layout and security mechanisms to gain access, even falling through a ceiling into a server room at one point. >> ->>The episode also covers a project where Jason was tasked with hacking into a large, worldwide bank. His job was to examine the bank's mobile app for any potential security vulnerabilities that could expose customer or sensitive information. The episode provides a detailed look into the world of penetration testing, highlighting the importance of robust security measures in both physical and digital spaces. \ No newline at end of file +>>The episode also covers a project where Jason was tasked with hacking into a large, worldwide bank. His job was to examine the bank's mobile app for any potential security vulnerabilities that could expose customer or sensitive information. The episode provides a detailed look into the world of penetration testing, highlighting the importance of robust security measures in both physical and digital spaces. +> +> How many downloads does this episode have? +>> Episode 130 of Darknet Diaries, titled "JASON'S PEN TEST", has 667,528 downloads. \ No newline at end of file diff --git a/main.py b/main.py index 41f62d6..f52238e 100644 --- a/main.py +++ b/main.py @@ -9,7 +9,7 @@ from llama_index.chat_engine.types import ChatMode import os import re -#set_global_handler("simple") +# set_global_handler("simple") llm = OpenAI(model="gpt-4", temperature=0, max_tokens=256) service_context = ServiceContext.from_defaults(llm=llm)