├── .gitignore ├── apikey.json ├── app.py ├── app.spec ├── readme.md ├── requirements.txt ├── screenshots ├── example.png └── settings.png └── src ├── Apikey.py ├── Bard.py ├── Bingchat.py ├── ChatGPT.py ├── Gemini.py ├── Snippers.py ├── chatGPTFREE.py ├── icon.ico └── orc.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchakorn-18k/Language-Translation-App-using-AI/HEAD/.gitignore -------------------------------------------------------------------------------- /apikey.json: -------------------------------------------------------------------------------- 1 | {"api_key": "API key for the CHATGPT"} -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchakorn-18k/Language-Translation-App-using-AI/HEAD/app.py -------------------------------------------------------------------------------- /app.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchakorn-18k/Language-Translation-App-using-AI/HEAD/app.spec -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchakorn-18k/Language-Translation-App-using-AI/HEAD/readme.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchakorn-18k/Language-Translation-App-using-AI/HEAD/requirements.txt -------------------------------------------------------------------------------- /screenshots/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchakorn-18k/Language-Translation-App-using-AI/HEAD/screenshots/example.png -------------------------------------------------------------------------------- /screenshots/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchakorn-18k/Language-Translation-App-using-AI/HEAD/screenshots/settings.png -------------------------------------------------------------------------------- /src/Apikey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchakorn-18k/Language-Translation-App-using-AI/HEAD/src/Apikey.py -------------------------------------------------------------------------------- /src/Bard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchakorn-18k/Language-Translation-App-using-AI/HEAD/src/Bard.py -------------------------------------------------------------------------------- /src/Bingchat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchakorn-18k/Language-Translation-App-using-AI/HEAD/src/Bingchat.py -------------------------------------------------------------------------------- /src/ChatGPT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchakorn-18k/Language-Translation-App-using-AI/HEAD/src/ChatGPT.py -------------------------------------------------------------------------------- /src/Gemini.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchakorn-18k/Language-Translation-App-using-AI/HEAD/src/Gemini.py -------------------------------------------------------------------------------- /src/Snippers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchakorn-18k/Language-Translation-App-using-AI/HEAD/src/Snippers.py -------------------------------------------------------------------------------- /src/chatGPTFREE.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchakorn-18k/Language-Translation-App-using-AI/HEAD/src/chatGPTFREE.py -------------------------------------------------------------------------------- /src/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchakorn-18k/Language-Translation-App-using-AI/HEAD/src/icon.ico -------------------------------------------------------------------------------- /src/orc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watchakorn-18k/Language-Translation-App-using-AI/HEAD/src/orc.png --------------------------------------------------------------------------------