Skip to content

Latest commit

 

History

History
35 lines (27 loc) · 1.27 KB

README.md

File metadata and controls

35 lines (27 loc) · 1.27 KB

🦜️🔗 LangChain Chat

preview

This project shows how to make a chat with LLM usgin LangChain and Blazor.

Features

  • chat with any local or paid model
  • have multiple models with any chain configurations(agents, RAG, custom tools, etc...)
  • conversation history and multiple conversations
  • automatic conversation name generation
  • code syntax higlight

Installation

To run the chat with default configuration you would need docker and ollama container. Follow the installation steps for ollama container. When eterything is ready, pull the latest mistral model:

docker exec -it ollama ollama pull mistral:latest

This will take some minutes, depending on your internet speed.

Now clone the project into any folder you like:

git clone https://github.com/TesAnti/LangChainChat.git

Run it with editor of your choise.

Configuration

Just clone the project and open LangChainConfigExtensions.cs file. There you can change your model provider, chain and add more models.

You can change provided from local ollama to ChatGPT or, pretty much, any existing model supported by LangChain. For more information see LangChain wiki.