Kumi
11f11a369c
Upgraded bot features to interpret and respond to text, image, and voice prompts in Matrix rooms using advanced OpenAI models, including vision preview and text-to-speech. Streamlined installation process with bot now available via PyPI, simplifying setup and extending accessibility. Eliminated planned features section, signaling a shift towards realized functionalities over prospective development. Configured Pantalaimon as an optional dependency to enable bot use in E2EE rooms while maintaining compatibility with non-encrypted rooms. Removed trackingmore dependency, indicating a refinement in the feature set towards core functionalities. Version bumped to 0.3.0, signifying major enhancements over previous iteration.
21 lines
No EOL
382 B
YAML
21 lines
No EOL
382 B
YAML
image: python:3.10
|
|
|
|
stages:
|
|
- test
|
|
- publish
|
|
|
|
before_script:
|
|
- python -V
|
|
- python -m venv venv
|
|
- source venv/bin/activate
|
|
- pip install -U pip
|
|
- pip install .[all]
|
|
|
|
publish:
|
|
stage: publish
|
|
script:
|
|
- pip install -U hatchling twine build
|
|
- python -m build .
|
|
- python -m twine upload --username __token__ --password ${PYPI_TOKEN} dist/*
|
|
only:
|
|
- tags |