You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
1.3 KiB
42 lines
1.3 KiB
#!/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)
|
|
|