I built a prompt to see how much AI can advance this question.
Your task is to build a graph of all the resources needed to build modern nanometer scale semiconductors starting from raw minerals.
Each node represents either a physical object, either a machine or a consumable used in the supply chain and industrial process to manufacture a die.
The graph should have the following format:
{
"nodes":
[
{
id: ..., #unique integer id for each node
input_nodes: [...], #A list containing all the nodes that are used as input for this node. If the nodes are reusibale (for example machinery) they can be inputs for multiple other nodes. If they are consumables then they are an input for a limited amount of nodes (as many as the amount of material can be used for before running out).
node_description: ..., # Natural language string explaining the physical constitution of the node.
node_manufacturing_description: # Natural language string explaining the process used to construct the node from its inputs.
},
...
]
}