Skip to content

Commit

Permalink
++Version
Browse files Browse the repository at this point in the history
  • Loading branch information
yorevs committed Nov 6, 2024
1 parent 176b9b1 commit bb1dc7a
Show file tree
Hide file tree
Showing 39 changed files with 262 additions and 204 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
[![Terminal](https://badgen.net/badge/icon/terminal?icon=terminal&label)](https://github.com/yorevs/homesetup)
[![License](https://badgen.net/badge/license/MIT/gray)](LICENSE.md)
[![Release](https://badgen.net/badge/release/v1.1.0/gray)](docs/CHANGELOG.md#unreleased)
[![Release](https://badgen.net/badge/release/v1.2.1/gray)](docs/CHANGELOG.md#unreleased)
[![Donate](https://badgen.net/badge/paypal/donate/yellow)](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=J5CDEFLF6M3H4)
[![build-and-test](https://github.com/yorevs/askai/actions/workflows/build-and-test.yml/badge.svg)](https://github.com/yorevs/askai/actions/workflows/build-and-test.yml)

Expand Down
2 changes: 1 addition & 1 deletion bumpver.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpver]
current_version = "1.1.0"
current_version = "1.2.1"
version_pattern = "MAJOR.MINOR.PATCH"
commit_message = "++version {old_version} -> {new_version}"
commit = false
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ author = <B>H</B>ugo <B>S</B>aporetti <B>J</B>unior
mailTo = yorevs@hotmail.com
siteUrl = https://github.com/yorevs/askai
app_name = hspylib-askai
app_version = 1.1.0
app_version = 1.2.1

# Build Tools
buildTools = setuptools, wheel, build, twine, bumpver, pipenv, isort, black, mypy, pylint, pdoc, pytest
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "hspylib-askai"
version = "1.1.0"
version = "1.2.1"
description = "HomeSetup - AskAI"
authors = ["Hugo Saporetti Junior <yorevs@hotmail.com>"]
license = "MIT"
Expand Down
12 changes: 9 additions & 3 deletions src/demo/__init__.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,15 @@
# _*_ coding: utf-8 _*_
#
# hspylib-askai v1.1.0
# hspylib-askai v1.2.1
#
# Package: demo
"""Package initialization."""

__all__ = ["components", "devel", "features", "others", "utils"]
__version__ = "1.1.0"
__all__ = [
'components',
'devel',
'features',
'others',
'utils'
]
__version__ = '1.2.1'
18 changes: 9 additions & 9 deletions src/demo/components/__init__.py
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
# _*_ coding: utf-8 _*_
#
# hspylib-askai v1.1.0
# hspylib-askai v1.2.1
#
# Package: demo.components
"""Package initialization."""

__all__ = [
"camera_demo",
"internet_demo",
"scheduler_demo",
"summarizer_demo",
"text_streamer_demo",
"vision_demo",
"webcam_demo",
'camera_demo',
'internet_demo',
'scheduler_demo',
'summarizer_demo',
'text_streamer_demo',
'vision_demo',
'webcam_demo'
]
__version__ = "1.1.0"
__version__ = '1.2.1'
9 changes: 6 additions & 3 deletions src/demo/devel/__init__.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
# _*_ coding: utf-8 _*_
#
# hspylib-askai v1.1.0
# hspylib-askai v1.2.1
#
# Package: demo.devel
"""Package initialization."""

__all__ = ["google_suggestions", "gpt2_suggester"]
__version__ = "1.1.0"
__all__ = [
'google_suggestions',
'gpt2_suggester'
]
__version__ = '1.2.1'
10 changes: 7 additions & 3 deletions src/demo/features/__init__.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
# _*_ coding: utf-8 _*_
#
# hspylib-askai v1.1.0
# hspylib-askai v1.2.1
#
# Package: demo.features
"""Package initialization."""

__all__ = ["rag", "router_demo", "tools"]
__version__ = "1.1.0"
__all__ = [
'rag',
'router_demo',
'tools'
]
__version__ = '1.2.1'
8 changes: 5 additions & 3 deletions src/demo/features/rag/__init__.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
# _*_ coding: utf-8 _*_
#
# hspylib-askai v1.1.0
# hspylib-askai v1.2.1
#
# Package: demo.features.rag
"""Package initialization."""

__all__ = ["x_refs_demo"]
__version__ = "1.1.0"
__all__ = [
'x_refs_demo'
]
__version__ = '1.2.1'
8 changes: 5 additions & 3 deletions src/demo/features/tools/__init__.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
# _*_ coding: utf-8 _*_
#
# hspylib-askai v1.1.0
# hspylib-askai v1.2.1
#
# Package: demo.features.tools
"""Package initialization."""

__all__ = ["query_output_demo"]
__version__ = "1.1.0"
__all__ = [
'query_output_demo'
]
__version__ = '1.2.1'
18 changes: 9 additions & 9 deletions src/demo/others/__init__.py
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
# _*_ coding: utf-8 _*_
#
# hspylib-askai v1.1.0
# hspylib-askai v1.2.1
#
# Package: demo.others
"""Package initialization."""

__all__ = [
"commander_demo",
"deepl_demo",
"screenshot_demo",
"spinner_demo",
"tech_week_demo",
"translate_demo",
"vision_model_demos",
'commander_demo',
'deepl_demo',
'screenshot_demo',
'spinner_demo',
'tech_week_demo',
'translate_demo',
'vision_model_demos'
]
__version__ = "1.1.0"
__version__ = '1.2.1'
2 changes: 1 addition & 1 deletion src/main/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
[![Terminal](https://badgen.net/badge/icon/terminal?icon=terminal&label)](https://github.com/yorevs/homesetup)
[![License](https://badgen.net/badge/license/MIT/gray)](LICENSE.md)
[![Release](https://badgen.net/badge/release/v1.0.20/gray)](docs/CHANGELOG.md#unreleased)
[![Release](https://badgen.net/badge/release/v1.2.0/gray)](docs/CHANGELOG.md#unreleased)
[![Donate](https://badgen.net/badge/paypal/donate/yellow)](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=J5CDEFLF6M3H4)
[![build-and-test](https://github.com/yorevs/askai/actions/workflows/build-and-test.yml/badge.svg)](https://github.com/yorevs/askai/actions/workflows/build-and-test.yml)

Expand Down
8 changes: 5 additions & 3 deletions src/main/__init__.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
# _*_ coding: utf-8 _*_
#
# hspylib-askai v1.1.0
# hspylib-askai v1.2.1
#
# Package: main
"""Package initialization."""

__all__ = ["askai"]
__version__ = "1.1.0"
__all__ = [
'askai'
]
__version__ = '1.2.1'
2 changes: 1 addition & 1 deletion src/main/askai/.version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.1.0
1.2.1
11 changes: 8 additions & 3 deletions src/main/askai/__init__.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,14 @@
# _*_ coding: utf-8 _*_
#
# hspylib-askai v1.1.0
# hspylib-askai v1.2.1
#
# Package: main.askai
"""Package initialization."""

__all__ = ["core", "exception", "language", "tui"]
__version__ = "1.1.0"
__all__ = [
'core',
'exception',
'language',
'tui'
]
__version__ = '1.2.1'
34 changes: 17 additions & 17 deletions src/main/askai/core/__init__.py
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
# _*_ coding: utf-8 _*_
#
# hspylib-askai v1.1.0
# hspylib-askai v1.2.1
#
# Package: main.askai.core
"""Package initialization."""

__all__ = [
"askai",
"askai_cli",
"askai_configs",
"askai_events",
"askai_messages",
"askai_prompt",
"askai_settings",
"commander",
"component",
"engine",
"enums",
"model",
"processors",
"router",
"support",
'askai',
'askai_cli',
'askai_configs',
'askai_events',
'askai_messages',
'askai_prompt',
'askai_settings',
'commander',
'component',
'engine',
'enums',
'model',
'processors',
'router',
'support'
]
__version__ = "1.1.0"
__version__ = '1.2.1'
9 changes: 6 additions & 3 deletions src/main/askai/core/commander/__init__.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
# _*_ coding: utf-8 _*_
#
# hspylib-askai v1.1.0
# hspylib-askai v1.2.1
#
# Package: main.askai.core.commander
"""Package initialization."""

__all__ = ["commander", "commands"]
__version__ = "1.1.0"
__all__ = [
'commander',
'commands'
]
__version__ = '1.2.1'
13 changes: 10 additions & 3 deletions src/main/askai/core/commander/commands/__init__.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,16 @@
# _*_ coding: utf-8 _*_
#
# hspylib-askai v1.1.0
# hspylib-askai v1.2.1
#
# Package: main.askai.core.commander.commands
"""Package initialization."""

__all__ = ["cache_cmd", "camera_cmd", "general_cmd", "history_cmd", "settings_cmd", "tts_stt_cmd"]
__version__ = "1.1.0"
__all__ = [
'cache_cmd',
'camera_cmd',
'general_cmd',
'history_cmd',
'settings_cmd',
'tts_stt_cmd'
]
__version__ = '1.2.1'
26 changes: 13 additions & 13 deletions src/main/askai/core/component/__init__.py
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
# _*_ coding: utf-8 _*_
#
# hspylib-askai v1.1.0
# hspylib-askai v1.2.1
#
# Package: main.askai.core.component
"""Package initialization."""

__all__ = [
"audio_player",
"cache_service",
"camera",
"geo_location",
"image_store",
"internet_service",
"rag_provider",
"recorder",
"scheduler",
"summarizer",
"text_streamer",
'audio_player',
'cache_service',
'camera',
'geo_location',
'image_store',
'internet_service',
'rag_provider',
'recorder',
'scheduler',
'summarizer',
'text_streamer'
]
__version__ = "1.1.0"
__version__ = '1.2.1'
12 changes: 9 additions & 3 deletions src/main/askai/core/engine/__init__.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,15 @@
# _*_ coding: utf-8 _*_
#
# hspylib-askai v1.1.0
# hspylib-askai v1.2.1
#
# Package: main.askai.core.engine
"""Package initialization."""

__all__ = ["ai_engine", "ai_model", "ai_vision", "engine_factory", "openai"]
__version__ = "1.1.0"
__all__ = [
'ai_engine',
'ai_model',
'ai_vision',
'engine_factory',
'openai'
]
__version__ = '1.2.1'
12 changes: 9 additions & 3 deletions src/main/askai/core/engine/openai/__init__.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,15 @@
# _*_ coding: utf-8 _*_
#
# hspylib-askai v1.1.0
# hspylib-askai v1.2.1
#
# Package: main.askai.core.engine.openai
"""Package initialization."""

__all__ = ["openai_configs", "openai_engine", "openai_model", "openai_vision", "temperature"]
__version__ = "1.1.0"
__all__ = [
'openai_configs',
'openai_engine',
'openai_model',
'openai_vision',
'temperature'
]
__version__ = '1.2.1'
12 changes: 9 additions & 3 deletions src/main/askai/core/enums/__init__.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,15 @@
# _*_ coding: utf-8 _*_
#
# hspylib-askai v1.1.0
# hspylib-askai v1.2.1
#
# Package: main.askai.core.enums
"""Package initialization."""

__all__ = ["acc_color", "response_model", "router_mode", "run_modes", "verbosity"]
__version__ = "1.1.0"
__all__ = [
'acc_color',
'response_model',
'router_mode',
'run_modes',
'verbosity'
]
__version__ = '1.2.1'
Loading

0 comments on commit bb1dc7a

Please sign in to comment.