Coder Social home page Coder Social logo

aiexe's People

Contributors

benant avatar kstost avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

aiexe's Issues

android termux

안녕하세요
유튜브보고 흥미로워서 방문하였습니다.
제목과 같이 안드로이드 termux용이 있으면 좋을꺼 같단 생각이 드는데....
여유 있으시면 부탁드리겠습니다.
재밌는거 만들어 주셔서 감사합니다.
수고하세요~

Can't update to 1.0.153

Could you check the error message below ?

PS C:\Windows\System32> if (Get-Command npm -ErrorAction SilentlyContinue) { $timestamp = Get-Date -Format "yyyyMMddHHmmss"; $folderName = "aiexe_project$timestamp"; $desktopPath = [System.IO.Path]::Combine([System.Environment]::GetFolderPath('Desktop'), $folderName); New-Item -ItemType Directory -Path $desktopPath -Force; if (Test-Path $desktopPath) { Set-Location -Path $desktopPath; Invoke-WebRequest -Uri "https://github.com/kstost/aiexe/archive/refs/heads/main.zip" -OutFile "aiexe_project.zip" -ErrorAction Stop; if (Test-Path "aiexe_project.zip") { Expand-Archive -Path "aiexe_project.zip" -DestinationPath "."; Set-Location -Path "aiexe-main"; npm i; if ($?) { npm run build; if ($?) { ii "dist\aiexe Setup*.exe" } } } } } else { Write-Output "npm is not installed. Please download and install it from https://nodejs.org." }

Directory: C:\Users\themo\OneDrive\바탕 화면

Mode LastWriteTime Length Name


d---- 2024-05-25 오후 7:37 _aiexe_project_20240525193710
npm WARN deprecated [email protected]: This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.

added 547 packages, and audited 548 packages in 1m

109 packages are looking for funding
run npm fund for details

found 0 vulnerabilities

[email protected] build
cross-env NODE_ENV=production electron-builder

• electron-builder version=24.13.3 os=10.0.22631
• loaded configuration file=package.json ("build" field)
• writing effective config file=dist\builder-effective-config.yaml
• packaging platform=win32 arch=x64 electron=30.0.8 appOutDir=dist\win-unpacked
⨯ cannot execute cause=exit status 1
errorOut=Fatal error: Unable to commit changes

                command='C:\Users\themo\AppData\Local\electron-builder\Cache\winCodeSign\winCodeSign-2.6.0\rcedit-x64.exe' 'C:\Users\themo\OneDrive\바탕 화면\_aiexe_project_20240525193710\aiexe-main\dist\win-unpacked\aiexe.exe' --set-version-string FileDescription aiexe --set-version-string ProductName aiexe --set-version-string LegalCopyright 'Copyright © 2024 Kim seungtae' --set-file-version 1.0.153 --set-product-version 1.0.153.0 --set-version-string InternalName aiexe --set-version-string OriginalFilename '' --set-version-string CompanyName 'Kim seungtae' --set-icon 'C:\Users\themo\OneDrive\바탕 화면\_aiexe_project_20240525193710\aiexe-main\assets\icon.ico'
                workingDir=

• Above command failed, retrying 3 more times
• building target=nsis file=dist\aiexe Setup 1.0.153.exe archs=x64 oneClick=false perMachine=false
• building block map blockMapFile=dist\aiexe Setup 1.0.153.exe.blockmap

PS C:\Users\themo\OneDrive\바탕 화면_aiexe_project_20240525193710\aiexe-main>

API 사용 경제성 개선에 관한 제안

안녕하세요, OpenAI API를 통해서 GPT-4o를 써서 애플리케이션을 이용하고 있는 이용자입니다.
먼저 훌륭한 애플리케이션을 만들어주신것에 대해서 감사를 드립니다.

저는 aiexe가 코드를 짜도록 한 다음, stdout을 통해 일부 정보를 내보냄으로서 AI가 코드 실행상황에 대해서 인지하게 하도록 한 다음, 하나씩 개선하는 전략으로 사용하고 있는데요.
문제는 대량의 stdout이 발생할 경우, 이것을 AI에게 인지시키는 과정에서 많은 비용이 발생한다는 점입니다. 이렇게 대량으로 발생한 stdout은 중복된 오류일 가능성이 높기 때문에 모두 다 보여줄 필요는 없어 보입니다.
이 부분을 개선하려면, 비용적인 문제에서 상대적으로 자유로운 local AI를 통해서 긴 stdout을 조건부로 축약시킬 수 있을 것이고, 다행이고 stdout 출력은 영어이므로 한국어 사용이 자유롭지 않은 각종 AI model이 이 과정에서 다양하게 사용될 수 있습니다.

이것은 잠재적으로 유료 API를 경제적으로 사용할 수 있게 해주므로 여러 파이프라인에서 유용할 것으로 기대됩니다.
늘 감사합니다.

P.S 애플리케이션의 instruction을 변경해서 더 나은 답변(사용자에게 맞춰진)을 얻을 수 있다면 좋겠습니다. 해당 기능을 구현할 예정이 있나요?

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.