├── LLM ├── __init__.py ├── agents │ ├── conceptulization_agent.py │ └── modeling_agent.py ├── documents │ ├── __init__.py │ ├── add_elements.py │ ├── add_floating_particle.py │ ├── flower_modeling.py │ ├── sky_modelling.py │ ├── terrain.py │ └── tree_modelling.py └── parser.py ├── README.md └── images ├── api_key.png └── main.png /LLM/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LLM/agents/conceptulization_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chuny1/3DGPT/HEAD/LLM/agents/conceptulization_agent.py -------------------------------------------------------------------------------- /LLM/agents/modeling_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chuny1/3DGPT/HEAD/LLM/agents/modeling_agent.py -------------------------------------------------------------------------------- /LLM/documents/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chuny1/3DGPT/HEAD/LLM/documents/__init__.py -------------------------------------------------------------------------------- /LLM/documents/add_elements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chuny1/3DGPT/HEAD/LLM/documents/add_elements.py -------------------------------------------------------------------------------- /LLM/documents/add_floating_particle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chuny1/3DGPT/HEAD/LLM/documents/add_floating_particle.py -------------------------------------------------------------------------------- /LLM/documents/flower_modeling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chuny1/3DGPT/HEAD/LLM/documents/flower_modeling.py -------------------------------------------------------------------------------- /LLM/documents/sky_modelling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chuny1/3DGPT/HEAD/LLM/documents/sky_modelling.py -------------------------------------------------------------------------------- /LLM/documents/terrain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chuny1/3DGPT/HEAD/LLM/documents/terrain.py -------------------------------------------------------------------------------- /LLM/documents/tree_modelling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chuny1/3DGPT/HEAD/LLM/documents/tree_modelling.py -------------------------------------------------------------------------------- /LLM/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chuny1/3DGPT/HEAD/LLM/parser.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chuny1/3DGPT/HEAD/README.md -------------------------------------------------------------------------------- /images/api_key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chuny1/3DGPT/HEAD/images/api_key.png -------------------------------------------------------------------------------- /images/main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chuny1/3DGPT/HEAD/images/main.png --------------------------------------------------------------------------------