Skip to content

Commit 31e2c6a

Browse files
committed
feat(pyperclip_client): print API response
1 parent 84cbe58 commit 31e2c6a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

scripts/pyperclip_client/pyperclip_client.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,5 @@ def call_clipboard_api_with_messages(messages, model=None):
3030
args = parser.parse_args()
3131
prompt = " ".join(args.prompt)
3232
model = MODEL_MAPPING[args.model]
33-
call_pyperclip_api(prompt, model)
33+
response = call_pyperclip_api(prompt, model)
34+
print(response)

0 commit comments

Comments
 (0)