From f1826554894aa5cf599deba028cf4ab5877b3a07 Mon Sep 17 00:00:00 2001 From: Scott Behrens Date: Wed, 31 Jan 2024 09:47:43 -0800 Subject: [PATCH] provides a general client where one can specify the pattern name to call openai --- infrastructure/client/general_client.py | 42 +++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 infrastructure/client/general_client.py diff --git a/infrastructure/client/general_client.py b/infrastructure/client/general_client.py new file mode 100644 index 0000000..00dd538 --- /dev/null +++ b/infrastructure/client/general_client.py @@ -0,0 +1,42 @@ +#!/usr/bin/python3 + +import argparse +import json +import requests +import sys + +def send_request(prompt, pattern): + """sends a pattern and the associated prompt to our general api + + Args: + prompt (string): stdin string of context we will send to openai + pattern (string): list a pattern you would like the general client to run + """ + + url = "http://localhost:13337/general" + headers = { + "Content-Type": "application/json", + "Authorization": "b246f5c2-6b45-492a-a230-52f2d04b3dc0", + } + data = json.dumps({"input": prompt, "pattern": pattern}) + response = requests.post(url, headers=headers, data=data) + + try: + print(response.json()["response"]) + except KeyError: + print("Error: The API response does not contain a 'response' key.") + print("Received response:", response.json()) + +if __name__ == "__main__": + parser = argparse.ArgumentParser(description='Send a request to the API.') + parser.add_argument('-p', '--pattern', default='extract_wisdom', help='Specify the pattern to use') + parser.add_argument('prompt', nargs='?', default=sys.stdin, help='The prompt to send to the API') + + args = parser.parse_args() + + if args.prompt == sys.stdin: + prompt = sys.stdin.read() + else: + prompt = args.prompt + + send_request(prompt, args.pattern)