├── .gitignore ├── LICENSE ├── README.md ├── README_JA-JP.md ├── README_ZH-CN.md ├── moco-ai-client_1_4_0_160.apk └── screenshots ├── chat.jpeg ├── dark-theme.jpeg ├── download-image.jpeg ├── moco-ai-apk-new.png ├── moco-ai-apk.png ├── moco-ai-client-qrcode.png ├── profile.jpeg ├── share-content.jpeg ├── tts.jpeg └── voice-input.jpeg /.gitignore: -------------------------------------------------------------------------------- 1 | # Compiled class file 2 | *.class 3 | 4 | .DS_Store 5 | .gradle/ 6 | build/ 7 | .idea/ 8 | 9 | # Log file 10 | *.log 11 | 12 | # BlueJ files 13 | *.ctxt 14 | 15 | # Mobile Tools for Java (J2ME) 16 | .mtj.tmp/ 17 | 18 | # Package Files # 19 | *.jar 20 | *.war 21 | *.nar 22 | *.ear 23 | *.zip 24 | *.tar.gz 25 | *.rar 26 | 27 | # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml 28 | hs_err_pid* 29 | replay_pid* 30 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2023 glovebx 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # moco-ai-client 2 | Your handy AI assistant 3 | 4 | 5 | [日本語](README_JA-JP.md) | [简体中文](README_ZH-CN.md) 6 | 7 | ## Features 8 | :white_check_mark: No need to wait for answers, you can send prompts continuously
9 | :white_check_mark: Conversation history is saved locally, protecting your privacy. Be careful not to submit private data in the chat window!!
10 | :white_check_mark: ~~Supports Microsoft New Bing chat and image creation, just need _U string, no need for api-key~~
11 | :white_check_mark: ~~Supports Google Bard, just need __Secure-1PSID string, no need for api-key~~
12 | :white_check_mark: ~~Supports Poe, just need m-b string, no need for api-key~~
13 | :white_check_mark: Supports Google Gemini, you need your own api-key
14 | :white_check_mark: Supports ChatGPT chat and image creation, you need your own api-key
15 | :white_check_mark: Supports GPT3.5, open and use, no registration required! :heart: :heart:
16 | :white_check_mark: Supports Chinese and English continuous voice input, breaking the 60s limit
17 | :white_check_mark: Docked with Microsoft's AI voice, supports text-to-speech in Chinese, English, Japanese, French, German, Spanish, Korean, Thai
18 | 19 | 20 | ## Screenshots 21 | 22 | | Chat | Profile | 23 | | :-------------: | :-------------: | 24 | | ![Chat](screenshots/chat.jpeg) | ![Profile](screenshots/profile.jpeg) | 25 | | Voice input | TTS | 26 | | ![Voice-input](screenshots/voice-input.jpeg) | ![TTS](screenshots/tts.jpeg) | 27 | | Share content | Download image | 28 | | ![Voice-input](screenshots/share-content.jpeg) | ![TTS](screenshots/download-image.jpeg) | 29 | | Dark theme | Scan to Download Apk | 30 | | ![Dark-theme](screenshots/dark-theme.jpeg) | ![APK](screenshots/moco-ai-apk.png) | 31 | 32 | 33 | 34 | # Note 35 | !! For communication and discussion only, prohibited for illegal purposes, any legal consequences please bear by yourself!! 36 | 37 | # Note 38 | !! If you have installed an old version, please delete it and reinstall it!! 39 | 40 | # Note 41 | 1、~~session mode, supports Bing、Poe、Bard's AI chat~~ 42 | 2、api-key mode, supports OpenAI chat 43 | - [Configuration instructions](https://github.com/zhayujie/bot-on-anything) Get session and api-key refer to here 44 | 45 | 3、Voice input uses Huawei's machine learning api 46 | 4、All sensitive data are local and do not connect to other services 47 | 5、Under development, suggestions are welcome to raise issues 48 | 49 | 50 | # TODO 51 | 1、UI optimization 52 | 2、~~Add image generation~~ 53 | 54 | # 2025.02.25 55 | 1、Supports DeepSeek 56 | 57 | # 2024.06.24 58 | 1、Streaming output bug fix 59 | 60 | # 2024.06.19 61 | 1、Supports streaming output for Dev nodes, Google Gemini, and GPT 62 | 63 | # 2024.06.16 64 | 1、DEV node bug fix 65 | 66 | # 2024.04.05 67 | 1、Add custom role settings 68 | 69 | # 2024.02.15 70 | 1、Add Gemini 71 | 72 | # 2024.02.01 73 | 1、Bug fix 74 | 75 | # 2024.01.31 76 | 1、Add lepton 77 | 78 | # 2024.01.20 79 | 1、Add two gpt3.5 nodes 80 | 81 | # 2023.06.23 82 | 1、Add a free claude node 83 | 84 | # 2023.06.19 85 | 1、Select the text, share it to a third-party app 86 | 2、Images can be downloaded to the album, can be shared to a third-party app 87 | 88 | # 2023.06.16 89 | 1、Replace the invalid FREE nodes, note that they are third-party nodes, do not send sensitive data in the chat window, otherwise you will be responsible for the consequences 90 | 91 | # 2023.06.10 92 | 1、Poe with GPT-4 bot 93 | 94 | # 2023.06.09 95 | 1、Bard supports Chinese 96 | 97 | # 2023.06.08 98 | 1、TTS bug fix 99 | 100 | # 2023.06.07 101 | 1、Supports text-to-speech in Chinese, English and Japanese languages 102 | 103 | # 2023.06.05 104 | 1、Added Bing's text-to-speech feature 105 | 106 | # 2023.06.03 107 | 1、Added a public free node [aiassist](https://github.com/xtekky/gpt4free/tree/main/gpt4free/aiassist), which can be used by ordinary networks. Do not send sensitive data in the chat window, otherwise you will be responsible for the consequences 108 | 109 | # 2023.06.01 110 | 1、Added image generation 111 | 112 | # 2023.05.30 113 | 1、Released alpha version -------------------------------------------------------------------------------- /README_JA-JP.md: -------------------------------------------------------------------------------- 1 | # moco-ai-client 2 | あなたのハンディAIアシスタント 3 | 4 | ## 特徴 5 | :white_check_mark: 回答を待つ必要がなく、連続してコマンドを送ることができます
6 | :white_check_mark: 会話履歴はローカルに保存され、あなたのプライバシーを守ります。チャットウィンドウにプライベートデータを送信しないでください!!
7 | :white_check_mark: ~~Microsoft New Bingのチャットと画像作成をサポートし、_U文字列だけで済みます。api-keyは必要ありません~~
8 | :white_check_mark: ~~Google Bardをサポートし、__Secure-1PSID文字列だけで済みます。api-keyは必要ありません~~
9 | :white_check_mark: ~~Poeをサポートし、m-b文字列だけで済みます。api-keyは必要ありません~~
10 | :white_check_mark: Google Geminiをサポートし、あなた自身のapi-keyが必要です
11 | :white_check_mark: ChatGPTのチャットと画像作成をサポートし、あなた自身のapi-keyが必要です
12 | :white_check_mark: GPT3.5をサポートし、開いてすぐに使えます。登録不要!:heart: :heart:
13 | :white_check_mark: 中国語と英語の連続音声入力をサポートし、60秒の制限を破ります
14 | :white_check_mark: MicrosoftのAI音声に接続し、中国語、英語、日本語、フランス語、ドイツ語、スペイン語、韓国語、タイ語のテキストから音声への変換をサポートします
15 | 16 | 17 | ## スクリーンショット 18 | 19 | | Chat | Profile | 20 | | :-------------: | :-------------: | 21 | | ![Chat](screenshots/chat.jpeg) | ![Profile](screenshots/profile.jpeg) | 22 | | Voice input | TTS | 23 | | ![Voice-input](screenshots/voice-input.jpeg) | ![TTS](screenshots/tts.jpeg) | 24 | | Share content | Download image | 25 | | ![Voice-input](screenshots/share-content.jpeg) | ![TTS](screenshots/download-image.jpeg) | 26 | | Dark theme | Scan to Download Apk | 27 | | ![Dark-theme](screenshots/dark-theme.jpeg) | ![APK](screenshots/moco-ai-apk.png) | 28 | 29 | 30 | 31 | # 注意 32 | !! 交流・議論のみに使用し、違法目的に使用することは禁止されています。法的な結果が発生した場合は自己責任でお願いします!! 33 | 34 | # 注意 35 | !! 古いバージョンをインストールしている場合は、削除してから再インストールしてください!! 36 | 37 | # 注意 38 | 1、~~sessionモードでは、Bing、Poe、BardのAIチャットがサポートされています~~ 39 | 2、api-keyモードでは、OpenAIチャットがサポートされています 40 | - [設定方法](https://github.com/zhayujie/bot-on-anything) sessionやapi-keyの取得方法はこちらを参照してください 41 | 42 | 3、音声入力にはHuaweiの機械学習APIを使用しています 43 | 4、すべての機密データはローカルにあり、他のサービスに接続していません 44 | 5、開発中ですので、ご意見・ご要望がありましたら、issueを立ててください 45 | 46 | 47 | # TODO 48 | 1、UIの最適化 49 | 2、~~画像生成を追加~~ 50 | 51 | # 2025.02.25 52 | 1、Supports DeepSeek 53 | 54 | # 2024.06.24 55 | 1、Streaming output bug fix 56 | 57 | # 2024.06.19 58 | 1、Devノード、Google Gemini、およびGPTのストリーミング出力をサポートする 59 | 60 | # 2024.06.16 61 | 1、DEV node bug fix 62 | 63 | # 2024.04.05 64 | 1、カスタムロールの設定を追加 65 | 66 | # 2024.02.15 67 | 1、Add Gemini 68 | 69 | # 2024.02.01 70 | 1、Bug fix 71 | 72 | # 2024.01.31 73 | 1、Lepton追加 74 | 75 | # 2024.01.20 76 | 1、無料3.5ノードを2つ追加(請求制限あり 77 | 78 | # 2023.06.23 79 | 1、無料claudeノード追加 80 | 81 | # 2023.06.19 82 | 1、テキストを選択し、サードパーティのアプリに共有する 83 | 2、画像をアルバムにダウンロードでき、サードパーティのアプリに共有できる 84 | 85 | # 2023.06.16 86 | 1、無効なFREEノードを交換。チャットウィンドウには機密データを送信しないでください、そうしないと、自己責任で後果を承担することになります 87 | 88 | # 2023.06.10 89 | 1、PoeにGPT-4 bot追加 90 | 91 | # 2023.06.09 92 | 1、Bardが中国語に対応 93 | 94 | # 2023.06.08 95 | 1、TTSのバグ修正 96 | 97 | # 2023.06.07 98 | 1、中国語・英語・日本語の3カ国語の朗読に対応 99 | 100 | # 2023.06.05 101 | 1、Bingのテキストから音声への機能を追加 102 | 103 | # 2023.06.03 104 | 1、公開されている無料ノード[aiassist](https://github.com/xtekky/gpt4free/tree/main/gpt4free/aiassist)を追加しました。一般的なネットワークで使用できます。チャットウィンドウには機密データを送信しないでください。そうしないと、自己責任で結果を負うことになります。 105 | 106 | # 2023.06.01 107 | 1、画像生成を追加 108 | 109 | # 2023.05.30 110 | 1、アルファ版をリリースしました -------------------------------------------------------------------------------- /README_ZH-CN.md: -------------------------------------------------------------------------------- 1 | # moco-ai-client 2 | Your handy AI assistant 3 | 4 | ## 特性 5 | :white_check_mark: 不需要等待回答,可以连续发指令
6 | :white_check_mark: 对话历史保存在本地,保护你的隐私。注意聊天窗口不要提交隐私数据!!
7 | :white_check_mark: ~~支持微软New Bing聊天和图像创作,仅需_U字符串即可,不需要api-key~~
8 | :white_check_mark: ~~支持谷歌Bard,仅需__Secure-1PSID字符串,不需要api-key~~
9 | :white_check_mark: ~~支持Poe,仅需m-b字符串,不需要api-key~~
10 | :white_check_mark: 支持国内网络环境用Google Gemini,需要自己申请api-key
11 | :white_check_mark: 支持ChatGPT聊天和图像创作,需要你自己的api-key
12 | :white_check_mark: 支持国内网络环境用GPT3.5,打开即可使用,无需注册!:heart: :heart:
13 | :white_check_mark: 支持中英文连续语音输入,破除60s限制
14 | :white_check_mark: 对接微软的AI语音,支持中文、英文、日文、法语、德语、西班牙语、韩文、泰语的文字转语音
15 | 16 | 17 | ## 截屏 18 | 19 | | Chat | Profile | 20 | | :-------------: | :-------------: | 21 | | ![Chat](screenshots/chat.jpeg) | ![Profile](screenshots/profile.jpeg) | 22 | | Voice input | TTS | 23 | | ![Voice-input](screenshots/voice-input.jpeg) | ![TTS](screenshots/tts.jpeg) | 24 | | Share content | Download image | 25 | | ![Voice-input](screenshots/share-content.jpeg) | ![TTS](screenshots/download-image.jpeg) | 26 | | Dark theme | Scan to Download Apk | 27 | | ![Dark-theme](screenshots/dark-theme.jpeg) | ![APK](screenshots/moco-ai-apk.png) | 28 | 29 | 30 | 31 | # 注意 32 | !!仅供交流探讨,禁止用于非法用途,有任何法律后果请自行承担!! 33 | 34 | # 注意 35 | !!如果有安装过旧版本,请先删除之后重新安装!! 36 | 37 | # 注意 38 | 1、~~session模式,支持Bing、Poe、Bard的AI聊天~~ 39 | 2、api-key模式,支持OpenAI聊天 40 | - [配置说明](https://github.com/zhayujie/bot-on-anything) 获取session以及api-key参考这里 41 | 42 | 3、语音输入使用了华为的机器学习api 43 | 4、所有敏感数据都在本地,没有连接其他服务 44 | 5、开发中,有建议欢迎提issue 45 | 46 | 47 | # TODO 48 | 1、UI优化 49 | 2、~~加入图片生成~~ 50 | 51 | # 2025.02.25 52 | 1、支持 DeepSeek 53 | 54 | # 2024.06.24 55 | 1、Streaming output bug fix 56 | 57 | # 2024.06.19 58 | 1、支持Dev节点、Google Gemini、GPT(包括自定义地址)的流式输出 59 | 60 | # 2024.06.16 61 | 1、DEV node bug fix 62 | 63 | # 2024.04.05 64 | 1、增加自定义角色设置 65 | 66 | # 2024.02.15 67 | 1、增加 Gemini,需要自己申请API Key 68 | 69 | # 2024.02.01 70 | 1、Bug fix 71 | 72 | # 2024.01.31 73 | 1、增加Lepton,目前可用 74 | 75 | # 2024.01.20 76 | 1、增加两个国内网络可用的3.5节点,线路受限,酌情使用 77 | 78 | # 2023.06.23 79 | 1、增加一个国内网络可用的claude节点 80 | 81 | # 2023.06.19 82 | 1、选中文字,分享到第三方App 83 | 2、图片可下载到相册、可分享到第三方App 84 | 85 | # 2023.06.16 86 | 1、替换无效的FREE节点,注意是第三方节点,聊天窗口请勿发送敏感数据,否则后果自负 87 | 88 | # 2023.06.10 89 | 1、Poe加入GPT-4 bot 90 | 91 | # 2023.06.09 92 | 1、Bard支持中文 93 | 94 | # 2023.06.08 95 | 1、TTS bug fix 96 | 97 | # 2023.06.07 98 | 1、支持中、英、日三国语言的朗读 99 | 100 | # 2023.06.05 101 | 1、加入Bing的文字转语音功能 102 | 103 | # 2023.06.03 104 | 1、加入公开的免费节点[aiassist](https://github.com/xtekky/gpt4free/tree/main/gpt4free/aiassist),普通网络可用。聊天窗口请勿发送敏感数据,否则后果自负 105 | 106 | # 2023.06.01 107 | 1、加入图片生成 108 | 109 | # 2023.05.30 110 | 1、发布alpha版 111 | -------------------------------------------------------------------------------- /moco-ai-client_1_4_0_160.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glovebx/moco-ai-client/8e70f5a9bc7166207eb057c067bec96d9d761d4a/moco-ai-client_1_4_0_160.apk -------------------------------------------------------------------------------- /screenshots/chat.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glovebx/moco-ai-client/8e70f5a9bc7166207eb057c067bec96d9d761d4a/screenshots/chat.jpeg -------------------------------------------------------------------------------- /screenshots/dark-theme.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glovebx/moco-ai-client/8e70f5a9bc7166207eb057c067bec96d9d761d4a/screenshots/dark-theme.jpeg -------------------------------------------------------------------------------- /screenshots/download-image.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glovebx/moco-ai-client/8e70f5a9bc7166207eb057c067bec96d9d761d4a/screenshots/download-image.jpeg -------------------------------------------------------------------------------- /screenshots/moco-ai-apk-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glovebx/moco-ai-client/8e70f5a9bc7166207eb057c067bec96d9d761d4a/screenshots/moco-ai-apk-new.png -------------------------------------------------------------------------------- /screenshots/moco-ai-apk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glovebx/moco-ai-client/8e70f5a9bc7166207eb057c067bec96d9d761d4a/screenshots/moco-ai-apk.png -------------------------------------------------------------------------------- /screenshots/moco-ai-client-qrcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glovebx/moco-ai-client/8e70f5a9bc7166207eb057c067bec96d9d761d4a/screenshots/moco-ai-client-qrcode.png -------------------------------------------------------------------------------- /screenshots/profile.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glovebx/moco-ai-client/8e70f5a9bc7166207eb057c067bec96d9d761d4a/screenshots/profile.jpeg -------------------------------------------------------------------------------- /screenshots/share-content.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glovebx/moco-ai-client/8e70f5a9bc7166207eb057c067bec96d9d761d4a/screenshots/share-content.jpeg -------------------------------------------------------------------------------- /screenshots/tts.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glovebx/moco-ai-client/8e70f5a9bc7166207eb057c067bec96d9d761d4a/screenshots/tts.jpeg -------------------------------------------------------------------------------- /screenshots/voice-input.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glovebx/moco-ai-client/8e70f5a9bc7166207eb057c067bec96d9d761d4a/screenshots/voice-input.jpeg --------------------------------------------------------------------------------