Skip to content

Commit

Permalink
root: releasing version v0.0.1
Browse files Browse the repository at this point in the history
This patch releases version v0.0.1.

Signed-off-by: (Holloway) Chew, Kean Ho <[email protected]>
  • Loading branch information
hollowaykeanho committed Mar 31, 2024
1 parent b8fc6d7 commit 257aea3
Show file tree
Hide file tree
Showing 7 changed files with 66 additions and 18 deletions.
46 changes: 46 additions & 0 deletions CITATION.cff
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
# WARNING: auto-generated by AutomataCI

cff-version: "1.2.0"
type: "software"
date-released: "2024-04-01"
title: "Holloway's 'Hi AI!"
version: "0.0.1"
license: "Apache-2.0"
repository: "https://github.com/ChewKeanHo/APP_hiAI"
repository-code: "https://github.com/ChewKeanHo/APP_hiAI"
repository-artifact: "https://github.com/ChewKeanHo/APP_hiAI/wiki/"
url: "https://www.hollowaykeanho.com/"
contact:
- affiliation: "(Holloway) Chew, Kean Ho"
email: "[email protected]"
website: "https://www.hollowaykeanho.com/"
abstract: |-
Since Google made its Google's Gemini AI Advanced Ultra for 2
months trial with API supports for developer, it's better not to
waste the opportunity. With REST API readily available, it's very
easy to to turn a dumb computer with online access into an AI
supported device via large language model (LLM) prompt.
This project is to make LLM AI prompt available for all the current
computing devices via interacting with API so that one does not
need to overly dependent on a graphical user interface alone.
When operating in Sandbox mode, this app requires:
(1) Network access to communicate with service providers' API.
(2) Filesystem access for 'text2image' or 'text2video' queries
for saving the media output files.
message: |-
Please cite and reference this repository accordingly.
authors:
- given-names: "Kean Ho"
family-names: "Chew"
email: "[email protected]"
affiliation: "Independent"
orcid: "https://orcid.org/0000-0003-4202-4863"
identifiers:
- type: doi
value: "10.0000/publisher.000000"
description: "Software"
keywords:
- "ai application"
- "prompt"
2 changes: 1 addition & 1 deletion CONFIG.toml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ PROJECT_PITCH = "Turn every computer's terminal into an interactive AI prompt."
# like '0.0.1~rc1' instead of dashes (-). Some distribution ecosystem have
# strict and reserved rules for version sorting using dashes so tlide will be
# the best choice.
PROJECT_VERSION = "0.0.1"
PROJECT_VERSION = "0.0.2"


# PROJECT_CADENCE
Expand Down
20 changes: 10 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,30 +67,30 @@ works.



### Docker / Podman
### Homebrew (MacOS)

Please refer to [GitHub Packages Section](https://github.com/ChewKeanHo/APP_hiAI/pkgs/container/hollowayhiai).
*Coming Soon*



### Plain Script / Windows
### Chocolatey (Windows)

Use the `tar.gz` package or `zip` package on Windows OS.
*Coming Soon*

Note that the command to use is: `hollowayhiai_[OS]-[ARCH].sh.ps1` instead of
the `hollowayHIAI` sine you're executing directly from the script.


### Docker / Podman

### Homebrew
Please refer to [GitHub Packages Section](https://github.com/ChewKeanHo/APP_hiAI/pkgs/container/hollowayhiai).

*Coming Soon*


### Plain Script

### Chocolatey (Windows)
Use the `tar.gz` package or `zip` package on Windows OS.

*Coming Soon*
Note that the command to use is: `hollowayhiai_[OS]-[ARCH].sh.ps1` instead of
the `hollowayHIAI` sine you're executing directly from the script.



Expand Down
7 changes: 3 additions & 4 deletions automataCI/services/publishers/homebrew.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -64,10 +64,9 @@ function HOMEBREW-Publish {


# execute
$null = FS-Make-Directory "${___destination}"
$___process = FS-Copy-File `
"${___target}" `
"${___destination}\$(Split-Path -Leaf -Path "${___target}")"
$___dest = "${___destination}\$($___target.Substring(0,1))\$(FS-Get-File "${___target}")"
$null = FS-Make-Housing-Directory "${___dest}"
$___process = FS-Copy-File "${___target}" "${___dest}"
if ($___process -ne 0) {
return 1
}
Expand Down
5 changes: 3 additions & 2 deletions automataCI/services/publishers/homebrew.sh
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,9 @@ HOMEBREW_Publish() {


# execute
FS_Make_Housing_Directory "$2"
FS_Copy_File "$1" "$2"
___dest="${2}/$(printf -- %.1s "$1")/$(FS_Get_File "$1")"
FS_Make_Housing_Directory "$___dest"
FS_Copy_File "$1" "$___dest"
if [ $? -ne 0 ]; then
return 1
fi
Expand Down
1 change: 1 addition & 0 deletions src/changelog/data/latest → src/changelog/data/0.0.1
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
root: updated Package CI job for the application
automataCI: performed early patched to archive CI job algorithm
src: implemented polygot script build alogrithm
CONFIG.toml: updated URI to match upstream repository address
Expand Down
3 changes: 2 additions & 1 deletion src/changelog/deb/latest → src/changelog/deb/0.0.1
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
hollowayhiai (0.0.1) stable; urgency=low

* root: updated Package CI job for the application
* automataCI: performed early patched to archive CI job algorithm
* src: implemented polygot script build alogrithm
* CONFIG.toml: updated URI to match upstream repository address
Expand All @@ -9,4 +10,4 @@ hollowayhiai (0.0.1) stable; urgency=low
* README.md: updated with how-tos guides
* src: developed first prototype

-- (Holloway) Chew, Kean Ho <[email protected]> Sun, 31 Mar 2024 17:47:26 +0800
-- (Holloway) Chew, Kean Ho <[email protected]> Mon, 01 Apr 2024 06:25:39 +0800

0 comments on commit 257aea3

Please sign in to comment.