autogen/dotnet/src/AutoGen.LMStudio
Xiaoyun Zhang 9ba14ee15b
Fix dotnet test and reformat dotnet code (#3603)
* fix test

* install aspire workload

* format

* fix build error

* fix format

* format
2024-10-02 14:42:27 -04:00
..
2024-04-26 16:21:46 +00:00

AutoGen.LMStudio

This package provides support for consuming openai-like API from LMStudio local server.

Installation

To use AutoGen.LMStudio, add the following package to your .csproj file:

<ItemGroup>
    <PackageReference Include="AutoGen.LMStudio" Version="AUTOGEN_VERSION" />
</ItemGroup>

Usage

using AutoGen.LMStudio;
var localServerEndpoint = "localhost";
var port = 5000;
var lmStudioConfig = new LMStudioConfig(localServerEndpoint, port);
var agent = new LMStudioAgent(
    name: "agent",
    systemMessage: "You are an agent that help user to do some tasks.",
    lmStudioConfig: lmStudioConfig)
    .RegisterPrintMessage(); // register a hook to print message nicely to console

await agent.SendAsync("Can you write a piece of C# code to calculate 100th of fibonacci?");

Update history

Update on 0.0.7 (2024-02-11)

  • Add LMStudioAgent to support consuming openai-like API from LMStudio local server.