Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[pull] master from Upsonic:master #18

Merged
merged 52 commits into from
Dec 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
52 commits
Select commit Hold shift + click to select a range
59fd6df
feat: Added azureai
onuratakan Nov 29, 2024
52da706
feat: Added kot db
onuratakan Nov 29, 2024
5a2668e
feat: Added api version for azure models
onuratakan Nov 29, 2024
5644c3f
fix: Resolved line to right problem
onuratakan Nov 29, 2024
0fee393
feat: Added shift enter to move new line
onuratakan Nov 29, 2024
9eabb2a
fix: Added compability with copy pasted texts
onuratakan Nov 29, 2024
d4dcef7
feat: Added azureai models api
onuratakan Nov 29, 2024
fc8c4db
Merge pull request #229 from Upsonic/reborn
onuratakan Nov 29, 2024
236833a
Changed version number with v0.23.0
Nov 29, 2024
dd17518
fix: Removed build exe and dmg
onuratakan Nov 29, 2024
2efb42e
Changed version number with v0.23.1
Nov 29, 2024
06215e4
fix: Removed fixed version for pyqt5
onuratakan Nov 29, 2024
2bcceb7
Changed version number with v0.23.2
Nov 29, 2024
f9e516a
fix: Removed 's'
onuratakan Nov 29, 2024
3f5791e
fix: Resolved dependency
onuratakan Nov 29, 2024
3f0706c
Changed version number with v0.23.3
Nov 29, 2024
756eb58
fix: Resolved kot version
onuratakan Nov 29, 2024
08fa386
Changed version number with v0.23.4
Nov 29, 2024
753f504
fix: Resolved non-mic systems
onuratakan Nov 29, 2024
28af408
Changed version number with v0.23.5
Nov 29, 2024
539a35b
feat: Added remote api_version functions and apis
onuratakan Nov 29, 2024
1f410ce
fix: Resolved get_azureai_models overwriting
onuratakan Nov 29, 2024
7a0d9f7
fix: Resolved display tools and azureai releation
onuratakan Nov 30, 2024
8fb0906
fix: Handle empty response in assistant function
onuratakan Nov 30, 2024
e3973f3
feat: Add mouse scroll up and down API endpoints
onuratakan Nov 30, 2024
7bf527d
fix: Improve input handling and response validation in the assistant …
onuratakan Nov 30, 2024
8ff1ed5
feat: Add just_screenshot option to assistant function for screenshot…
onuratakan Nov 30, 2024
de0d054
feat: Update requirements to include opencv-python for display functi…
onuratakan Nov 30, 2024
e11c3f0
Changed version number with v0.23.6
Nov 30, 2024
cdb8823
fix: Change API server binding from localhost to 0.0.0.0 for external…
onuratakan Nov 30, 2024
aa635a7
Changed version number with v0.23.7
Nov 30, 2024
0d33558
fix: Add error handling to click sound initialization in the assistant
onuratakan Nov 30, 2024
ce4e491
Changed version number with v0.23.8
Nov 30, 2024
d4b06d7
refactor: Move the_input_box_pre to a new module and update imports
onuratakan Dec 1, 2024
5314791
fix: Update data key in save_model_settings method to model_settings
onuratakan Dec 1, 2024
9d683b7
Changed version number with v0.23.9
Dec 1, 2024
eeebe2f
refactor: Move PyQt5 imports inside the start function for better enc…
onuratakan Dec 1, 2024
4ebedeb
Changed version number with v0.23.10
Dec 1, 2024
7e1901a
refactor: Move upsonic import inside the the_upsonic function for bet…
onuratakan Dec 1, 2024
3088656
fix: Add try-except block for conditional imports in __init__.py
onuratakan Dec 1, 2024
bfcbd6d
Changed version number with v0.23.11
Dec 1, 2024
7ec6436
fix: Change exception to print statement for server status check in R…
onuratakan Dec 2, 2024
e25d3ae
Changed version number with v0.23.12
Dec 2, 2024
0cbf5f8
fix: Update import paths for the_input_box in record.py to ensure cor…
onuratakan Dec 2, 2024
0574cff
Changed version number with v0.23.13
Dec 2, 2024
fa511c5
fix: Remove base_url parameter from model configuration in get_model …
onuratakan Dec 2, 2024
4c89b3c
Changed version number with v0.23.14
Dec 2, 2024
d01eb8e
fix: Simplify get_client function by removing base_url parameter
onuratakan Dec 2, 2024
34becac
Changed version number with v0.23.15
Dec 2, 2024
26a1ba4
feat: Add extract_possible_coordinates_of_text function to identify t…
onuratakan Dec 3, 2024
87f99f4
Changed version number with v0.23.16
Dec 3, 2024
492aadf
New GCA in here. (#231)
onuratakan Dec 5, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
85 changes: 1 addition & 84 deletions .github/workflows/release_generation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,58 +11,10 @@ permissions:
contents: write

jobs:
build_dmg:
runs-on: macos-latest

steps:
- name: Checkout repository
uses: actions/checkout@v2

- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.10'

- name: Install dependencies
run: |
python -m pip install --upgrade pip
- name: Build DMG
run: |
chmod +x build_scripts/openai/macos_build.sh
./build_scripts/openai/macos_build.sh
- name: Upload artifact
uses: actions/upload-artifact@v2
with:
name: gpt-computer-assistant-openai-dmg
path: dist/*.dmg

build_exe:
runs-on: windows-latest

steps:
- name: Checkout repository
uses: actions/checkout@v2

- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
cache: 'pip' # caching pip dependencies

- name: Install dependencies
run: |
python -m pip install --upgrade pip
- name: Build EXE
run: |
sh build_scripts/openai/windows_build.sh
- name: Upload artifact
uses: actions/upload-artifact@v2
with:
name: gpt-computer-assistant-openai-exe
path: dist/*.exe

release:
needs: [build_dmg, build_exe]

runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
Expand All @@ -79,40 +31,5 @@ jobs:
generateReleaseNotes: true
tag: ${{ steps.tag_extractor.outputs.latest_tag }}

- name: Download DMG Artifact
uses: actions/download-artifact@v2
with:
name: gpt-computer-assistant-openai-dmg
path: dist_dmg

- name: Download EXE Artifact
uses: actions/download-artifact@v2
with:
name: gpt-computer-assistant-openai-exe
path: dist_exe

- name: List DMG Directory
run: ls -la dist_dmg

- name: List EXE Directory
run: ls -la dist_exe

- name: Upload DMG Asset
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: dist_dmg/GPT_Computer_Assistant.dmg
asset_name: gpt-computer-assistant-openai.dmg
asset_content_type: application/octet-stream

- name: Upload EXE Asset
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: dist_exe/GPT_Computer_Assistant.exe
asset_name: gpt-computer-assistant-openai.exe
asset_content_type: application/octet-stream
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
KOT-*

.DS_Store

*.mp3
Expand Down
Loading
Loading