dot dot dotfiles
1#!/usr/bin/bash
2
3hey_gpt() {
4 DATA='{ "model": "gpt-3.5-turbo", "messages": [{"role": "user", "content": "'$1'"}], "temperature": 0.7 }'
5 curl https://api.openai.com/v1/chat/completions -s \
6 -H "Content-Type: application/json" \
7 -H "Authorization: Bearer $OPENAI_API_KEY" \
8 -d "$DATA" | jq -r '.choices[0].message.content'
9}
10
11hey_gpt "$1"