mirror of
https://github.com/SpudGunMan/meshing-around.git
synced 2026-07-06 01:41:45 +02:00
cleanup
fixes per https://github.com/SpudGunMan/meshing-around/issues/192
This commit is contained in:
@@ -144,4 +144,3 @@ def tell_joke(nodeID=0):
|
||||
except Exception as e:
|
||||
return lameJokes[nodeID % len(lameJokes)]
|
||||
|
||||
|
||||
|
||||
+1
-1
@@ -227,7 +227,7 @@ try:
|
||||
ollamaHostName = config['general'].get('ollamaHostName', 'http://localhost:11434') # default localhost
|
||||
llmModel = config['general'].get('ollamaModel', 'gemma3:270m') # default gemma3:270m
|
||||
rawLLMQuery = config['general'].getboolean('rawLLMQuery', True) #default True
|
||||
llmReplyToNonCommands = config['general'].getboolean('llmReplyToNonCommands', True)
|
||||
llmReplyToNonCommands = config['general'].getboolean('llmReplyToNonCommands', True) # default True
|
||||
dont_retry_disconnect = config['general'].getboolean('dont_retry_disconnect', False) # default False, retry on disconnect
|
||||
favoriteNodeList = config['general'].get('favoriteNodeList', '').split(',')
|
||||
enableEcho = config['general'].getboolean('enableEcho', False) # default False
|
||||
|
||||
+8
-2
@@ -65,7 +65,7 @@ if whoami_enabled:
|
||||
if solar_conditions_enabled:
|
||||
from modules.space import * # from the spudgunman/meshing-around repo
|
||||
trap_list = trap_list + trap_list_solarconditions # items hfcond, solar, sun, moon
|
||||
help_message = help_message + ", sun, hfcond, solar, moon, howtall"
|
||||
help_message = help_message + ", sun, hfcond, solar, moon"
|
||||
if n2yoAPIKey != "":
|
||||
help_message = help_message + ", satpass"
|
||||
else:
|
||||
@@ -80,7 +80,7 @@ if enableCmdHistory:
|
||||
if location_enabled:
|
||||
from modules.locationdata import * # from the spudgunman/meshing-around repo
|
||||
trap_list = trap_list + trap_list_location
|
||||
help_message = help_message + ", whereami, wx, rlist, howfar"
|
||||
help_message = help_message + ", whereami, wx, howfar"
|
||||
if enableGBalerts and not enableDEalerts:
|
||||
from modules.globalalert import * # from the spudgunman/meshing-around repo
|
||||
logger.warning(f"System: GB Alerts not functional at this time need to find a source API")
|
||||
@@ -103,6 +103,12 @@ if location_enabled:
|
||||
if riverListDefault != ['']:
|
||||
help_message = help_message + ", riverflow"
|
||||
|
||||
if repeater_lookup != False:
|
||||
help_message = help_message + ", rlist"
|
||||
|
||||
if solar_conditions_enabled:
|
||||
help_message = help_message + ", howtall"
|
||||
|
||||
# NOAA alerts needs location module
|
||||
if wxAlertBroadcastEnabled or emergencyAlertBrodcastEnabled or volcanoAlertBroadcastEnabled:
|
||||
from modules.locationdata import * # from the spudgunman/meshing-around repo
|
||||
|
||||
Reference in New Issue
Block a user