Closed Jiayou-Chao closed 1 month ago
That's why shell aliases exist
Here are some examples that I put in my .bash_aliases
file:
(I used DDG for the supposed additional privacy layer)
# AI Chat Bots
function q() {
tgpt --provider duckduckgo --model mistralai/Mixtral-8x7B-Instruct-v0.1 "${*@Q}"
}
function meta() {
tgpt --provider duckduckgo --model meta-llama/Meta-Llama-3.1-70B-Instruct-Turbo "${*@Q}"
}
function openai() {
tgpt --provider duckduckgo "${*@Q}"
}
It's very inconvenient and impractical to set the provider configurations every time. I hope there is some guidance on how to save the configurations locally.