GoodMem
ReferenceClient SDKs.NET SDKTypes

LLMProviderType Type

LLMProviderType Type documentation for .NET SDK

Enum Values

NameValueDescription
OPENAIOPENAIOpenAI API service (api.openai.com)
LITELLM_PROXYLITELLM_PROXYLiteLLM proxy for unified model access
OPEN_ROUTEROPEN_ROUTEROpenRouter API gateway service
VLLMVLLMvLLM inference server for high-performance serving
OLLAMAOLLAMAOllama local model runner
LLAMA_CPPLLAMA_CPPllama-cpp-python server implementations
CUSTOM_OPENAI_COMPATIBLECUSTOM_OPENAI_COMPATIBLEAny OpenAI-compatible API endpoint

Usage

Used for specifying the provider type for LLMs in GoodMem.

Example in C#:

var llmRequest = new LLMCreationRequest
{
    DisplayName = "GPT-4",
    ProviderType = LLMProviderType.OPENAI,
    EndpointUrl = "[https://api.openai.com/v1",](https://api.openai.com/v1",)
    ModelIdentifier = "gpt-4"
};

↑ Back to .NET SDK ↑ Back to .NET SDK ↑ Back to .NET SDK

On this page