-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrun_queries.py
48 lines (37 loc) · 1.46 KB
/
run_queries.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
import openai
import argparse
import os
from query.flow_validate_query import automated_mode as v_flow
from query.pipeline_query import automated_mode as p_flow
from query.sensor_state_query import automated_mode as s_flow
if __name__ == "__main__":
parser = argparse.ArgumentParser()
parser.add_argument("--exp", help="Flow validation, sensor state, or pipeline queries", default="flow")
args = parser.parse_args()
# Get our API key
with open("API_KEY", "r") as f:
openai.api_key = f.read().strip()
# Now, check what type of query we are issuing:
if args.exp == "flow":
# Open a log file
filename = "hipaa_3rdparty"
logfilepath = "results/" + filename + "_" + str(len(os.listdir("results"))) + ".log"
logfile = open(logfilepath, "w")
# Run queries
v_flow(logfile, "prompts", filename)
logfile.close()
elif args.exp == "pipeline":
# Open a log file
filename = "query_privacy_pipeline"
logfilepath = "results/" + filename + "_" + str(len(os.listdir("results"))) + ".log"
logfile = open(logfilepath, "w")
# Run queries
p_flow(logfile, "prompts", filename)
logfile.close()
elif args.exp == "state":
# Open a log file
filename = "query_privacy_states"
# Run queries
s_flow("prompts", filename)
else:
print("Invalid option - choose from 'flow', 'pipeline', or 'state'")