The LLM Chatbot example demonstrates how an ICP smart contract can be used to interact with a large language model (LLM) to generate text. The user can input a prompt, and the smart contract will use the LLM to generate a response. The response is then returned to the user, and the user can submit some follow-up prompts to continue the conversation.
When viewing this project in ICP Ninja, you can deploy it directly to the mainnet for free by clicking "Run" in the upper right corner. Open this project in ICP Ninja:
To be able to test the agent locally, you'll need a server for processing the agent's prompts. For that, we'll use ollama, which is a tool that can download and serve LLMs.
See the documentation on the Ollama website to install it. Once it's installed, run:
ollama serve
# Expected to start listening on port 11434
The above command will start the Ollama server, so that it can process requests by the agent. Additionally, and in a separate window, run the following command to download the LLM that will be used by the agent:
ollama run llama3.1:8b
The above command will download an 8B parameter model, which is around 4GiB. Once the command executes and the model is loaded, you can terminate it. You won't need to do this step again.
3. Download your project from ICP Ninja using the 'Download files' button on the upper left corner, or clone the GitHub examples repository.
dfx start --background --clean && dfx deploy
If you base your application on this example, it is recommended that you familiarize yourself with and adhere to the security best practices for developing on ICP. This example may not implement all the best practices.