move secrets to env variables add palworld commands
All checks were successful
Build and Publish Docker Image / build-and-push (push) Successful in 37s

This commit is contained in:
Garret Patti
2026-07-10 19:26:26 -04:00
parent 102fb59d84
commit 048005f0a8
11 changed files with 401 additions and 7 deletions

18
appsettings.json Normal file
View File

@@ -0,0 +1,18 @@
{
"Llm": {
"Endpoint": "http://compute.local:8001/v1/chat/completions",
"Model": "Qwen3.6-35B-A3B",
"MaxTokens": 100024,
"Temperature": 0.7
},
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft": "Warning"
}
},
"Palworld": {
"BaseUrl": "http://compute.local:8212",
"Username": "admin"
}
}