From efba139c9250218a334d064fd06cceb8e8afbc60 Mon Sep 17 00:00:00 2001 From: morpheuslord <70637311+morpheuslord@users.noreply.github.com> Date: Wed, 30 Aug 2023 22:28:17 +0530 Subject: [PATCH] Update README.md --- README.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index e4e67a3..bd93b42 100644 --- a/README.md +++ b/README.md @@ -50,11 +50,13 @@ gui.application() ## Usage CLI - First Change the "OPENAI_API_KEY", "GEOIP_API_KEY" and "BARD_API_KEY" part of the code with OpenAI api key and the IPGeolocation API key in the `.env` file - +- For the `llama-api` option or specific the llama runpod serverless endpoint deployment option requires you to enter the `serverless endpoint ID` from runpod and also your `RUNPOD API KEY` ```python GEOIP_API_KEY = '' OPENAI_API_KEY = '' BARD_API_KEY = '' +RUNPOD_ENDPOINT_ID = '' +RUNPOD_API_KEY = '' ``` - second install the packages @@ -94,10 +96,10 @@ python gpt_vuln.py --target --attack sub --list python gpt_vuln.py --target --attack geo # Specify the AI to be used for nmap -python gpt_vuln.py --target --attack nmap --profile <1-5> --ai llama /bard / openai +python gpt_vuln.py --target --attack nmap --profile <1-5> --ai llama /llama-api /bard / openai # Specify the AI to be used for dns -python gpt_vuln.py --target --attack dns --ai bard / openai +python gpt_vuln.py --target --attack dns --ai llama /llama-api /bard / openai # Interactive step by step cli interface python gpt_vuln.py --menu True