1
0

Random niceties to make prompting easier

This commit is contained in:
2024-10-09 12:10:30 -07:00
parent c7c903ec61
commit bdee423d27
3 changed files with 24 additions and 3 deletions

10
go
View File

@@ -17,6 +17,16 @@
docker build -t itbaas .
}
message() {
_help-line "Send message to llm in docker"
docker exec breach curl -sX post localhost:5000/prompt-in-context -d "$@"
}
reset() {
_help-line "Reset the llm message history"
docker exec breach curl -s localhost:5000/reset
}
extract_assets() {
7z x -aos -o.generated/game/ assets/Into_the_Breach_Linux.1.2.23.zip
}