The remote client example demonstrates the remote server-client functionality:
- Client-Server Architecture: Separating LLM processing from client application
- Server Management: Starting a separater server (server.cpp)
- Remote Client: Connecting a client to an LLM server (main.cpp)
- Remote Agent: Creating an agent based on the client (main.cpp)
dotnet build -c Server
dotnet build -c Client-
Copy a model .gguf file as
model.ggufinside the directory -
Run the server
dotnet run -c Server- Run the client in a second terminal
dotnet run -c Client