Browse Source

provides a general client where one can specify the pattern name to call openai

pull/15/head
Scott Behrens 1 year ago
parent
commit
f182655489
  1. 42
      infrastructure/client/general_client.py

42
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)
Loading…
Cancel
Save