├── .gitignore ├── LICENSE ├── README.md ├── chapter01 └── README.md ├── chapter02 └── simple-sever.py ├── chapter03 └── sse-sample.js ├── chapter04 └── README.md ├── chapter05 ├── README.md ├── Whisper-Large-V3 │ ├── requirements_whisper.txt │ ├── test.m4a │ ├── test.mp3 │ └── whisper-audio.py ├── chatglm3-inference.py ├── gemma-inference.py ├── qwen-vl-inference.py └── requirements.txt ├── chapter06 ├── README.md ├── convert_data.py ├── data │ ├── alpaca_data.json │ └── original_data.txt ├── gemma-train.py ├── prompt.txt └── txt2json.py ├── chapter07 └── README.md ├── chapter08 └── README.md ├── chapter09 ├── README.md └── chat-app │ ├── README.md │ ├── package-lock.json │ ├── package.json │ ├── public │ ├── favicon.ico │ ├── index.html │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── robots.txt │ └── src │ ├── App.css │ ├── App.js │ ├── App.test.js │ ├── chatui-theme.css │ ├── index.css │ ├── index.js │ ├── logo.svg │ ├── reportWebVitals.js │ └── setupTests.js ├── chapter10 ├── README.md ├── code-api.py ├── requirements.txt └── stable-code-inference.py ├── chapter11 ├── README.md └── stable-coder │ ├── .eslintrc.json │ ├── .vscode │ ├── extensions.json │ ├── launch.json │ ├── settings.json │ └── tasks.json │ ├── .vscodeignore │ ├── CHANGELOG.md │ ├── README.md │ ├── package-lock.json │ ├── package.json │ ├── src │ ├── extension.ts │ └── test │ │ ├── runTest.ts │ │ └── suite │ │ ├── extension.test.ts │ │ └── index.ts │ ├── tsconfig.json │ └── vsc-extension-quickstart.md ├── chapter12 ├── README.md ├── documents │ └── README.md ├── rag-demo.py └── requirements.txt ├── chapter13 ├── README.md ├── pdf-trans.py ├── requirements.txt └── sample.pdf ├── chapter14 ├── OAI_CONFIG_LIST ├── README.md ├── agent-group.py ├── autogen-simple.py └── autogen-with-docker.py ├── chapter15 ├── README.md ├── audio-chat │ ├── README.md │ ├── package-lock.json │ ├── package.json │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── logo192.png │ │ ├── logo512.png │ │ ├── manifest.json │ │ └── robots.txt │ └── src │ │ ├── App.css │ │ ├── App.js │ │ ├── App.test.js │ │ ├── chatui-theme.css │ │ ├── index.css │ │ ├── index.js │ │ ├── logo.svg │ │ ├── reportWebVitals.js │ │ └── setupTests.js ├── qwen_audio_api.py ├── qwen_audio_service.py └── requirements_api.txt ├── chapter16 ├── README.md ├── meta-human.py └── tts-test.py ├── chapter17 ├── README.md ├── build_trainfile.py ├── config │ ├── model_config.json │ ├── model_config_small.json │ └── model_config_test.json ├── data │ └── train.txt ├── generate.py ├── make-tokenized.py ├── make-vocab.py ├── requirements-train.txt ├── requirements-vocab.txt ├── tensorboard.exe ├── tokenizations │ ├── thulac_dict │ │ └── seg │ └── tokenization_bert_word_level.py ├── train.py ├── vocab │ └── README.md └── web.py ├── chapter18 ├── README.md └── ai-town │ ├── LICENSE │ ├── README.md │ ├── config │ ├── env.js │ ├── getHttpsConfig.js │ ├── jest │ │ ├── babelTransform.js │ │ ├── cssTransform.js │ │ └── fileTransform.js │ ├── modules.js │ ├── paths.js │ ├── pnpTs.js │ ├── webpack.config.js │ └── webpackDevServer.config.js │ ├── package-lock.json │ ├── package.json │ ├── public │ ├── favicon.ico │ ├── index.html │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ ├── robots.txt │ └── topicform.html │ ├── scripts │ ├── build.js │ ├── start.js │ └── test.js │ └── src │ ├── App.css │ ├── App.js │ ├── PressStart2P-Regular.ttf │ ├── game │ ├── ChatUtils.js │ ├── assets │ │ ├── images │ │ │ ├── coin.png │ │ │ ├── dialog_borderbox.png │ │ │ ├── game_logo.png │ │ │ ├── game_over_background.png │ │ │ ├── health.png │ │ │ ├── heart_container.png │ │ │ ├── main_menu_background.png │ │ │ ├── push.png │ │ │ └── sword.png │ │ └── sprites │ │ │ ├── atlas │ │ │ ├── coin.json │ │ │ ├── coin.png │ │ │ ├── health.json │ │ │ ├── health.png │ │ │ ├── heart.json │ │ │ ├── heart.png │ │ │ ├── hero.json │ │ │ ├── hero.png │ │ │ ├── npc_01.json │ │ │ ├── npc_01.png │ │ │ ├── npc_02.json │ │ │ ├── npc_02.png │ │ │ ├── npc_03.json │ │ │ ├── npc_03.png │ │ │ ├── npc_04.json │ │ │ ├── npc_04.png │ │ │ ├── slime.json │ │ │ └── slime.png │ │ │ └── maps │ │ │ └── tilesets │ │ │ ├── actions_tileset.json │ │ │ ├── actions_tileset.png │ │ │ ├── town.json │ │ │ ├── town.png │ │ │ ├── ui_elements.json │ │ │ └── ui_elements.png │ ├── components │ │ ├── DialogBox.js │ │ ├── GameHint.js │ │ ├── Message.js │ │ ├── ModelDialog.js │ │ ├── TextBox.js │ │ └── ToastBox.js │ ├── constants.js │ ├── scenes │ │ ├── BootScene.js │ │ └── GameScene.js │ └── utils.js │ ├── index.css │ ├── index.js │ ├── logo.svg │ ├── reportWebVitals.js │ └── setupTests.js ├── llm-dev.png └── qr-code.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/README.md -------------------------------------------------------------------------------- /chapter01/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter01/README.md -------------------------------------------------------------------------------- /chapter02/simple-sever.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter02/simple-sever.py -------------------------------------------------------------------------------- /chapter03/sse-sample.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter03/sse-sample.js -------------------------------------------------------------------------------- /chapter04/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter04/README.md -------------------------------------------------------------------------------- /chapter05/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter05/README.md -------------------------------------------------------------------------------- /chapter05/Whisper-Large-V3/requirements_whisper.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter05/Whisper-Large-V3/requirements_whisper.txt -------------------------------------------------------------------------------- /chapter05/Whisper-Large-V3/test.m4a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter05/Whisper-Large-V3/test.m4a -------------------------------------------------------------------------------- /chapter05/Whisper-Large-V3/test.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter05/Whisper-Large-V3/test.mp3 -------------------------------------------------------------------------------- /chapter05/Whisper-Large-V3/whisper-audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter05/Whisper-Large-V3/whisper-audio.py -------------------------------------------------------------------------------- /chapter05/chatglm3-inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter05/chatglm3-inference.py -------------------------------------------------------------------------------- /chapter05/gemma-inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter05/gemma-inference.py -------------------------------------------------------------------------------- /chapter05/qwen-vl-inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter05/qwen-vl-inference.py -------------------------------------------------------------------------------- /chapter05/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter05/requirements.txt -------------------------------------------------------------------------------- /chapter06/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter06/README.md -------------------------------------------------------------------------------- /chapter06/convert_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter06/convert_data.py -------------------------------------------------------------------------------- /chapter06/data/alpaca_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter06/data/alpaca_data.json -------------------------------------------------------------------------------- /chapter06/data/original_data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter06/data/original_data.txt -------------------------------------------------------------------------------- /chapter06/gemma-train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter06/gemma-train.py -------------------------------------------------------------------------------- /chapter06/prompt.txt: -------------------------------------------------------------------------------- 1 | 高血压要注意哪些方面? -------------------------------------------------------------------------------- /chapter06/txt2json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter06/txt2json.py -------------------------------------------------------------------------------- /chapter07/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter07/README.md -------------------------------------------------------------------------------- /chapter08/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter08/README.md -------------------------------------------------------------------------------- /chapter09/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter09/README.md -------------------------------------------------------------------------------- /chapter09/chat-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter09/chat-app/README.md -------------------------------------------------------------------------------- /chapter09/chat-app/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter09/chat-app/package-lock.json -------------------------------------------------------------------------------- /chapter09/chat-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter09/chat-app/package.json -------------------------------------------------------------------------------- /chapter09/chat-app/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter09/chat-app/public/favicon.ico -------------------------------------------------------------------------------- /chapter09/chat-app/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter09/chat-app/public/index.html -------------------------------------------------------------------------------- /chapter09/chat-app/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter09/chat-app/public/logo192.png -------------------------------------------------------------------------------- /chapter09/chat-app/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter09/chat-app/public/logo512.png -------------------------------------------------------------------------------- /chapter09/chat-app/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter09/chat-app/public/manifest.json -------------------------------------------------------------------------------- /chapter09/chat-app/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter09/chat-app/public/robots.txt -------------------------------------------------------------------------------- /chapter09/chat-app/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter09/chat-app/src/App.css -------------------------------------------------------------------------------- /chapter09/chat-app/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter09/chat-app/src/App.js -------------------------------------------------------------------------------- /chapter09/chat-app/src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter09/chat-app/src/App.test.js -------------------------------------------------------------------------------- /chapter09/chat-app/src/chatui-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter09/chat-app/src/chatui-theme.css -------------------------------------------------------------------------------- /chapter09/chat-app/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter09/chat-app/src/index.css -------------------------------------------------------------------------------- /chapter09/chat-app/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter09/chat-app/src/index.js -------------------------------------------------------------------------------- /chapter09/chat-app/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter09/chat-app/src/logo.svg -------------------------------------------------------------------------------- /chapter09/chat-app/src/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter09/chat-app/src/reportWebVitals.js -------------------------------------------------------------------------------- /chapter09/chat-app/src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter09/chat-app/src/setupTests.js -------------------------------------------------------------------------------- /chapter10/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter10/README.md -------------------------------------------------------------------------------- /chapter10/code-api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter10/code-api.py -------------------------------------------------------------------------------- /chapter10/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter10/requirements.txt -------------------------------------------------------------------------------- /chapter10/stable-code-inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter10/stable-code-inference.py -------------------------------------------------------------------------------- /chapter11/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter11/README.md -------------------------------------------------------------------------------- /chapter11/stable-coder/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter11/stable-coder/.eslintrc.json -------------------------------------------------------------------------------- /chapter11/stable-coder/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter11/stable-coder/.vscode/extensions.json -------------------------------------------------------------------------------- /chapter11/stable-coder/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter11/stable-coder/.vscode/launch.json -------------------------------------------------------------------------------- /chapter11/stable-coder/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter11/stable-coder/.vscode/settings.json -------------------------------------------------------------------------------- /chapter11/stable-coder/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter11/stable-coder/.vscode/tasks.json -------------------------------------------------------------------------------- /chapter11/stable-coder/.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter11/stable-coder/.vscodeignore -------------------------------------------------------------------------------- /chapter11/stable-coder/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter11/stable-coder/CHANGELOG.md -------------------------------------------------------------------------------- /chapter11/stable-coder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter11/stable-coder/README.md -------------------------------------------------------------------------------- /chapter11/stable-coder/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter11/stable-coder/package-lock.json -------------------------------------------------------------------------------- /chapter11/stable-coder/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter11/stable-coder/package.json -------------------------------------------------------------------------------- /chapter11/stable-coder/src/extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter11/stable-coder/src/extension.ts -------------------------------------------------------------------------------- /chapter11/stable-coder/src/test/runTest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter11/stable-coder/src/test/runTest.ts -------------------------------------------------------------------------------- /chapter11/stable-coder/src/test/suite/extension.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter11/stable-coder/src/test/suite/extension.test.ts -------------------------------------------------------------------------------- /chapter11/stable-coder/src/test/suite/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter11/stable-coder/src/test/suite/index.ts -------------------------------------------------------------------------------- /chapter11/stable-coder/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter11/stable-coder/tsconfig.json -------------------------------------------------------------------------------- /chapter11/stable-coder/vsc-extension-quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter11/stable-coder/vsc-extension-quickstart.md -------------------------------------------------------------------------------- /chapter12/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter12/README.md -------------------------------------------------------------------------------- /chapter12/documents/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter12/documents/README.md -------------------------------------------------------------------------------- /chapter12/rag-demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter12/rag-demo.py -------------------------------------------------------------------------------- /chapter12/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter12/requirements.txt -------------------------------------------------------------------------------- /chapter13/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter13/README.md -------------------------------------------------------------------------------- /chapter13/pdf-trans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter13/pdf-trans.py -------------------------------------------------------------------------------- /chapter13/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter13/requirements.txt -------------------------------------------------------------------------------- /chapter13/sample.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter13/sample.pdf -------------------------------------------------------------------------------- /chapter14/OAI_CONFIG_LIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter14/OAI_CONFIG_LIST -------------------------------------------------------------------------------- /chapter14/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter14/README.md -------------------------------------------------------------------------------- /chapter14/agent-group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter14/agent-group.py -------------------------------------------------------------------------------- /chapter14/autogen-simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter14/autogen-simple.py -------------------------------------------------------------------------------- /chapter14/autogen-with-docker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter14/autogen-with-docker.py -------------------------------------------------------------------------------- /chapter15/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter15/README.md -------------------------------------------------------------------------------- /chapter15/audio-chat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter15/audio-chat/README.md -------------------------------------------------------------------------------- /chapter15/audio-chat/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter15/audio-chat/package-lock.json -------------------------------------------------------------------------------- /chapter15/audio-chat/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter15/audio-chat/package.json -------------------------------------------------------------------------------- /chapter15/audio-chat/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter15/audio-chat/public/favicon.ico -------------------------------------------------------------------------------- /chapter15/audio-chat/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter15/audio-chat/public/index.html -------------------------------------------------------------------------------- /chapter15/audio-chat/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter15/audio-chat/public/logo192.png -------------------------------------------------------------------------------- /chapter15/audio-chat/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter15/audio-chat/public/logo512.png -------------------------------------------------------------------------------- /chapter15/audio-chat/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter15/audio-chat/public/manifest.json -------------------------------------------------------------------------------- /chapter15/audio-chat/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter15/audio-chat/public/robots.txt -------------------------------------------------------------------------------- /chapter15/audio-chat/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter15/audio-chat/src/App.css -------------------------------------------------------------------------------- /chapter15/audio-chat/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter15/audio-chat/src/App.js -------------------------------------------------------------------------------- /chapter15/audio-chat/src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter15/audio-chat/src/App.test.js -------------------------------------------------------------------------------- /chapter15/audio-chat/src/chatui-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter15/audio-chat/src/chatui-theme.css -------------------------------------------------------------------------------- /chapter15/audio-chat/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter15/audio-chat/src/index.css -------------------------------------------------------------------------------- /chapter15/audio-chat/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter15/audio-chat/src/index.js -------------------------------------------------------------------------------- /chapter15/audio-chat/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter15/audio-chat/src/logo.svg -------------------------------------------------------------------------------- /chapter15/audio-chat/src/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter15/audio-chat/src/reportWebVitals.js -------------------------------------------------------------------------------- /chapter15/audio-chat/src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter15/audio-chat/src/setupTests.js -------------------------------------------------------------------------------- /chapter15/qwen_audio_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter15/qwen_audio_api.py -------------------------------------------------------------------------------- /chapter15/qwen_audio_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter15/qwen_audio_service.py -------------------------------------------------------------------------------- /chapter15/requirements_api.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter15/requirements_api.txt -------------------------------------------------------------------------------- /chapter16/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter16/README.md -------------------------------------------------------------------------------- /chapter16/meta-human.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter16/meta-human.py -------------------------------------------------------------------------------- /chapter16/tts-test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter16/tts-test.py -------------------------------------------------------------------------------- /chapter17/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter17/README.md -------------------------------------------------------------------------------- /chapter17/build_trainfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter17/build_trainfile.py -------------------------------------------------------------------------------- /chapter17/config/model_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter17/config/model_config.json -------------------------------------------------------------------------------- /chapter17/config/model_config_small.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter17/config/model_config_small.json -------------------------------------------------------------------------------- /chapter17/config/model_config_test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter17/config/model_config_test.json -------------------------------------------------------------------------------- /chapter17/data/train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter17/data/train.txt -------------------------------------------------------------------------------- /chapter17/generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter17/generate.py -------------------------------------------------------------------------------- /chapter17/make-tokenized.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter17/make-tokenized.py -------------------------------------------------------------------------------- /chapter17/make-vocab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter17/make-vocab.py -------------------------------------------------------------------------------- /chapter17/requirements-train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter17/requirements-train.txt -------------------------------------------------------------------------------- /chapter17/requirements-vocab.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter17/requirements-vocab.txt -------------------------------------------------------------------------------- /chapter17/tensorboard.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter17/tensorboard.exe -------------------------------------------------------------------------------- /chapter17/tokenizations/thulac_dict/seg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter17/tokenizations/thulac_dict/seg -------------------------------------------------------------------------------- /chapter17/tokenizations/tokenization_bert_word_level.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter17/tokenizations/tokenization_bert_word_level.py -------------------------------------------------------------------------------- /chapter17/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter17/train.py -------------------------------------------------------------------------------- /chapter17/vocab/README.md: -------------------------------------------------------------------------------- 1 | 词汇表目录 -------------------------------------------------------------------------------- /chapter17/web.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter17/web.py -------------------------------------------------------------------------------- /chapter18/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter18/README.md -------------------------------------------------------------------------------- /chapter18/ai-town/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter18/ai-town/LICENSE -------------------------------------------------------------------------------- /chapter18/ai-town/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter18/ai-town/README.md -------------------------------------------------------------------------------- /chapter18/ai-town/config/env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter18/ai-town/config/env.js -------------------------------------------------------------------------------- /chapter18/ai-town/config/getHttpsConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter18/ai-town/config/getHttpsConfig.js -------------------------------------------------------------------------------- /chapter18/ai-town/config/jest/babelTransform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter18/ai-town/config/jest/babelTransform.js -------------------------------------------------------------------------------- /chapter18/ai-town/config/jest/cssTransform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter18/ai-town/config/jest/cssTransform.js -------------------------------------------------------------------------------- /chapter18/ai-town/config/jest/fileTransform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter18/ai-town/config/jest/fileTransform.js -------------------------------------------------------------------------------- /chapter18/ai-town/config/modules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter18/ai-town/config/modules.js -------------------------------------------------------------------------------- /chapter18/ai-town/config/paths.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter18/ai-town/config/paths.js -------------------------------------------------------------------------------- /chapter18/ai-town/config/pnpTs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter18/ai-town/config/pnpTs.js -------------------------------------------------------------------------------- /chapter18/ai-town/config/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter18/ai-town/config/webpack.config.js -------------------------------------------------------------------------------- /chapter18/ai-town/config/webpackDevServer.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter18/ai-town/config/webpackDevServer.config.js -------------------------------------------------------------------------------- /chapter18/ai-town/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter18/ai-town/package-lock.json -------------------------------------------------------------------------------- /chapter18/ai-town/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter18/ai-town/package.json -------------------------------------------------------------------------------- /chapter18/ai-town/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter18/ai-town/public/favicon.ico -------------------------------------------------------------------------------- /chapter18/ai-town/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter18/ai-town/public/index.html -------------------------------------------------------------------------------- /chapter18/ai-town/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter18/ai-town/public/logo192.png -------------------------------------------------------------------------------- /chapter18/ai-town/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter18/ai-town/public/logo512.png -------------------------------------------------------------------------------- /chapter18/ai-town/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter18/ai-town/public/manifest.json -------------------------------------------------------------------------------- /chapter18/ai-town/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter18/ai-town/public/robots.txt -------------------------------------------------------------------------------- /chapter18/ai-town/public/topicform.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter18/ai-town/public/topicform.html -------------------------------------------------------------------------------- /chapter18/ai-town/scripts/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter18/ai-town/scripts/build.js -------------------------------------------------------------------------------- /chapter18/ai-town/scripts/start.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter18/ai-town/scripts/start.js -------------------------------------------------------------------------------- /chapter18/ai-town/scripts/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter18/ai-town/scripts/test.js -------------------------------------------------------------------------------- /chapter18/ai-town/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter18/ai-town/src/App.css -------------------------------------------------------------------------------- /chapter18/ai-town/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter18/ai-town/src/App.js -------------------------------------------------------------------------------- /chapter18/ai-town/src/PressStart2P-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter18/ai-town/src/PressStart2P-Regular.ttf -------------------------------------------------------------------------------- /chapter18/ai-town/src/game/ChatUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter18/ai-town/src/game/ChatUtils.js -------------------------------------------------------------------------------- /chapter18/ai-town/src/game/assets/images/coin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter18/ai-town/src/game/assets/images/coin.png -------------------------------------------------------------------------------- /chapter18/ai-town/src/game/assets/images/dialog_borderbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter18/ai-town/src/game/assets/images/dialog_borderbox.png -------------------------------------------------------------------------------- /chapter18/ai-town/src/game/assets/images/game_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter18/ai-town/src/game/assets/images/game_logo.png -------------------------------------------------------------------------------- /chapter18/ai-town/src/game/assets/images/game_over_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter18/ai-town/src/game/assets/images/game_over_background.png -------------------------------------------------------------------------------- /chapter18/ai-town/src/game/assets/images/health.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter18/ai-town/src/game/assets/images/health.png -------------------------------------------------------------------------------- /chapter18/ai-town/src/game/assets/images/heart_container.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter18/ai-town/src/game/assets/images/heart_container.png -------------------------------------------------------------------------------- /chapter18/ai-town/src/game/assets/images/main_menu_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter18/ai-town/src/game/assets/images/main_menu_background.png -------------------------------------------------------------------------------- /chapter18/ai-town/src/game/assets/images/push.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter18/ai-town/src/game/assets/images/push.png -------------------------------------------------------------------------------- /chapter18/ai-town/src/game/assets/images/sword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter18/ai-town/src/game/assets/images/sword.png -------------------------------------------------------------------------------- /chapter18/ai-town/src/game/assets/sprites/atlas/coin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter18/ai-town/src/game/assets/sprites/atlas/coin.json -------------------------------------------------------------------------------- /chapter18/ai-town/src/game/assets/sprites/atlas/coin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter18/ai-town/src/game/assets/sprites/atlas/coin.png -------------------------------------------------------------------------------- /chapter18/ai-town/src/game/assets/sprites/atlas/health.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter18/ai-town/src/game/assets/sprites/atlas/health.json -------------------------------------------------------------------------------- /chapter18/ai-town/src/game/assets/sprites/atlas/health.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter18/ai-town/src/game/assets/sprites/atlas/health.png -------------------------------------------------------------------------------- /chapter18/ai-town/src/game/assets/sprites/atlas/heart.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter18/ai-town/src/game/assets/sprites/atlas/heart.json -------------------------------------------------------------------------------- /chapter18/ai-town/src/game/assets/sprites/atlas/heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter18/ai-town/src/game/assets/sprites/atlas/heart.png -------------------------------------------------------------------------------- /chapter18/ai-town/src/game/assets/sprites/atlas/hero.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter18/ai-town/src/game/assets/sprites/atlas/hero.json -------------------------------------------------------------------------------- /chapter18/ai-town/src/game/assets/sprites/atlas/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter18/ai-town/src/game/assets/sprites/atlas/hero.png -------------------------------------------------------------------------------- /chapter18/ai-town/src/game/assets/sprites/atlas/npc_01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter18/ai-town/src/game/assets/sprites/atlas/npc_01.json -------------------------------------------------------------------------------- /chapter18/ai-town/src/game/assets/sprites/atlas/npc_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter18/ai-town/src/game/assets/sprites/atlas/npc_01.png -------------------------------------------------------------------------------- /chapter18/ai-town/src/game/assets/sprites/atlas/npc_02.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter18/ai-town/src/game/assets/sprites/atlas/npc_02.json -------------------------------------------------------------------------------- /chapter18/ai-town/src/game/assets/sprites/atlas/npc_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter18/ai-town/src/game/assets/sprites/atlas/npc_02.png -------------------------------------------------------------------------------- /chapter18/ai-town/src/game/assets/sprites/atlas/npc_03.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter18/ai-town/src/game/assets/sprites/atlas/npc_03.json -------------------------------------------------------------------------------- /chapter18/ai-town/src/game/assets/sprites/atlas/npc_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter18/ai-town/src/game/assets/sprites/atlas/npc_03.png -------------------------------------------------------------------------------- /chapter18/ai-town/src/game/assets/sprites/atlas/npc_04.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter18/ai-town/src/game/assets/sprites/atlas/npc_04.json -------------------------------------------------------------------------------- /chapter18/ai-town/src/game/assets/sprites/atlas/npc_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter18/ai-town/src/game/assets/sprites/atlas/npc_04.png -------------------------------------------------------------------------------- /chapter18/ai-town/src/game/assets/sprites/atlas/slime.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter18/ai-town/src/game/assets/sprites/atlas/slime.json -------------------------------------------------------------------------------- /chapter18/ai-town/src/game/assets/sprites/atlas/slime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter18/ai-town/src/game/assets/sprites/atlas/slime.png -------------------------------------------------------------------------------- /chapter18/ai-town/src/game/assets/sprites/maps/tilesets/actions_tileset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter18/ai-town/src/game/assets/sprites/maps/tilesets/actions_tileset.json -------------------------------------------------------------------------------- /chapter18/ai-town/src/game/assets/sprites/maps/tilesets/actions_tileset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter18/ai-town/src/game/assets/sprites/maps/tilesets/actions_tileset.png -------------------------------------------------------------------------------- /chapter18/ai-town/src/game/assets/sprites/maps/tilesets/town.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter18/ai-town/src/game/assets/sprites/maps/tilesets/town.json -------------------------------------------------------------------------------- /chapter18/ai-town/src/game/assets/sprites/maps/tilesets/town.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter18/ai-town/src/game/assets/sprites/maps/tilesets/town.png -------------------------------------------------------------------------------- /chapter18/ai-town/src/game/assets/sprites/maps/tilesets/ui_elements.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter18/ai-town/src/game/assets/sprites/maps/tilesets/ui_elements.json -------------------------------------------------------------------------------- /chapter18/ai-town/src/game/assets/sprites/maps/tilesets/ui_elements.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter18/ai-town/src/game/assets/sprites/maps/tilesets/ui_elements.png -------------------------------------------------------------------------------- /chapter18/ai-town/src/game/components/DialogBox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter18/ai-town/src/game/components/DialogBox.js -------------------------------------------------------------------------------- /chapter18/ai-town/src/game/components/GameHint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter18/ai-town/src/game/components/GameHint.js -------------------------------------------------------------------------------- /chapter18/ai-town/src/game/components/Message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter18/ai-town/src/game/components/Message.js -------------------------------------------------------------------------------- /chapter18/ai-town/src/game/components/ModelDialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter18/ai-town/src/game/components/ModelDialog.js -------------------------------------------------------------------------------- /chapter18/ai-town/src/game/components/TextBox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter18/ai-town/src/game/components/TextBox.js -------------------------------------------------------------------------------- /chapter18/ai-town/src/game/components/ToastBox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter18/ai-town/src/game/components/ToastBox.js -------------------------------------------------------------------------------- /chapter18/ai-town/src/game/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter18/ai-town/src/game/constants.js -------------------------------------------------------------------------------- /chapter18/ai-town/src/game/scenes/BootScene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter18/ai-town/src/game/scenes/BootScene.js -------------------------------------------------------------------------------- /chapter18/ai-town/src/game/scenes/GameScene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter18/ai-town/src/game/scenes/GameScene.js -------------------------------------------------------------------------------- /chapter18/ai-town/src/game/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter18/ai-town/src/game/utils.js -------------------------------------------------------------------------------- /chapter18/ai-town/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter18/ai-town/src/index.css -------------------------------------------------------------------------------- /chapter18/ai-town/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter18/ai-town/src/index.js -------------------------------------------------------------------------------- /chapter18/ai-town/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter18/ai-town/src/logo.svg -------------------------------------------------------------------------------- /chapter18/ai-town/src/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter18/ai-town/src/reportWebVitals.js -------------------------------------------------------------------------------- /chapter18/ai-town/src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/chapter18/ai-town/src/setupTests.js -------------------------------------------------------------------------------- /llm-dev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/llm-dev.png -------------------------------------------------------------------------------- /qr-code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/little51/llm-dev/HEAD/qr-code.png --------------------------------------------------------------------------------