├── .gitignore ├── LICENSE ├── README.md ├── SECURITY.md ├── game_simulation ├── .env.template ├── agents │ ├── __init__.py │ └── agent.py ├── locations │ ├── __init__.py │ └── locations.py ├── main.py ├── simulation_config.json ├── simulation_log.txt └── utils │ ├── __init__.py │ └── text_generation.py └── notebook ├── Chinese_generative_model_davinci.ipynb ├── Chinese_generative_model_turbo.ipynb ├── Chinese_story_turbo.ipynb ├── Release └── generative_model_simple.ipynb └── WIP └── demo_01_phandalin_simulation.ipynb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LC1332/Chinese-generative-agents/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LC1332/Chinese-generative-agents/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LC1332/Chinese-generative-agents/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LC1332/Chinese-generative-agents/HEAD/SECURITY.md -------------------------------------------------------------------------------- /game_simulation/.env.template: -------------------------------------------------------------------------------- 1 | OPENAI_API_KEY= -------------------------------------------------------------------------------- /game_simulation/agents/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /game_simulation/agents/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LC1332/Chinese-generative-agents/HEAD/game_simulation/agents/agent.py -------------------------------------------------------------------------------- /game_simulation/locations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /game_simulation/locations/locations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LC1332/Chinese-generative-agents/HEAD/game_simulation/locations/locations.py -------------------------------------------------------------------------------- /game_simulation/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LC1332/Chinese-generative-agents/HEAD/game_simulation/main.py -------------------------------------------------------------------------------- /game_simulation/simulation_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LC1332/Chinese-generative-agents/HEAD/game_simulation/simulation_config.json -------------------------------------------------------------------------------- /game_simulation/simulation_log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LC1332/Chinese-generative-agents/HEAD/game_simulation/simulation_log.txt -------------------------------------------------------------------------------- /game_simulation/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /game_simulation/utils/text_generation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LC1332/Chinese-generative-agents/HEAD/game_simulation/utils/text_generation.py -------------------------------------------------------------------------------- /notebook/Chinese_generative_model_davinci.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LC1332/Chinese-generative-agents/HEAD/notebook/Chinese_generative_model_davinci.ipynb -------------------------------------------------------------------------------- /notebook/Chinese_generative_model_turbo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LC1332/Chinese-generative-agents/HEAD/notebook/Chinese_generative_model_turbo.ipynb -------------------------------------------------------------------------------- /notebook/Chinese_story_turbo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LC1332/Chinese-generative-agents/HEAD/notebook/Chinese_story_turbo.ipynb -------------------------------------------------------------------------------- /notebook/Release/generative_model_simple.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LC1332/Chinese-generative-agents/HEAD/notebook/Release/generative_model_simple.ipynb -------------------------------------------------------------------------------- /notebook/WIP/demo_01_phandalin_simulation.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LC1332/Chinese-generative-agents/HEAD/notebook/WIP/demo_01_phandalin_simulation.ipynb --------------------------------------------------------------------------------