MCPcopy Create free account
hub / github.com/nlweb-ai/NLWeb / is_development_mode

Method is_development_mode

AskAgent/python/core/config.py:587–589  ·  view source on GitHub ↗

Returns True if the system is running in development mode.

(self)

Source from the content-addressed store, hash-verified

585 return getattr(self, 'mode', 'production').lower() == 'production'
586
587 def is_development_mode(self) -> bool:
588 """Returns True if the system is running in development mode."""
589 return getattr(self, 'mode', 'production').lower() == 'development'
590
591 def is_testing_mode(self) -> bool:
592 """Returns True if the system is running in testing mode."""

Callers 4

ask_llmFunction · 0.80
__init__Method · 0.80
get_embeddingFunction · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected