├── .gitattributes ├── .github └── ISSUE_TEMPLATE │ ├── config.yml │ ├── template-bug.yml │ ├── template-feature.yml │ └── template-question.yml ├── .gitignore ├── .vscode └── setting.json ├── 2-1.强制更新至主线版本(得先安装git).bat ├── Dockerfile ├── LICENSE ├── Live2D ├── README.md ├── css │ └── live2d.css ├── font │ ├── iconfont.css │ ├── iconfont.eot │ ├── iconfont.js │ ├── iconfont.json │ ├── iconfont.svg │ ├── iconfont.ttf │ ├── iconfont.woff │ └── iconfont.woff2 ├── index.html ├── index.html.bak ├── js │ ├── all.min.js │ ├── bundle.js │ ├── jquery.min.js │ ├── live2dcubismcore.js │ ├── live2dcubismcore.js.map │ ├── main.js │ ├── message.js │ └── model_name.js ├── live2d-model │ ├── Haru │ │ ├── Haru.2048 │ │ │ ├── texture_00.png │ │ │ └── texture_01.png │ │ ├── Haru.cdi3.json │ │ ├── Haru.moc3 │ │ ├── Haru.model3.json │ │ ├── Haru.physics3.json │ │ ├── Haru.pose3.json │ │ ├── Haru.userdata3.json │ │ ├── expressions │ │ │ ├── F01.exp3.json │ │ │ ├── F02.exp3.json │ │ │ ├── F03.exp3.json │ │ │ ├── F04.exp3.json │ │ │ ├── F05.exp3.json │ │ │ ├── F06.exp3.json │ │ │ ├── F07.exp3.json │ │ │ └── F08.exp3.json │ │ ├── motions │ │ │ ├── haru_g_idle.motion3.json │ │ │ ├── haru_g_m01.motion3.json │ │ │ ├── haru_g_m02.motion3.json │ │ │ ├── haru_g_m03.motion3.json │ │ │ ├── haru_g_m04.motion3.json │ │ │ ├── haru_g_m05.motion3.json │ │ │ ├── haru_g_m06.motion3.json │ │ │ ├── haru_g_m07.motion3.json │ │ │ ├── haru_g_m08.motion3.json │ │ │ ├── haru_g_m09.motion3.json │ │ │ ├── haru_g_m10.motion3.json │ │ │ ├── haru_g_m11.motion3.json │ │ │ ├── haru_g_m12.motion3.json │ │ │ ├── haru_g_m13.motion3.json │ │ │ ├── haru_g_m14.motion3.json │ │ │ ├── haru_g_m15.motion3.json │ │ │ ├── haru_g_m16.motion3.json │ │ │ ├── haru_g_m17.motion3.json │ │ │ ├── haru_g_m18.motion3.json │ │ │ ├── haru_g_m19.motion3.json │ │ │ ├── haru_g_m20.motion3.json │ │ │ ├── haru_g_m21.motion3.json │ │ │ ├── haru_g_m22.motion3.json │ │ │ ├── haru_g_m23.motion3.json │ │ │ ├── haru_g_m24.motion3.json │ │ │ ├── haru_g_m25.motion3.json │ │ │ └── haru_g_m26.motion3.json │ │ └── sounds │ │ │ ├── haru_normal_01.wav │ │ │ ├── haru_normal_02.wav │ │ │ ├── haru_normal_03.wav │ │ │ └── haru_normal_04.wav │ ├── Hiyori │ │ ├── Hiyori.2048 │ │ │ ├── texture_00.png │ │ │ └── texture_01.png │ │ ├── Hiyori.cdi3.json │ │ ├── Hiyori.moc3 │ │ ├── Hiyori.model3.json │ │ ├── Hiyori.physics3.json │ │ ├── Hiyori.pose3.json │ │ ├── Hiyori.userdata3.json │ │ └── motions │ │ │ ├── Hiyori_m01.motion3.json │ │ │ ├── Hiyori_m02.motion3.json │ │ │ ├── Hiyori_m03.motion3.json │ │ │ ├── Hiyori_m04.motion3.json │ │ │ ├── Hiyori_m05.motion3.json │ │ │ ├── Hiyori_m06.motion3.json │ │ │ ├── Hiyori_m07.motion3.json │ │ │ ├── Hiyori_m08.motion3.json │ │ │ ├── Hiyori_m09.motion3.json │ │ │ └── Hiyori_m10.motion3.json │ └── hibiki │ │ ├── ReadMe.txt │ │ ├── expressions │ │ ├── Angry.exp3.json │ │ ├── Blushing.exp3.json │ │ ├── Normal.exp3.json │ │ ├── Sad.exp3.json │ │ ├── Surprised.exp3.json │ │ └── f01.exp3.json │ │ ├── hibiki.2048 │ │ └── texture_00.png │ │ ├── hibiki.cdi3.json │ │ ├── hibiki.moc3 │ │ ├── hibiki.model3.json │ │ ├── hibiki.physics3.json │ │ ├── hibiki_expressions_t01.can3 │ │ ├── hibiki_t01.cmo3 │ │ ├── hibiki_voice_t01.can3 │ │ ├── motion │ │ ├── hibiki_01.motion3.json │ │ ├── hibiki_02.motion3.json │ │ ├── hibiki_03.motion3.json │ │ ├── hibiki_04.motion3.json │ │ └── hibiki_05.motion3.json │ │ └── sounds │ │ ├── hibiki_01.wav │ │ ├── hibiki_02.wav │ │ ├── hibiki_03.wav │ │ ├── hibiki_04.wav │ │ └── hibiki_05.wav ├── live2d-proload.js ├── live2d.com_eula_live2d-free-material-license-agreement_cn.html └── live2d.com_eula_live2d-sample-model-terms_cn.html ├── README.md ├── Scripts ├── 1.双击我启动程序.bat ├── 2-1.强制更新至主线版本(得先安装git).bat ├── 2-2.安装依赖.bat ├── 2.更新至主线版本(得先安装git).bat ├── 3.conda初始化配置.bat ├── 4.激活conda环境.bat ├── 5.删除demo数据.bat ├── 6.备份配置和数据文件.bat ├── 6.备份配置和数据文件(存储于backup文件夹).bat ├── 7.激活conda环境.bat ├── 半自动 │ ├── 0.请先安装miniconda并手动配置环境变量.bat │ ├── 1.创建虚拟环境.bat │ ├── 2-1.安装依赖(请先运行2,然后在2中运行此脚本).bat │ ├── 2-2.GUI运行(请先运行2,然后在2中运行此脚本).bat │ ├── 2.激活环境.bat │ └── 3.更新至主线版本(得先安装git).bat ├── 双击运行打开管理员cmd.bat ├── 旧版脚本 │ ├── 0.请先安装miniconda并手动配置环境变量.bat │ ├── 1-1.GUI运行(请先运行1,然后在1中运行此脚本).bat │ ├── 1.激活环境.bat │ ├── 2-1.强制更新至主线版本(得先安装git).bat │ └── 2.更新至主线版本(得先安装git).bat └── 直播ws脚本 │ ├── README.md │ ├── douyu_ws_client.js │ ├── pdd重定向.js │ └── 洛曦 直播弹幕监听 转发至本地WS服务端.js ├── bak_config_data.py ├── chatterbot ├── README.md ├── data │ ├── db.txt │ └── db.txt.bak └── train.py ├── config.json ├── config.json.bak ├── cookie └── README.md ├── data ├── README.md ├── badwords.txt ├── copywriting │ ├── test.txt │ ├── 伊卡日语介绍.txt │ ├── 吐槽.txt │ ├── 测试文案.txt │ ├── 测试文案2.txt │ ├── 测试文案3.txt │ └── 达达利亚.txt ├── copywriting2 │ ├── test.txt │ ├── test2.txt │ └── 测试文案.txt ├── edge-tts-voice-list.txt ├── genshinvoice_top_speak_list.txt ├── keyboard.txt ├── tiktok礼物价格表.json ├── tts_ai_lab_top_speak_list.txt ├── 伊卡洛斯百度百科.pdf ├── 伊卡洛斯百度百科.zip ├── 动态文案1 │ ├── 测试文案1.txt │ └── 测试文案2.txt ├── 动态文案2 │ ├── AI-Vtuber介绍.txt │ ├── LLM技术简单讲解.txt │ ├── STT技术简单讲解.txt │ ├── TTS技术简单讲解.txt │ ├── VITS技术讲解.txt │ └── 邀请观众加群.txt ├── 异常报警 │ ├── llm │ │ └── 大语言模型推理异常,麻烦各位联系我的主人进行修复喵,脑子坏掉啦!.wav │ ├── platform │ │ └── 平台连接出现异常,麻烦各位联系我的主人进行修复喵,看不见大家的弹幕啦!.wav │ ├── svc │ │ └── 变声异常,麻烦各位联系我的主人进行修复喵,没法说话啦!.wav │ ├── tts │ │ └── 文本转语音异常,麻烦各位联系我的主人进行修复喵,没法说话啦!.wav │ ├── システムに異常を検出しました。自己修復システムの起動に失敗しました。みなさん、私の主人に連絡してシステムのチェックをお願いできますか。ありがとうございます.wav │ └── 检测到系统异常,自我修复系统运行失败,希望大家可以联系我的主人进行系统检测,非常感谢.wav ├── 抖音礼物价格表.json ├── 本地问答库-助播.json ├── 本地问答库.json ├── 本地问答库.txt ├── 违禁拼音.txt └── 闲时任务 │ └── 音频 │ ├── 1.获取对应文件夹内所有文件名.py │ ├── ai_vtb │ ├── AI-Vtuber介绍.wav │ └── 邀请观众加群.wav │ └── ikaros │ ├── 不管发生什么,我都会在主人身边.wav │ ├── 不管是谁下的命令,一旦主人有什么三长两短,我决不轻饶.wav │ ├── 主人和我一起开心吗.wav │ ├── 主人在想些什么呢.wav │ ├── 主人,你刚才是不是说我们会永远在一起.wav │ ├── 主人,您还好吗.wav │ ├── 主人,茶泡好了.wav │ ├── 你醒了吗,主人.wav │ ├── 好想赶快见到主人.wav │ ├── 对了,加油努力,让主人表扬我的话,肯定.wav │ ├── 怎样才能牵主人的手呢.wav │ ├── 我一点都帮不上主人的忙.wav │ ├── 我也想牵主人的手.wav │ ├── 我和主人在一起,怎么说呢,心有种轻飘飘的感觉.wav │ ├── 我想在主人身边,从今往后.wav │ ├── 我是主人最讨厌的兵器,这样瞒住主人真的好吗.wav │ ├── 我是玩赏用天使,我要回到主人的身边.wav │ ├── 看来我的动力炉,真的出了点毛病,主人.wav │ ├── 知道主人在哪里吗.wav │ ├── 遇到麻烦了吗,主人.wav │ └── 那个,主人,睡觉是怎么一回事.wav ├── docs ├── AI Vtuber.xmind ├── chart.jpg ├── simple_flowchart.png ├── xmind.png └── 投资人 │ ├── bg.png │ ├── index.html │ └── invest.png ├── dy.proto ├── dy2.py ├── dy_pb2.py ├── game ├── game.py ├── game1.py └── game2.py ├── ks.proto ├── ks_pb2.py ├── kuaishou_pb2.py ├── log └── README.md ├── main.py ├── models └── README.md ├── out ├── README.md ├── copywriting │ ├── test.wav │ ├── 伊卡日语介绍.wav │ ├── 吐槽.wav │ ├── 测试文案.mp3 │ ├── 测试文案.wav │ ├── 测试文案2.wav │ ├── 测试文案3.wav │ └── 达达利亚.wav ├── copywriting2 │ ├── test.wav │ └── test2.wav ├── 本地问答音频-助播 │ ├── 好不好.wav │ ├── 对不对.wav │ └── 是不是.wav └── 本地问答音频 │ ├── 关键词1.wav │ └── 关键词2.wav ├── overrides.txt ├── protobuf ├── __init__.py ├── douyin.proto ├── douyin.py ├── douyin │ └── __init__.py ├── protoc.exe └── readme.md ├── pyproject.toml ├── requirements.txt ├── requirements_common.txt ├── sensevoice ├── LICENSE ├── README.md ├── README_zh.md ├── data │ ├── train_example.jsonl │ └── val_example.jsonl ├── deepspeed_conf │ └── ds_stage1.json ├── demo.py ├── demo_funasr.py ├── export_meta.py ├── finetune.sh ├── image │ ├── aed_figure.png │ ├── asr_results.png │ ├── inference.png │ ├── sensevoice.png │ ├── sensevoice2.png │ ├── ser_figure.png │ ├── ser_table.png │ └── webui.png ├── model.py ├── requirements.txt └── webui.py ├── song └── README.md ├── tests ├── README.md ├── test_VALL-E-X │ ├── api5.py │ └── ikaros.npz ├── test_aibote │ ├── 1.png │ └── aibote.py ├── test_anthropic │ └── api.py ├── test_anythingllm │ └── api.py ├── test_baidu │ └── trans.py ├── test_bard │ ├── qa.py │ ├── qa2.py │ └── tts.py ├── test_bark │ ├── api1.py │ ├── api8.py │ ├── tts.py │ └── tts_sample.py ├── test_blivedm │ └── 2.py ├── test_chatglm │ └── api.py ├── test_chatgpt │ ├── 1.png │ ├── api.py │ └── vision.py ├── test_claude │ ├── claude2.py │ ├── claude_api.py │ └── unofficial-claude2-api.py ├── test_clone_voice │ └── api.py ├── test_common │ ├── get_screenshot.py │ └── subprocess1.py ├── test_cosyvoice │ ├── api.py │ └── gradio_api.py ├── test_coze │ └── cn.py ├── test_custom_api │ ├── llm.py │ └── utils │ │ ├── common.py │ │ └── logger.py ├── test_cv2 │ └── camera.py ├── test_dify │ └── api.py ├── test_faster_whisper │ └── realtime.py ├── test_fish_speech │ ├── 1.wav │ ├── 2.wav │ ├── api.py │ └── web_api.py ├── test_gemini │ ├── 1.png │ └── api.py ├── test_google │ └── api.py ├── test_gpt4free │ └── api.py ├── test_gpt_sovits │ ├── api.py │ ├── api_0706.py │ ├── api_v3.py │ ├── gradio0322.py │ └── ws.py ├── test_gradio │ ├── api.py │ ├── f5_tts.py │ └── genshinvoice.py ├── test_langchain_chatchat │ └── api.py ├── test_langchain_chatglm │ ├── __init__.py │ ├── api.py │ └── gradio_api.py ├── test_llm_koboldcpp │ └── api.py ├── test_llm_tpu │ └── gradio_api.py ├── test_multitts │ └── api.py ├── test_nicegui │ ├── db.py │ ├── echart.py │ ├── echart_gift.py │ ├── echart_integral.py │ └── input.py ├── test_openai_tts │ └── hf.py ├── test_poe │ └── api.py ├── test_qanything │ └── api.py ├── test_qianfan │ └── api.py ├── test_reecho_ai │ └── api.py ├── test_sensevoice │ └── demo.py ├── test_sparkdesk │ └── chat.py ├── test_tencentcloud │ └── tmt.py ├── test_tiktok │ ├── tiktok.py │ ├── v6.2.py │ └── v6.py ├── test_tongyi │ ├── cookies.json │ └── tongyi.py ├── test_tts_azure │ └── api.py ├── test_twitch │ └── twitch.py ├── test_vits │ ├── gpt-sovits.py │ ├── hf_bert_vits2.py │ └── vits-simple-api.py ├── test_volcengine │ └── api.py ├── test_wenxinworkshop │ └── demo.py ├── test_xingchen │ └── api.py ├── test_yiyan │ └── api.py ├── test_youtube │ └── test_pytchat.py └── test_zhipu │ ├── api.py │ ├── app_api.py │ ├── assistant.py │ ├── charglm-3.py │ └── glms_api.ipynb ├── ui ├── README.md ├── bg.png ├── favicon-256.ico ├── favicon-64.ico └── icon.png ├── utils ├── __init__.py ├── audio.py ├── audio_handle │ ├── audio_player.py │ └── my_tts.py ├── chat_with_file │ ├── chat_mode │ │ ├── chat_model.py │ │ ├── claude_model.py │ │ └── openai_model.py │ ├── chat_with_file.py │ └── vector_store │ │ ├── embeddings.py │ │ └── faiss.py ├── common.py ├── config.py ├── data_analysis.py ├── db.py ├── gpt_model │ ├── anythingllm.py │ ├── bard.py │ ├── blip.py │ ├── chatchat_bak.py │ ├── chatglm.py │ ├── chatgpt.py │ ├── claude.py │ ├── claude2.py │ ├── custom_llm.py │ ├── dify.py │ ├── gemini.py │ ├── gpt.py │ ├── gpt4free.py │ ├── koboldcpp.py │ ├── langchain_chatchat.py │ ├── langchain_chatglm.py │ ├── llm_tpu.py │ ├── my_qianfan.py │ ├── my_wenxinworkshop.py │ ├── qanything.py │ ├── qwen.py │ ├── sparkdesk.py │ ├── text_generation_webui.py │ ├── tongyi.py │ ├── tongyixingchen.py │ ├── volcengine.py │ ├── yiyan.py │ └── zhipu.py ├── logger.py ├── luoxi_project │ └── live_comment_assistant.py ├── models.py ├── my_global.py ├── my_handle.py ├── my_log.py ├── my_translate.py ├── my_websocket │ └── server.py ├── platforms │ ├── __init__.py │ ├── bilibili.py │ ├── bilibili2.py │ ├── dy.py │ ├── dy2.py │ ├── hntv.py │ ├── ks.py │ ├── lx_live_monitor_assistant.py │ ├── ordinaryroad_barrage_fly.py │ ├── tiktok.py │ ├── twitch.py │ ├── wxlive.py │ └── youtube.py ├── sd.py ├── search_engine.py ├── serial_manager.py ├── serial_manager_instance.py ├── thread.py └── video.py ├── webui.py └── 快手逆向.js /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/template-bug.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/.github/ISSUE_TEMPLATE/template-bug.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/template-feature.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/.github/ISSUE_TEMPLATE/template-feature.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/template-question.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/.github/ISSUE_TEMPLATE/template-question.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/setting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/.vscode/setting.json -------------------------------------------------------------------------------- /2-1.强制更新至主线版本(得先安装git).bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/2-1.强制更新至主线版本(得先安装git).bat -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/LICENSE -------------------------------------------------------------------------------- /Live2D/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/Live2D/README.md -------------------------------------------------------------------------------- /Live2D/css/live2d.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/Live2D/css/live2d.css -------------------------------------------------------------------------------- /Live2D/font/iconfont.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/Live2D/font/iconfont.css -------------------------------------------------------------------------------- /Live2D/font/iconfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/Live2D/font/iconfont.eot -------------------------------------------------------------------------------- /Live2D/font/iconfont.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/Live2D/font/iconfont.js -------------------------------------------------------------------------------- /Live2D/font/iconfont.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/Live2D/font/iconfont.json -------------------------------------------------------------------------------- /Live2D/font/iconfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/Live2D/font/iconfont.svg -------------------------------------------------------------------------------- /Live2D/font/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/Live2D/font/iconfont.ttf -------------------------------------------------------------------------------- /Live2D/font/iconfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/Live2D/font/iconfont.woff -------------------------------------------------------------------------------- /Live2D/font/iconfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/Live2D/font/iconfont.woff2 -------------------------------------------------------------------------------- /Live2D/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/Live2D/index.html -------------------------------------------------------------------------------- /Live2D/index.html.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/Live2D/index.html.bak -------------------------------------------------------------------------------- /Live2D/js/all.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/Live2D/js/all.min.js -------------------------------------------------------------------------------- /Live2D/js/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/Live2D/js/bundle.js -------------------------------------------------------------------------------- /Live2D/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/Live2D/js/jquery.min.js -------------------------------------------------------------------------------- /Live2D/js/live2dcubismcore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/Live2D/js/live2dcubismcore.js -------------------------------------------------------------------------------- /Live2D/js/live2dcubismcore.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/Live2D/js/live2dcubismcore.js.map -------------------------------------------------------------------------------- /Live2D/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/Live2D/js/main.js -------------------------------------------------------------------------------- /Live2D/js/message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/Live2D/js/message.js -------------------------------------------------------------------------------- /Live2D/js/model_name.js: -------------------------------------------------------------------------------- 1 | var model_name = "Hiyori"; -------------------------------------------------------------------------------- /Live2D/live2d-model/Haru/Haru.2048/texture_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/Live2D/live2d-model/Haru/Haru.2048/texture_00.png -------------------------------------------------------------------------------- /Live2D/live2d-model/Haru/Haru.2048/texture_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/Live2D/live2d-model/Haru/Haru.2048/texture_01.png -------------------------------------------------------------------------------- /Live2D/live2d-model/Haru/Haru.cdi3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/Live2D/live2d-model/Haru/Haru.cdi3.json -------------------------------------------------------------------------------- /Live2D/live2d-model/Haru/Haru.moc3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/Live2D/live2d-model/Haru/Haru.moc3 -------------------------------------------------------------------------------- /Live2D/live2d-model/Haru/Haru.model3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/Live2D/live2d-model/Haru/Haru.model3.json -------------------------------------------------------------------------------- /Live2D/live2d-model/Haru/Haru.physics3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/Live2D/live2d-model/Haru/Haru.physics3.json -------------------------------------------------------------------------------- /Live2D/live2d-model/Haru/Haru.pose3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/Live2D/live2d-model/Haru/Haru.pose3.json -------------------------------------------------------------------------------- /Live2D/live2d-model/Haru/Haru.userdata3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/Live2D/live2d-model/Haru/Haru.userdata3.json -------------------------------------------------------------------------------- /Live2D/live2d-model/Haru/expressions/F01.exp3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/Live2D/live2d-model/Haru/expressions/F01.exp3.json -------------------------------------------------------------------------------- /Live2D/live2d-model/Haru/expressions/F02.exp3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/Live2D/live2d-model/Haru/expressions/F02.exp3.json -------------------------------------------------------------------------------- /Live2D/live2d-model/Haru/expressions/F03.exp3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/Live2D/live2d-model/Haru/expressions/F03.exp3.json -------------------------------------------------------------------------------- /Live2D/live2d-model/Haru/expressions/F04.exp3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/Live2D/live2d-model/Haru/expressions/F04.exp3.json -------------------------------------------------------------------------------- /Live2D/live2d-model/Haru/expressions/F05.exp3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/Live2D/live2d-model/Haru/expressions/F05.exp3.json -------------------------------------------------------------------------------- /Live2D/live2d-model/Haru/expressions/F06.exp3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/Live2D/live2d-model/Haru/expressions/F06.exp3.json -------------------------------------------------------------------------------- /Live2D/live2d-model/Haru/expressions/F07.exp3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/Live2D/live2d-model/Haru/expressions/F07.exp3.json -------------------------------------------------------------------------------- /Live2D/live2d-model/Haru/expressions/F08.exp3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/Live2D/live2d-model/Haru/expressions/F08.exp3.json -------------------------------------------------------------------------------- /Live2D/live2d-model/Haru/motions/haru_g_idle.motion3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/Live2D/live2d-model/Haru/motions/haru_g_idle.motion3.json -------------------------------------------------------------------------------- /Live2D/live2d-model/Haru/motions/haru_g_m01.motion3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/Live2D/live2d-model/Haru/motions/haru_g_m01.motion3.json -------------------------------------------------------------------------------- /Live2D/live2d-model/Haru/motions/haru_g_m02.motion3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/Live2D/live2d-model/Haru/motions/haru_g_m02.motion3.json -------------------------------------------------------------------------------- /Live2D/live2d-model/Haru/motions/haru_g_m03.motion3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/Live2D/live2d-model/Haru/motions/haru_g_m03.motion3.json -------------------------------------------------------------------------------- /Live2D/live2d-model/Haru/motions/haru_g_m04.motion3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/Live2D/live2d-model/Haru/motions/haru_g_m04.motion3.json -------------------------------------------------------------------------------- /Live2D/live2d-model/Haru/motions/haru_g_m05.motion3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/Live2D/live2d-model/Haru/motions/haru_g_m05.motion3.json -------------------------------------------------------------------------------- /Live2D/live2d-model/Haru/motions/haru_g_m06.motion3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/Live2D/live2d-model/Haru/motions/haru_g_m06.motion3.json -------------------------------------------------------------------------------- /Live2D/live2d-model/Haru/motions/haru_g_m07.motion3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/Live2D/live2d-model/Haru/motions/haru_g_m07.motion3.json -------------------------------------------------------------------------------- /Live2D/live2d-model/Haru/motions/haru_g_m08.motion3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/Live2D/live2d-model/Haru/motions/haru_g_m08.motion3.json -------------------------------------------------------------------------------- /Live2D/live2d-model/Haru/motions/haru_g_m09.motion3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/Live2D/live2d-model/Haru/motions/haru_g_m09.motion3.json -------------------------------------------------------------------------------- /Live2D/live2d-model/Haru/motions/haru_g_m10.motion3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/Live2D/live2d-model/Haru/motions/haru_g_m10.motion3.json -------------------------------------------------------------------------------- /Live2D/live2d-model/Haru/motions/haru_g_m11.motion3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/Live2D/live2d-model/Haru/motions/haru_g_m11.motion3.json -------------------------------------------------------------------------------- /Live2D/live2d-model/Haru/motions/haru_g_m12.motion3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/Live2D/live2d-model/Haru/motions/haru_g_m12.motion3.json -------------------------------------------------------------------------------- /Live2D/live2d-model/Haru/motions/haru_g_m13.motion3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/Live2D/live2d-model/Haru/motions/haru_g_m13.motion3.json -------------------------------------------------------------------------------- /Live2D/live2d-model/Haru/motions/haru_g_m14.motion3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/Live2D/live2d-model/Haru/motions/haru_g_m14.motion3.json -------------------------------------------------------------------------------- /Live2D/live2d-model/Haru/motions/haru_g_m15.motion3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/Live2D/live2d-model/Haru/motions/haru_g_m15.motion3.json -------------------------------------------------------------------------------- /Live2D/live2d-model/Haru/motions/haru_g_m16.motion3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/Live2D/live2d-model/Haru/motions/haru_g_m16.motion3.json -------------------------------------------------------------------------------- /Live2D/live2d-model/Haru/motions/haru_g_m17.motion3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/Live2D/live2d-model/Haru/motions/haru_g_m17.motion3.json -------------------------------------------------------------------------------- /Live2D/live2d-model/Haru/motions/haru_g_m18.motion3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/Live2D/live2d-model/Haru/motions/haru_g_m18.motion3.json -------------------------------------------------------------------------------- /Live2D/live2d-model/Haru/motions/haru_g_m19.motion3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/Live2D/live2d-model/Haru/motions/haru_g_m19.motion3.json -------------------------------------------------------------------------------- /Live2D/live2d-model/Haru/motions/haru_g_m20.motion3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/Live2D/live2d-model/Haru/motions/haru_g_m20.motion3.json -------------------------------------------------------------------------------- /Live2D/live2d-model/Haru/motions/haru_g_m21.motion3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/Live2D/live2d-model/Haru/motions/haru_g_m21.motion3.json -------------------------------------------------------------------------------- /Live2D/live2d-model/Haru/motions/haru_g_m22.motion3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/Live2D/live2d-model/Haru/motions/haru_g_m22.motion3.json -------------------------------------------------------------------------------- /Live2D/live2d-model/Haru/motions/haru_g_m23.motion3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/Live2D/live2d-model/Haru/motions/haru_g_m23.motion3.json -------------------------------------------------------------------------------- /Live2D/live2d-model/Haru/motions/haru_g_m24.motion3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/Live2D/live2d-model/Haru/motions/haru_g_m24.motion3.json -------------------------------------------------------------------------------- /Live2D/live2d-model/Haru/motions/haru_g_m25.motion3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/Live2D/live2d-model/Haru/motions/haru_g_m25.motion3.json -------------------------------------------------------------------------------- /Live2D/live2d-model/Haru/motions/haru_g_m26.motion3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/Live2D/live2d-model/Haru/motions/haru_g_m26.motion3.json -------------------------------------------------------------------------------- /Live2D/live2d-model/Haru/sounds/haru_normal_01.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/Live2D/live2d-model/Haru/sounds/haru_normal_01.wav -------------------------------------------------------------------------------- /Live2D/live2d-model/Haru/sounds/haru_normal_02.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/Live2D/live2d-model/Haru/sounds/haru_normal_02.wav -------------------------------------------------------------------------------- /Live2D/live2d-model/Haru/sounds/haru_normal_03.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/Live2D/live2d-model/Haru/sounds/haru_normal_03.wav -------------------------------------------------------------------------------- /Live2D/live2d-model/Haru/sounds/haru_normal_04.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/Live2D/live2d-model/Haru/sounds/haru_normal_04.wav -------------------------------------------------------------------------------- /Live2D/live2d-model/Hiyori/Hiyori.2048/texture_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/Live2D/live2d-model/Hiyori/Hiyori.2048/texture_00.png -------------------------------------------------------------------------------- /Live2D/live2d-model/Hiyori/Hiyori.2048/texture_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/Live2D/live2d-model/Hiyori/Hiyori.2048/texture_01.png -------------------------------------------------------------------------------- /Live2D/live2d-model/Hiyori/Hiyori.cdi3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/Live2D/live2d-model/Hiyori/Hiyori.cdi3.json -------------------------------------------------------------------------------- /Live2D/live2d-model/Hiyori/Hiyori.moc3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/Live2D/live2d-model/Hiyori/Hiyori.moc3 -------------------------------------------------------------------------------- /Live2D/live2d-model/Hiyori/Hiyori.model3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/Live2D/live2d-model/Hiyori/Hiyori.model3.json -------------------------------------------------------------------------------- /Live2D/live2d-model/Hiyori/Hiyori.physics3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/Live2D/live2d-model/Hiyori/Hiyori.physics3.json -------------------------------------------------------------------------------- /Live2D/live2d-model/Hiyori/Hiyori.pose3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/Live2D/live2d-model/Hiyori/Hiyori.pose3.json -------------------------------------------------------------------------------- /Live2D/live2d-model/Hiyori/Hiyori.userdata3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/Live2D/live2d-model/Hiyori/Hiyori.userdata3.json -------------------------------------------------------------------------------- /Live2D/live2d-model/Hiyori/motions/Hiyori_m01.motion3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/Live2D/live2d-model/Hiyori/motions/Hiyori_m01.motion3.json -------------------------------------------------------------------------------- /Live2D/live2d-model/Hiyori/motions/Hiyori_m02.motion3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/Live2D/live2d-model/Hiyori/motions/Hiyori_m02.motion3.json -------------------------------------------------------------------------------- /Live2D/live2d-model/Hiyori/motions/Hiyori_m03.motion3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/Live2D/live2d-model/Hiyori/motions/Hiyori_m03.motion3.json -------------------------------------------------------------------------------- /Live2D/live2d-model/Hiyori/motions/Hiyori_m04.motion3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/Live2D/live2d-model/Hiyori/motions/Hiyori_m04.motion3.json -------------------------------------------------------------------------------- /Live2D/live2d-model/Hiyori/motions/Hiyori_m05.motion3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/Live2D/live2d-model/Hiyori/motions/Hiyori_m05.motion3.json -------------------------------------------------------------------------------- /Live2D/live2d-model/Hiyori/motions/Hiyori_m06.motion3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/Live2D/live2d-model/Hiyori/motions/Hiyori_m06.motion3.json -------------------------------------------------------------------------------- /Live2D/live2d-model/Hiyori/motions/Hiyori_m07.motion3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/Live2D/live2d-model/Hiyori/motions/Hiyori_m07.motion3.json -------------------------------------------------------------------------------- /Live2D/live2d-model/Hiyori/motions/Hiyori_m08.motion3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/Live2D/live2d-model/Hiyori/motions/Hiyori_m08.motion3.json -------------------------------------------------------------------------------- /Live2D/live2d-model/Hiyori/motions/Hiyori_m09.motion3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/Live2D/live2d-model/Hiyori/motions/Hiyori_m09.motion3.json -------------------------------------------------------------------------------- /Live2D/live2d-model/Hiyori/motions/Hiyori_m10.motion3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/Live2D/live2d-model/Hiyori/motions/Hiyori_m10.motion3.json -------------------------------------------------------------------------------- /Live2D/live2d-model/hibiki/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/Live2D/live2d-model/hibiki/ReadMe.txt -------------------------------------------------------------------------------- /Live2D/live2d-model/hibiki/expressions/Angry.exp3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/Live2D/live2d-model/hibiki/expressions/Angry.exp3.json -------------------------------------------------------------------------------- /Live2D/live2d-model/hibiki/expressions/Blushing.exp3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/Live2D/live2d-model/hibiki/expressions/Blushing.exp3.json -------------------------------------------------------------------------------- /Live2D/live2d-model/hibiki/expressions/Normal.exp3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/Live2D/live2d-model/hibiki/expressions/Normal.exp3.json -------------------------------------------------------------------------------- /Live2D/live2d-model/hibiki/expressions/Sad.exp3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/Live2D/live2d-model/hibiki/expressions/Sad.exp3.json -------------------------------------------------------------------------------- /Live2D/live2d-model/hibiki/expressions/Surprised.exp3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/Live2D/live2d-model/hibiki/expressions/Surprised.exp3.json -------------------------------------------------------------------------------- /Live2D/live2d-model/hibiki/expressions/f01.exp3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/Live2D/live2d-model/hibiki/expressions/f01.exp3.json -------------------------------------------------------------------------------- /Live2D/live2d-model/hibiki/hibiki.2048/texture_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/Live2D/live2d-model/hibiki/hibiki.2048/texture_00.png -------------------------------------------------------------------------------- /Live2D/live2d-model/hibiki/hibiki.cdi3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/Live2D/live2d-model/hibiki/hibiki.cdi3.json -------------------------------------------------------------------------------- /Live2D/live2d-model/hibiki/hibiki.moc3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/Live2D/live2d-model/hibiki/hibiki.moc3 -------------------------------------------------------------------------------- /Live2D/live2d-model/hibiki/hibiki.model3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/Live2D/live2d-model/hibiki/hibiki.model3.json -------------------------------------------------------------------------------- /Live2D/live2d-model/hibiki/hibiki.physics3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/Live2D/live2d-model/hibiki/hibiki.physics3.json -------------------------------------------------------------------------------- /Live2D/live2d-model/hibiki/hibiki_expressions_t01.can3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/Live2D/live2d-model/hibiki/hibiki_expressions_t01.can3 -------------------------------------------------------------------------------- /Live2D/live2d-model/hibiki/hibiki_t01.cmo3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/Live2D/live2d-model/hibiki/hibiki_t01.cmo3 -------------------------------------------------------------------------------- /Live2D/live2d-model/hibiki/hibiki_voice_t01.can3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/Live2D/live2d-model/hibiki/hibiki_voice_t01.can3 -------------------------------------------------------------------------------- /Live2D/live2d-model/hibiki/motion/hibiki_01.motion3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/Live2D/live2d-model/hibiki/motion/hibiki_01.motion3.json -------------------------------------------------------------------------------- /Live2D/live2d-model/hibiki/motion/hibiki_02.motion3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/Live2D/live2d-model/hibiki/motion/hibiki_02.motion3.json -------------------------------------------------------------------------------- /Live2D/live2d-model/hibiki/motion/hibiki_03.motion3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/Live2D/live2d-model/hibiki/motion/hibiki_03.motion3.json -------------------------------------------------------------------------------- /Live2D/live2d-model/hibiki/motion/hibiki_04.motion3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/Live2D/live2d-model/hibiki/motion/hibiki_04.motion3.json -------------------------------------------------------------------------------- /Live2D/live2d-model/hibiki/motion/hibiki_05.motion3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/Live2D/live2d-model/hibiki/motion/hibiki_05.motion3.json -------------------------------------------------------------------------------- /Live2D/live2d-model/hibiki/sounds/hibiki_01.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/Live2D/live2d-model/hibiki/sounds/hibiki_01.wav -------------------------------------------------------------------------------- /Live2D/live2d-model/hibiki/sounds/hibiki_02.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/Live2D/live2d-model/hibiki/sounds/hibiki_02.wav -------------------------------------------------------------------------------- /Live2D/live2d-model/hibiki/sounds/hibiki_03.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/Live2D/live2d-model/hibiki/sounds/hibiki_03.wav -------------------------------------------------------------------------------- /Live2D/live2d-model/hibiki/sounds/hibiki_04.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/Live2D/live2d-model/hibiki/sounds/hibiki_04.wav -------------------------------------------------------------------------------- /Live2D/live2d-model/hibiki/sounds/hibiki_05.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/Live2D/live2d-model/hibiki/sounds/hibiki_05.wav -------------------------------------------------------------------------------- /Live2D/live2d-proload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/Live2D/live2d-proload.js -------------------------------------------------------------------------------- /Live2D/live2d.com_eula_live2d-free-material-license-agreement_cn.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/Live2D/live2d.com_eula_live2d-free-material-license-agreement_cn.html -------------------------------------------------------------------------------- /Live2D/live2d.com_eula_live2d-sample-model-terms_cn.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/Live2D/live2d.com_eula_live2d-sample-model-terms_cn.html -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/README.md -------------------------------------------------------------------------------- /Scripts/1.双击我启动程序.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/Scripts/1.双击我启动程序.bat -------------------------------------------------------------------------------- /Scripts/2-1.强制更新至主线版本(得先安装git).bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/Scripts/2-1.强制更新至主线版本(得先安装git).bat -------------------------------------------------------------------------------- /Scripts/2-2.安装依赖.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/Scripts/2-2.安装依赖.bat -------------------------------------------------------------------------------- /Scripts/2.更新至主线版本(得先安装git).bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/Scripts/2.更新至主线版本(得先安装git).bat -------------------------------------------------------------------------------- /Scripts/3.conda初始化配置.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/Scripts/3.conda初始化配置.bat -------------------------------------------------------------------------------- /Scripts/4.激活conda环境.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/Scripts/4.激活conda环境.bat -------------------------------------------------------------------------------- /Scripts/5.删除demo数据.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/Scripts/5.删除demo数据.bat -------------------------------------------------------------------------------- /Scripts/6.备份配置和数据文件.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | Miniconda3\python.exe bak_config_data.py 3 | 4 | cmd /k -------------------------------------------------------------------------------- /Scripts/6.备份配置和数据文件(存储于backup文件夹).bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | Miniconda3\python.exe bak_config_data.py 3 | 4 | cmd /k -------------------------------------------------------------------------------- /Scripts/7.激活conda环境.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/Scripts/7.激活conda环境.bat -------------------------------------------------------------------------------- /Scripts/半自动/0.请先安装miniconda并手动配置环境变量.bat: -------------------------------------------------------------------------------- 1 | Miniconda3-latest-Windows-x86_64.exe -------------------------------------------------------------------------------- /Scripts/半自动/1.创建虚拟环境.bat: -------------------------------------------------------------------------------- 1 | echo y | conda create -n ai_vtb python=3.10 2 | cmd /k -------------------------------------------------------------------------------- /Scripts/半自动/2-1.安装依赖(请先运行2,然后在2中运行此脚本).bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/Scripts/半自动/2-1.安装依赖(请先运行2,然后在2中运行此脚本).bat -------------------------------------------------------------------------------- /Scripts/半自动/2-2.GUI运行(请先运行2,然后在2中运行此脚本).bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | call activate ai_vtb 3 | python main.py -------------------------------------------------------------------------------- /Scripts/半自动/2.激活环境.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/Scripts/半自动/2.激活环境.bat -------------------------------------------------------------------------------- /Scripts/半自动/3.更新至主线版本(得先安装git).bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/Scripts/半自动/3.更新至主线版本(得先安装git).bat -------------------------------------------------------------------------------- /Scripts/双击运行打开管理员cmd.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/Scripts/双击运行打开管理员cmd.bat -------------------------------------------------------------------------------- /Scripts/旧版脚本/0.请先安装miniconda并手动配置环境变量.bat: -------------------------------------------------------------------------------- 1 | Miniconda3-latest-Windows-x86_64.exe -------------------------------------------------------------------------------- /Scripts/旧版脚本/1-1.GUI运行(请先运行1,然后在1中运行此脚本).bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | venv\python.exe main.py -------------------------------------------------------------------------------- /Scripts/旧版脚本/1.激活环境.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | chcp 65001 3 | call conda activate .\venv 4 | echo 激活成功后,在当前窗口内手动运行命令: 1-1.GUI.bat 5 | cmd /k -------------------------------------------------------------------------------- /Scripts/旧版脚本/2-1.强制更新至主线版本(得先安装git).bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/Scripts/旧版脚本/2-1.强制更新至主线版本(得先安装git).bat -------------------------------------------------------------------------------- /Scripts/旧版脚本/2.更新至主线版本(得先安装git).bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/Scripts/旧版脚本/2.更新至主线版本(得先安装git).bat -------------------------------------------------------------------------------- /Scripts/直播ws脚本/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/Scripts/直播ws脚本/README.md -------------------------------------------------------------------------------- /Scripts/直播ws脚本/douyu_ws_client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/Scripts/直播ws脚本/douyu_ws_client.js -------------------------------------------------------------------------------- /Scripts/直播ws脚本/pdd重定向.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/Scripts/直播ws脚本/pdd重定向.js -------------------------------------------------------------------------------- /Scripts/直播ws脚本/洛曦 直播弹幕监听 转发至本地WS服务端.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/Scripts/直播ws脚本/洛曦 直播弹幕监听 转发至本地WS服务端.js -------------------------------------------------------------------------------- /bak_config_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/bak_config_data.py -------------------------------------------------------------------------------- /chatterbot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/chatterbot/README.md -------------------------------------------------------------------------------- /chatterbot/data/db.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/chatterbot/data/db.txt -------------------------------------------------------------------------------- /chatterbot/data/db.txt.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/chatterbot/data/db.txt.bak -------------------------------------------------------------------------------- /chatterbot/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/chatterbot/train.py -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/config.json -------------------------------------------------------------------------------- /config.json.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/config.json.bak -------------------------------------------------------------------------------- /cookie/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/cookie/README.md -------------------------------------------------------------------------------- /data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/data/README.md -------------------------------------------------------------------------------- /data/badwords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/data/badwords.txt -------------------------------------------------------------------------------- /data/copywriting/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/data/copywriting/test.txt -------------------------------------------------------------------------------- /data/copywriting/伊卡日语介绍.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/data/copywriting/伊卡日语介绍.txt -------------------------------------------------------------------------------- /data/copywriting/吐槽.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/data/copywriting/吐槽.txt -------------------------------------------------------------------------------- /data/copywriting/测试文案.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/data/copywriting/测试文案.txt -------------------------------------------------------------------------------- /data/copywriting/测试文案2.txt: -------------------------------------------------------------------------------- 1 | 这里编辑文案。 2 | 整体逻辑和音频合成基本一致。 3 | 合成的时候请耐心等待。 -------------------------------------------------------------------------------- /data/copywriting/测试文案3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/data/copywriting/测试文案3.txt -------------------------------------------------------------------------------- /data/copywriting/达达利亚.txt: -------------------------------------------------------------------------------- 1 | 不得不说,这几个tts的效果真的绷不住了。散装中文了 -------------------------------------------------------------------------------- /data/copywriting2/test.txt: -------------------------------------------------------------------------------- 1 | 随便测一个看看。 2 | 第二句话 -------------------------------------------------------------------------------- /data/copywriting2/test2.txt: -------------------------------------------------------------------------------- 1 | 随便合成几句。 2 | 测试用 -------------------------------------------------------------------------------- /data/copywriting2/测试文案.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/data/copywriting2/测试文案.txt -------------------------------------------------------------------------------- /data/edge-tts-voice-list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/data/edge-tts-voice-list.txt -------------------------------------------------------------------------------- /data/genshinvoice_top_speak_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/data/genshinvoice_top_speak_list.txt -------------------------------------------------------------------------------- /data/keyboard.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/data/keyboard.txt -------------------------------------------------------------------------------- /data/tiktok礼物价格表.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/data/tiktok礼物价格表.json -------------------------------------------------------------------------------- /data/tts_ai_lab_top_speak_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/data/tts_ai_lab_top_speak_list.txt -------------------------------------------------------------------------------- /data/伊卡洛斯百度百科.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/data/伊卡洛斯百度百科.pdf -------------------------------------------------------------------------------- /data/伊卡洛斯百度百科.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/data/伊卡洛斯百度百科.zip -------------------------------------------------------------------------------- /data/动态文案1/测试文案1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/data/动态文案1/测试文案1.txt -------------------------------------------------------------------------------- /data/动态文案1/测试文案2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/data/动态文案1/测试文案2.txt -------------------------------------------------------------------------------- /data/动态文案2/AI-Vtuber介绍.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/data/动态文案2/AI-Vtuber介绍.txt -------------------------------------------------------------------------------- /data/动态文案2/LLM技术简单讲解.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/data/动态文案2/LLM技术简单讲解.txt -------------------------------------------------------------------------------- /data/动态文案2/STT技术简单讲解.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/data/动态文案2/STT技术简单讲解.txt -------------------------------------------------------------------------------- /data/动态文案2/TTS技术简单讲解.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/data/动态文案2/TTS技术简单讲解.txt -------------------------------------------------------------------------------- /data/动态文案2/VITS技术讲解.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/data/动态文案2/VITS技术讲解.txt -------------------------------------------------------------------------------- /data/动态文案2/邀请观众加群.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/data/动态文案2/邀请观众加群.txt -------------------------------------------------------------------------------- /data/异常报警/llm/大语言模型推理异常,麻烦各位联系我的主人进行修复喵,脑子坏掉啦!.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/data/异常报警/llm/大语言模型推理异常,麻烦各位联系我的主人进行修复喵,脑子坏掉啦!.wav -------------------------------------------------------------------------------- /data/异常报警/platform/平台连接出现异常,麻烦各位联系我的主人进行修复喵,看不见大家的弹幕啦!.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/data/异常报警/platform/平台连接出现异常,麻烦各位联系我的主人进行修复喵,看不见大家的弹幕啦!.wav -------------------------------------------------------------------------------- /data/异常报警/svc/变声异常,麻烦各位联系我的主人进行修复喵,没法说话啦!.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/data/异常报警/svc/变声异常,麻烦各位联系我的主人进行修复喵,没法说话啦!.wav -------------------------------------------------------------------------------- /data/异常报警/tts/文本转语音异常,麻烦各位联系我的主人进行修复喵,没法说话啦!.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/data/异常报警/tts/文本转语音异常,麻烦各位联系我的主人进行修复喵,没法说话啦!.wav -------------------------------------------------------------------------------- /data/异常报警/システムに異常を検出しました。自己修復システムの起動に失敗しました。みなさん、私の主人に連絡してシステムのチェックをお願いできますか。ありがとうございます.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/data/异常报警/システムに異常を検出しました。自己修復システムの起動に失敗しました。みなさん、私の主人に連絡してシステムのチェックをお願いできますか。ありがとうございます.wav -------------------------------------------------------------------------------- /data/异常报警/检测到系统异常,自我修复系统运行失败,希望大家可以联系我的主人进行系统检测,非常感谢.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/data/异常报警/检测到系统异常,自我修复系统运行失败,希望大家可以联系我的主人进行系统检测,非常感谢.wav -------------------------------------------------------------------------------- /data/抖音礼物价格表.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/data/抖音礼物价格表.json -------------------------------------------------------------------------------- /data/本地问答库-助播.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/data/本地问答库-助播.json -------------------------------------------------------------------------------- /data/本地问答库.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/data/本地问答库.json -------------------------------------------------------------------------------- /data/本地问答库.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/data/本地问答库.txt -------------------------------------------------------------------------------- /data/违禁拼音.txt: -------------------------------------------------------------------------------- 1 | 台湾 2 | 紫砂 3 | 傻逼 4 | 也是填违禁词 -------------------------------------------------------------------------------- /data/闲时任务/音频/1.获取对应文件夹内所有文件名.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/data/闲时任务/音频/1.获取对应文件夹内所有文件名.py -------------------------------------------------------------------------------- /data/闲时任务/音频/ai_vtb/AI-Vtuber介绍.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/data/闲时任务/音频/ai_vtb/AI-Vtuber介绍.wav -------------------------------------------------------------------------------- /data/闲时任务/音频/ai_vtb/邀请观众加群.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/data/闲时任务/音频/ai_vtb/邀请观众加群.wav -------------------------------------------------------------------------------- /data/闲时任务/音频/ikaros/不管发生什么,我都会在主人身边.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/data/闲时任务/音频/ikaros/不管发生什么,我都会在主人身边.wav -------------------------------------------------------------------------------- /data/闲时任务/音频/ikaros/不管是谁下的命令,一旦主人有什么三长两短,我决不轻饶.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/data/闲时任务/音频/ikaros/不管是谁下的命令,一旦主人有什么三长两短,我决不轻饶.wav -------------------------------------------------------------------------------- /data/闲时任务/音频/ikaros/主人和我一起开心吗.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/data/闲时任务/音频/ikaros/主人和我一起开心吗.wav -------------------------------------------------------------------------------- /data/闲时任务/音频/ikaros/主人在想些什么呢.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/data/闲时任务/音频/ikaros/主人在想些什么呢.wav -------------------------------------------------------------------------------- /data/闲时任务/音频/ikaros/主人,你刚才是不是说我们会永远在一起.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/data/闲时任务/音频/ikaros/主人,你刚才是不是说我们会永远在一起.wav -------------------------------------------------------------------------------- /data/闲时任务/音频/ikaros/主人,您还好吗.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/data/闲时任务/音频/ikaros/主人,您还好吗.wav -------------------------------------------------------------------------------- /data/闲时任务/音频/ikaros/主人,茶泡好了.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/data/闲时任务/音频/ikaros/主人,茶泡好了.wav -------------------------------------------------------------------------------- /data/闲时任务/音频/ikaros/你醒了吗,主人.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/data/闲时任务/音频/ikaros/你醒了吗,主人.wav -------------------------------------------------------------------------------- /data/闲时任务/音频/ikaros/好想赶快见到主人.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/data/闲时任务/音频/ikaros/好想赶快见到主人.wav -------------------------------------------------------------------------------- /data/闲时任务/音频/ikaros/对了,加油努力,让主人表扬我的话,肯定.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/data/闲时任务/音频/ikaros/对了,加油努力,让主人表扬我的话,肯定.wav -------------------------------------------------------------------------------- /data/闲时任务/音频/ikaros/怎样才能牵主人的手呢.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/data/闲时任务/音频/ikaros/怎样才能牵主人的手呢.wav -------------------------------------------------------------------------------- /data/闲时任务/音频/ikaros/我一点都帮不上主人的忙.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/data/闲时任务/音频/ikaros/我一点都帮不上主人的忙.wav -------------------------------------------------------------------------------- /data/闲时任务/音频/ikaros/我也想牵主人的手.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/data/闲时任务/音频/ikaros/我也想牵主人的手.wav -------------------------------------------------------------------------------- /data/闲时任务/音频/ikaros/我和主人在一起,怎么说呢,心有种轻飘飘的感觉.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/data/闲时任务/音频/ikaros/我和主人在一起,怎么说呢,心有种轻飘飘的感觉.wav -------------------------------------------------------------------------------- /data/闲时任务/音频/ikaros/我想在主人身边,从今往后.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/data/闲时任务/音频/ikaros/我想在主人身边,从今往后.wav -------------------------------------------------------------------------------- /data/闲时任务/音频/ikaros/我是主人最讨厌的兵器,这样瞒住主人真的好吗.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/data/闲时任务/音频/ikaros/我是主人最讨厌的兵器,这样瞒住主人真的好吗.wav -------------------------------------------------------------------------------- /data/闲时任务/音频/ikaros/我是玩赏用天使,我要回到主人的身边.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/data/闲时任务/音频/ikaros/我是玩赏用天使,我要回到主人的身边.wav -------------------------------------------------------------------------------- /data/闲时任务/音频/ikaros/看来我的动力炉,真的出了点毛病,主人.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/data/闲时任务/音频/ikaros/看来我的动力炉,真的出了点毛病,主人.wav -------------------------------------------------------------------------------- /data/闲时任务/音频/ikaros/知道主人在哪里吗.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/data/闲时任务/音频/ikaros/知道主人在哪里吗.wav -------------------------------------------------------------------------------- /data/闲时任务/音频/ikaros/遇到麻烦了吗,主人.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/data/闲时任务/音频/ikaros/遇到麻烦了吗,主人.wav -------------------------------------------------------------------------------- /data/闲时任务/音频/ikaros/那个,主人,睡觉是怎么一回事.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/data/闲时任务/音频/ikaros/那个,主人,睡觉是怎么一回事.wav -------------------------------------------------------------------------------- /docs/AI Vtuber.xmind: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/docs/AI Vtuber.xmind -------------------------------------------------------------------------------- /docs/chart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/docs/chart.jpg -------------------------------------------------------------------------------- /docs/simple_flowchart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/docs/simple_flowchart.png -------------------------------------------------------------------------------- /docs/xmind.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/docs/xmind.png -------------------------------------------------------------------------------- /docs/投资人/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/docs/投资人/bg.png -------------------------------------------------------------------------------- /docs/投资人/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/docs/投资人/index.html -------------------------------------------------------------------------------- /docs/投资人/invest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/docs/投资人/invest.png -------------------------------------------------------------------------------- /dy.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/dy.proto -------------------------------------------------------------------------------- /dy2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/dy2.py -------------------------------------------------------------------------------- /dy_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/dy_pb2.py -------------------------------------------------------------------------------- /game/game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/game/game.py -------------------------------------------------------------------------------- /game/game1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/game/game1.py -------------------------------------------------------------------------------- /game/game2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/game/game2.py -------------------------------------------------------------------------------- /ks.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/ks.proto -------------------------------------------------------------------------------- /ks_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/ks_pb2.py -------------------------------------------------------------------------------- /kuaishou_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/kuaishou_pb2.py -------------------------------------------------------------------------------- /log/README.md: -------------------------------------------------------------------------------- 1 | 此处存放生成的日志文件 -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/main.py -------------------------------------------------------------------------------- /models/README.md: -------------------------------------------------------------------------------- 1 | 此处存放模型文件 -------------------------------------------------------------------------------- /out/README.md: -------------------------------------------------------------------------------- 1 | 此处存放edge-tts合成的音频文件 -------------------------------------------------------------------------------- /out/copywriting/test.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/out/copywriting/test.wav -------------------------------------------------------------------------------- /out/copywriting/伊卡日语介绍.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/out/copywriting/伊卡日语介绍.wav -------------------------------------------------------------------------------- /out/copywriting/吐槽.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/out/copywriting/吐槽.wav -------------------------------------------------------------------------------- /out/copywriting/测试文案.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/out/copywriting/测试文案.mp3 -------------------------------------------------------------------------------- /out/copywriting/测试文案.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/out/copywriting/测试文案.wav -------------------------------------------------------------------------------- /out/copywriting/测试文案2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/out/copywriting/测试文案2.wav -------------------------------------------------------------------------------- /out/copywriting/测试文案3.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/out/copywriting/测试文案3.wav -------------------------------------------------------------------------------- /out/copywriting/达达利亚.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/out/copywriting/达达利亚.wav -------------------------------------------------------------------------------- /out/copywriting2/test.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/out/copywriting2/test.wav -------------------------------------------------------------------------------- /out/copywriting2/test2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/out/copywriting2/test2.wav -------------------------------------------------------------------------------- /out/本地问答音频-助播/好不好.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/out/本地问答音频-助播/好不好.wav -------------------------------------------------------------------------------- /out/本地问答音频-助播/对不对.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/out/本地问答音频-助播/对不对.wav -------------------------------------------------------------------------------- /out/本地问答音频-助播/是不是.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/out/本地问答音频-助播/是不是.wav -------------------------------------------------------------------------------- /out/本地问答音频/关键词1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/out/本地问答音频/关键词1.wav -------------------------------------------------------------------------------- /out/本地问答音频/关键词2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/out/本地问答音频/关键词2.wav -------------------------------------------------------------------------------- /overrides.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/overrides.txt -------------------------------------------------------------------------------- /protobuf/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /protobuf/douyin.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/protobuf/douyin.proto -------------------------------------------------------------------------------- /protobuf/douyin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/protobuf/douyin.py -------------------------------------------------------------------------------- /protobuf/douyin/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/protobuf/douyin/__init__.py -------------------------------------------------------------------------------- /protobuf/protoc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/protobuf/protoc.exe -------------------------------------------------------------------------------- /protobuf/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/protobuf/readme.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/requirements.txt -------------------------------------------------------------------------------- /requirements_common.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/requirements_common.txt -------------------------------------------------------------------------------- /sensevoice/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/sensevoice/LICENSE -------------------------------------------------------------------------------- /sensevoice/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/sensevoice/README.md -------------------------------------------------------------------------------- /sensevoice/README_zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/sensevoice/README_zh.md -------------------------------------------------------------------------------- /sensevoice/data/train_example.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/sensevoice/data/train_example.jsonl -------------------------------------------------------------------------------- /sensevoice/data/val_example.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/sensevoice/data/val_example.jsonl -------------------------------------------------------------------------------- /sensevoice/deepspeed_conf/ds_stage1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/sensevoice/deepspeed_conf/ds_stage1.json -------------------------------------------------------------------------------- /sensevoice/demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/sensevoice/demo.py -------------------------------------------------------------------------------- /sensevoice/demo_funasr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/sensevoice/demo_funasr.py -------------------------------------------------------------------------------- /sensevoice/export_meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/sensevoice/export_meta.py -------------------------------------------------------------------------------- /sensevoice/finetune.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/sensevoice/finetune.sh -------------------------------------------------------------------------------- /sensevoice/image/aed_figure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/sensevoice/image/aed_figure.png -------------------------------------------------------------------------------- /sensevoice/image/asr_results.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/sensevoice/image/asr_results.png -------------------------------------------------------------------------------- /sensevoice/image/inference.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/sensevoice/image/inference.png -------------------------------------------------------------------------------- /sensevoice/image/sensevoice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/sensevoice/image/sensevoice.png -------------------------------------------------------------------------------- /sensevoice/image/sensevoice2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/sensevoice/image/sensevoice2.png -------------------------------------------------------------------------------- /sensevoice/image/ser_figure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/sensevoice/image/ser_figure.png -------------------------------------------------------------------------------- /sensevoice/image/ser_table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/sensevoice/image/ser_table.png -------------------------------------------------------------------------------- /sensevoice/image/webui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/sensevoice/image/webui.png -------------------------------------------------------------------------------- /sensevoice/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/sensevoice/model.py -------------------------------------------------------------------------------- /sensevoice/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/sensevoice/requirements.txt -------------------------------------------------------------------------------- /sensevoice/webui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/sensevoice/webui.py -------------------------------------------------------------------------------- /song/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/song/README.md -------------------------------------------------------------------------------- /tests/README.md: -------------------------------------------------------------------------------- 1 | 此处存放一些测试例程 -------------------------------------------------------------------------------- /tests/test_VALL-E-X/api5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/tests/test_VALL-E-X/api5.py -------------------------------------------------------------------------------- /tests/test_VALL-E-X/ikaros.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/tests/test_VALL-E-X/ikaros.npz -------------------------------------------------------------------------------- /tests/test_aibote/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/tests/test_aibote/1.png -------------------------------------------------------------------------------- /tests/test_aibote/aibote.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/tests/test_aibote/aibote.py -------------------------------------------------------------------------------- /tests/test_anthropic/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/tests/test_anthropic/api.py -------------------------------------------------------------------------------- /tests/test_anythingllm/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/tests/test_anythingllm/api.py -------------------------------------------------------------------------------- /tests/test_baidu/trans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/tests/test_baidu/trans.py -------------------------------------------------------------------------------- /tests/test_bard/qa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/tests/test_bard/qa.py -------------------------------------------------------------------------------- /tests/test_bard/qa2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/tests/test_bard/qa2.py -------------------------------------------------------------------------------- /tests/test_bard/tts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/tests/test_bard/tts.py -------------------------------------------------------------------------------- /tests/test_bark/api1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/tests/test_bark/api1.py -------------------------------------------------------------------------------- /tests/test_bark/api8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/tests/test_bark/api8.py -------------------------------------------------------------------------------- /tests/test_bark/tts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/tests/test_bark/tts.py -------------------------------------------------------------------------------- /tests/test_bark/tts_sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/tests/test_bark/tts_sample.py -------------------------------------------------------------------------------- /tests/test_blivedm/2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/tests/test_blivedm/2.py -------------------------------------------------------------------------------- /tests/test_chatglm/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/tests/test_chatglm/api.py -------------------------------------------------------------------------------- /tests/test_chatgpt/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/tests/test_chatgpt/1.png -------------------------------------------------------------------------------- /tests/test_chatgpt/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/tests/test_chatgpt/api.py -------------------------------------------------------------------------------- /tests/test_chatgpt/vision.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/tests/test_chatgpt/vision.py -------------------------------------------------------------------------------- /tests/test_claude/claude2.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_claude/claude_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/tests/test_claude/claude_api.py -------------------------------------------------------------------------------- /tests/test_claude/unofficial-claude2-api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/tests/test_claude/unofficial-claude2-api.py -------------------------------------------------------------------------------- /tests/test_clone_voice/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/tests/test_clone_voice/api.py -------------------------------------------------------------------------------- /tests/test_common/get_screenshot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/tests/test_common/get_screenshot.py -------------------------------------------------------------------------------- /tests/test_common/subprocess1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/tests/test_common/subprocess1.py -------------------------------------------------------------------------------- /tests/test_cosyvoice/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/tests/test_cosyvoice/api.py -------------------------------------------------------------------------------- /tests/test_cosyvoice/gradio_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/tests/test_cosyvoice/gradio_api.py -------------------------------------------------------------------------------- /tests/test_coze/cn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/tests/test_coze/cn.py -------------------------------------------------------------------------------- /tests/test_custom_api/llm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/tests/test_custom_api/llm.py -------------------------------------------------------------------------------- /tests/test_custom_api/utils/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/tests/test_custom_api/utils/common.py -------------------------------------------------------------------------------- /tests/test_custom_api/utils/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/tests/test_custom_api/utils/logger.py -------------------------------------------------------------------------------- /tests/test_cv2/camera.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/tests/test_cv2/camera.py -------------------------------------------------------------------------------- /tests/test_dify/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/tests/test_dify/api.py -------------------------------------------------------------------------------- /tests/test_faster_whisper/realtime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/tests/test_faster_whisper/realtime.py -------------------------------------------------------------------------------- /tests/test_fish_speech/1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/tests/test_fish_speech/1.wav -------------------------------------------------------------------------------- /tests/test_fish_speech/2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/tests/test_fish_speech/2.wav -------------------------------------------------------------------------------- /tests/test_fish_speech/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/tests/test_fish_speech/api.py -------------------------------------------------------------------------------- /tests/test_fish_speech/web_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/tests/test_fish_speech/web_api.py -------------------------------------------------------------------------------- /tests/test_gemini/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/tests/test_gemini/1.png -------------------------------------------------------------------------------- /tests/test_gemini/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/tests/test_gemini/api.py -------------------------------------------------------------------------------- /tests/test_google/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/tests/test_google/api.py -------------------------------------------------------------------------------- /tests/test_gpt4free/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/tests/test_gpt4free/api.py -------------------------------------------------------------------------------- /tests/test_gpt_sovits/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/tests/test_gpt_sovits/api.py -------------------------------------------------------------------------------- /tests/test_gpt_sovits/api_0706.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/tests/test_gpt_sovits/api_0706.py -------------------------------------------------------------------------------- /tests/test_gpt_sovits/api_v3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/tests/test_gpt_sovits/api_v3.py -------------------------------------------------------------------------------- /tests/test_gpt_sovits/gradio0322.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/tests/test_gpt_sovits/gradio0322.py -------------------------------------------------------------------------------- /tests/test_gpt_sovits/ws.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/tests/test_gpt_sovits/ws.py -------------------------------------------------------------------------------- /tests/test_gradio/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/tests/test_gradio/api.py -------------------------------------------------------------------------------- /tests/test_gradio/f5_tts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/tests/test_gradio/f5_tts.py -------------------------------------------------------------------------------- /tests/test_gradio/genshinvoice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/tests/test_gradio/genshinvoice.py -------------------------------------------------------------------------------- /tests/test_langchain_chatchat/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/tests/test_langchain_chatchat/api.py -------------------------------------------------------------------------------- /tests/test_langchain_chatglm/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_langchain_chatglm/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/tests/test_langchain_chatglm/api.py -------------------------------------------------------------------------------- /tests/test_langchain_chatglm/gradio_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/tests/test_langchain_chatglm/gradio_api.py -------------------------------------------------------------------------------- /tests/test_llm_koboldcpp/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/tests/test_llm_koboldcpp/api.py -------------------------------------------------------------------------------- /tests/test_llm_tpu/gradio_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/tests/test_llm_tpu/gradio_api.py -------------------------------------------------------------------------------- /tests/test_multitts/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/tests/test_multitts/api.py -------------------------------------------------------------------------------- /tests/test_nicegui/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/tests/test_nicegui/db.py -------------------------------------------------------------------------------- /tests/test_nicegui/echart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/tests/test_nicegui/echart.py -------------------------------------------------------------------------------- /tests/test_nicegui/echart_gift.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/tests/test_nicegui/echart_gift.py -------------------------------------------------------------------------------- /tests/test_nicegui/echart_integral.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/tests/test_nicegui/echart_integral.py -------------------------------------------------------------------------------- /tests/test_nicegui/input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/tests/test_nicegui/input.py -------------------------------------------------------------------------------- /tests/test_openai_tts/hf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/tests/test_openai_tts/hf.py -------------------------------------------------------------------------------- /tests/test_poe/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/tests/test_poe/api.py -------------------------------------------------------------------------------- /tests/test_qanything/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/tests/test_qanything/api.py -------------------------------------------------------------------------------- /tests/test_qianfan/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/tests/test_qianfan/api.py -------------------------------------------------------------------------------- /tests/test_reecho_ai/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/tests/test_reecho_ai/api.py -------------------------------------------------------------------------------- /tests/test_sensevoice/demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/tests/test_sensevoice/demo.py -------------------------------------------------------------------------------- /tests/test_sparkdesk/chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/tests/test_sparkdesk/chat.py -------------------------------------------------------------------------------- /tests/test_tencentcloud/tmt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/tests/test_tencentcloud/tmt.py -------------------------------------------------------------------------------- /tests/test_tiktok/tiktok.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/tests/test_tiktok/tiktok.py -------------------------------------------------------------------------------- /tests/test_tiktok/v6.2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/tests/test_tiktok/v6.2.py -------------------------------------------------------------------------------- /tests/test_tiktok/v6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/tests/test_tiktok/v6.py -------------------------------------------------------------------------------- /tests/test_tongyi/cookies.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_tongyi/tongyi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/tests/test_tongyi/tongyi.py -------------------------------------------------------------------------------- /tests/test_tts_azure/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/tests/test_tts_azure/api.py -------------------------------------------------------------------------------- /tests/test_twitch/twitch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/tests/test_twitch/twitch.py -------------------------------------------------------------------------------- /tests/test_vits/gpt-sovits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/tests/test_vits/gpt-sovits.py -------------------------------------------------------------------------------- /tests/test_vits/hf_bert_vits2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/tests/test_vits/hf_bert_vits2.py -------------------------------------------------------------------------------- /tests/test_vits/vits-simple-api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/tests/test_vits/vits-simple-api.py -------------------------------------------------------------------------------- /tests/test_volcengine/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/tests/test_volcengine/api.py -------------------------------------------------------------------------------- /tests/test_wenxinworkshop/demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/tests/test_wenxinworkshop/demo.py -------------------------------------------------------------------------------- /tests/test_xingchen/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/tests/test_xingchen/api.py -------------------------------------------------------------------------------- /tests/test_yiyan/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/tests/test_yiyan/api.py -------------------------------------------------------------------------------- /tests/test_youtube/test_pytchat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/tests/test_youtube/test_pytchat.py -------------------------------------------------------------------------------- /tests/test_zhipu/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/tests/test_zhipu/api.py -------------------------------------------------------------------------------- /tests/test_zhipu/app_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/tests/test_zhipu/app_api.py -------------------------------------------------------------------------------- /tests/test_zhipu/assistant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/tests/test_zhipu/assistant.py -------------------------------------------------------------------------------- /tests/test_zhipu/charglm-3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/tests/test_zhipu/charglm-3.py -------------------------------------------------------------------------------- /tests/test_zhipu/glms_api.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/tests/test_zhipu/glms_api.ipynb -------------------------------------------------------------------------------- /ui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/ui/README.md -------------------------------------------------------------------------------- /ui/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/ui/bg.png -------------------------------------------------------------------------------- /ui/favicon-256.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/ui/favicon-256.ico -------------------------------------------------------------------------------- /ui/favicon-64.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/ui/favicon-64.ico -------------------------------------------------------------------------------- /ui/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/ui/icon.png -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/utils/audio.py -------------------------------------------------------------------------------- /utils/audio_handle/audio_player.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/utils/audio_handle/audio_player.py -------------------------------------------------------------------------------- /utils/audio_handle/my_tts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/utils/audio_handle/my_tts.py -------------------------------------------------------------------------------- /utils/chat_with_file/chat_mode/chat_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/utils/chat_with_file/chat_mode/chat_model.py -------------------------------------------------------------------------------- /utils/chat_with_file/chat_mode/claude_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/utils/chat_with_file/chat_mode/claude_model.py -------------------------------------------------------------------------------- /utils/chat_with_file/chat_mode/openai_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/utils/chat_with_file/chat_mode/openai_model.py -------------------------------------------------------------------------------- /utils/chat_with_file/chat_with_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/utils/chat_with_file/chat_with_file.py -------------------------------------------------------------------------------- /utils/chat_with_file/vector_store/embeddings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/utils/chat_with_file/vector_store/embeddings.py -------------------------------------------------------------------------------- /utils/chat_with_file/vector_store/faiss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/utils/chat_with_file/vector_store/faiss.py -------------------------------------------------------------------------------- /utils/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/utils/common.py -------------------------------------------------------------------------------- /utils/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/utils/config.py -------------------------------------------------------------------------------- /utils/data_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/utils/data_analysis.py -------------------------------------------------------------------------------- /utils/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/utils/db.py -------------------------------------------------------------------------------- /utils/gpt_model/anythingllm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/utils/gpt_model/anythingllm.py -------------------------------------------------------------------------------- /utils/gpt_model/bard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/utils/gpt_model/bard.py -------------------------------------------------------------------------------- /utils/gpt_model/blip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/utils/gpt_model/blip.py -------------------------------------------------------------------------------- /utils/gpt_model/chatchat_bak.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/utils/gpt_model/chatchat_bak.py -------------------------------------------------------------------------------- /utils/gpt_model/chatglm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/utils/gpt_model/chatglm.py -------------------------------------------------------------------------------- /utils/gpt_model/chatgpt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/utils/gpt_model/chatgpt.py -------------------------------------------------------------------------------- /utils/gpt_model/claude.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/utils/gpt_model/claude.py -------------------------------------------------------------------------------- /utils/gpt_model/claude2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/utils/gpt_model/claude2.py -------------------------------------------------------------------------------- /utils/gpt_model/custom_llm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/utils/gpt_model/custom_llm.py -------------------------------------------------------------------------------- /utils/gpt_model/dify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/utils/gpt_model/dify.py -------------------------------------------------------------------------------- /utils/gpt_model/gemini.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/utils/gpt_model/gemini.py -------------------------------------------------------------------------------- /utils/gpt_model/gpt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/utils/gpt_model/gpt.py -------------------------------------------------------------------------------- /utils/gpt_model/gpt4free.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/utils/gpt_model/gpt4free.py -------------------------------------------------------------------------------- /utils/gpt_model/koboldcpp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/utils/gpt_model/koboldcpp.py -------------------------------------------------------------------------------- /utils/gpt_model/langchain_chatchat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/utils/gpt_model/langchain_chatchat.py -------------------------------------------------------------------------------- /utils/gpt_model/langchain_chatglm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/utils/gpt_model/langchain_chatglm.py -------------------------------------------------------------------------------- /utils/gpt_model/llm_tpu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/utils/gpt_model/llm_tpu.py -------------------------------------------------------------------------------- /utils/gpt_model/my_qianfan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/utils/gpt_model/my_qianfan.py -------------------------------------------------------------------------------- /utils/gpt_model/my_wenxinworkshop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/utils/gpt_model/my_wenxinworkshop.py -------------------------------------------------------------------------------- /utils/gpt_model/qanything.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/utils/gpt_model/qanything.py -------------------------------------------------------------------------------- /utils/gpt_model/qwen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/utils/gpt_model/qwen.py -------------------------------------------------------------------------------- /utils/gpt_model/sparkdesk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/utils/gpt_model/sparkdesk.py -------------------------------------------------------------------------------- /utils/gpt_model/text_generation_webui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/utils/gpt_model/text_generation_webui.py -------------------------------------------------------------------------------- /utils/gpt_model/tongyi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/utils/gpt_model/tongyi.py -------------------------------------------------------------------------------- /utils/gpt_model/tongyixingchen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/utils/gpt_model/tongyixingchen.py -------------------------------------------------------------------------------- /utils/gpt_model/volcengine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/utils/gpt_model/volcengine.py -------------------------------------------------------------------------------- /utils/gpt_model/yiyan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/utils/gpt_model/yiyan.py -------------------------------------------------------------------------------- /utils/gpt_model/zhipu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/utils/gpt_model/zhipu.py -------------------------------------------------------------------------------- /utils/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/utils/logger.py -------------------------------------------------------------------------------- /utils/luoxi_project/live_comment_assistant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/utils/luoxi_project/live_comment_assistant.py -------------------------------------------------------------------------------- /utils/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/utils/models.py -------------------------------------------------------------------------------- /utils/my_global.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/utils/my_global.py -------------------------------------------------------------------------------- /utils/my_handle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/utils/my_handle.py -------------------------------------------------------------------------------- /utils/my_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/utils/my_log.py -------------------------------------------------------------------------------- /utils/my_translate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/utils/my_translate.py -------------------------------------------------------------------------------- /utils/my_websocket/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/utils/my_websocket/server.py -------------------------------------------------------------------------------- /utils/platforms/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/platforms/bilibili.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/utils/platforms/bilibili.py -------------------------------------------------------------------------------- /utils/platforms/bilibili2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/utils/platforms/bilibili2.py -------------------------------------------------------------------------------- /utils/platforms/dy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/utils/platforms/dy.py -------------------------------------------------------------------------------- /utils/platforms/dy2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/utils/platforms/dy2.py -------------------------------------------------------------------------------- /utils/platforms/hntv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/utils/platforms/hntv.py -------------------------------------------------------------------------------- /utils/platforms/ks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/utils/platforms/ks.py -------------------------------------------------------------------------------- /utils/platforms/lx_live_monitor_assistant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/utils/platforms/lx_live_monitor_assistant.py -------------------------------------------------------------------------------- /utils/platforms/ordinaryroad_barrage_fly.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/utils/platforms/ordinaryroad_barrage_fly.py -------------------------------------------------------------------------------- /utils/platforms/tiktok.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/utils/platforms/tiktok.py -------------------------------------------------------------------------------- /utils/platforms/twitch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/utils/platforms/twitch.py -------------------------------------------------------------------------------- /utils/platforms/wxlive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/utils/platforms/wxlive.py -------------------------------------------------------------------------------- /utils/platforms/youtube.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/utils/platforms/youtube.py -------------------------------------------------------------------------------- /utils/sd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/utils/sd.py -------------------------------------------------------------------------------- /utils/search_engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/utils/search_engine.py -------------------------------------------------------------------------------- /utils/serial_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/utils/serial_manager.py -------------------------------------------------------------------------------- /utils/serial_manager_instance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/utils/serial_manager_instance.py -------------------------------------------------------------------------------- /utils/thread.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/utils/thread.py -------------------------------------------------------------------------------- /utils/video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/utils/video.py -------------------------------------------------------------------------------- /webui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/webui.py -------------------------------------------------------------------------------- /快手逆向.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ikaros-521/AI-Vtuber/HEAD/快手逆向.js --------------------------------------------------------------------------------