generated from coulomb/repo-seed
13 lines
340 B
Python
13 lines
340 B
Python
"""can-you-assist (cya)
|
|
|
|
Console-native LLM assistant for practical local work.
|
|
|
|
See workplans/CYA-WP-0001 for the full task breakdown and integration boundaries.
|
|
"""
|
|
|
|
try:
|
|
from ._version import __version__
|
|
except ImportError:
|
|
# Fallback for editable installs without setuptools_scm having run yet
|
|
__version__ = "0.0.0+unknown"
|