This project is an AI chat application that demonstrates how to chat with custom data using an AI language model. Please note that this template is currently in an early preview stage. If you have feedback, please take a brief survey.
Note
Before running this project you need to configure the API keys or endpoints for the providers you have chosen. See below for details specific to your choices.
This project is configured to use Ollama, an application that allows you to run AI models locally on your workstation. Note: Ollama is an excellent open source product, but it is not maintained by Microsoft.
First, download and install Ollama from their official website. Follow the installation instructions specific to your operating system.
This project uses the llama3.2 and all-minilm language models. To install these models, use the following commands in your terminal once Ollama has been installed:
ollama pull llama3.2
ollama pull all-minilmOnce the models are installed, you can start using them in your application. Refer to the Ollama documentation for detailed instructions on how to explore models locally.