diff --git a/hw4/.env.example b/hw4/.env.example new file mode 100644 index 0000000..da67259 --- /dev/null +++ b/hw4/.env.example @@ -0,0 +1 @@ +OPENAI_API_KEY="" \ No newline at end of file diff --git a/hw4/README.md b/hw4/README.md index 40fc05e..fc55f30 100644 --- a/hw4/README.md +++ b/hw4/README.md @@ -1,4 +1,4 @@ -###### David Westgate 26 April 2024 +###### David Westgate 10 May 2024 ## HW4 for gensec This application is a Langchain agent which intends to be helpful at de-obfuscating javascript code. On the web, obfuscated javascript code is common to minimize javascript source file size, before they are sent over the network to the client and also to limit the ability to reverse engineer the function of javascript running on the client from enterprise web applications. The application is programming to ingest javascript source files both from the local machine, as well as from URLs. @@ -7,6 +7,7 @@ Install python3, then ``` cd hw4 pip install -r requirnments.txt +cp .env.example .env #fill in env file with key python3 app.py ```