kubectl cp <pod-name>:<fully-qualified-file-name> /<path-to-your-file>/<file-name> -c <container-name>
- create a chat session with https://chat.openai.com/chat
- paste into the chat this transcript, asking it how could the agent could have done better.
Here is a conversation between a call center agent and a customer transcribed by automatic speech recognition:
"agent - Thank you for calling member services my name is Amber can I have your member ID and Social Security number to validate your . account
customer - , um sure I thought I just put that near IB our system but let me take it up . again
openssl x509 -in certificate.crt -text -noout
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # | |
| # BEGIN all purpose associative array via temp fs | |
| # | |
| prefix=$(basename -- "$0") | |
| mapdir=$(mktemp -dt ${prefix}) | |
| trap 'rm -r ${mapdir}' EXIT | |
| put() { | |
| [ "$#" != 3 ] && exit 1 | |
| mapname=$1; key=$2; value=$3 | |
| [ -d "${mapdir}/${mapname}" ] || mkdir "${mapdir}/${mapname}" |
NewerOlder