Debug some error

1. TypeError: Cannot read properties of undefined (reading 'rpcUrl')

If you encounter the error TypeError: Cannot read properties of undefined (reading 'rpcUrl'), it indicates that the environment variable hasn't been properly recognized. Try exporting your environment variable again using the following command

export VANA_PRIVATE_KEY=YOUR_PRIVATE_KEY
export VANA_NETWORK=moksha

2. If this persists, press ctrl-c to exit, then 'ollama pull' to find a faster connection.

Pull a Specific Model: Use the following command, replacing <model_name> with the actual name of the model you want to download (e.g., llama3.2 or any other model you are trying to use):

docker exec -it <CONTAINER_ID> ollama pull llama3.2 

Last updated