├── .gitignore ├── LICENSE ├── README.md ├── goat_storytelling_agent ├── config.py ├── plan.py ├── prompts.py ├── storytelling_agent.py └── utils.py ├── images └── GOAT-story.png ├── pyproject.toml └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | test* 3 | data 4 | build 5 | *.DS_Store 6 | *egg-info 7 | *env 8 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOAT-AI-lab/GOAT-Storytelling-Agent/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOAT-AI-lab/GOAT-Storytelling-Agent/HEAD/README.md -------------------------------------------------------------------------------- /goat_storytelling_agent/config.py: -------------------------------------------------------------------------------- 1 | ENDPOINT = '' # insert text generation endpoint here 2 | -------------------------------------------------------------------------------- /goat_storytelling_agent/plan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOAT-AI-lab/GOAT-Storytelling-Agent/HEAD/goat_storytelling_agent/plan.py -------------------------------------------------------------------------------- /goat_storytelling_agent/prompts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOAT-AI-lab/GOAT-Storytelling-Agent/HEAD/goat_storytelling_agent/prompts.py -------------------------------------------------------------------------------- /goat_storytelling_agent/storytelling_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOAT-AI-lab/GOAT-Storytelling-Agent/HEAD/goat_storytelling_agent/storytelling_agent.py -------------------------------------------------------------------------------- /goat_storytelling_agent/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOAT-AI-lab/GOAT-Storytelling-Agent/HEAD/goat_storytelling_agent/utils.py -------------------------------------------------------------------------------- /images/GOAT-story.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOAT-AI-lab/GOAT-Storytelling-Agent/HEAD/images/GOAT-story.png -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOAT-AI-lab/GOAT-Storytelling-Agent/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GOAT-AI-lab/GOAT-Storytelling-Agent/HEAD/requirements.txt --------------------------------------------------------------------------------