Skip to main content
LibreChat is joining ClickHouse to power the open-source Agentic Data Stack 🎉 Learn more
LibreChat

Model Config 구조

models 아래의 각 항목은 레코드 목록의 일부이며, 불리언(boolean) 값 또는 객체(Object)입니다:

모델을 객체로 지정할 때:

객체를 사용하면 deploymentName 및/또는 version을 포함하여 모델을 세부적으로 구성할 수 있습니다. 이 모드는 특히 단일 인스턴스나 리소스 그룹 하에서 여러 버전이나 배포를 다룰 때 모델을 더 세밀하게 제어하기 위해 사용됩니다.

예시:

models:
  gpt-4-vision-preview:
    deploymentName: "gpt-4-vision-preview"
    version: "2024-02-15-preview"

참고:

  • Deployment NamesVersions는 올바른 모델이 사용되도록 보장하는 데 매우 중요합니다.
    • 예기치 않은 동작을 방지하기 위해 이 값들의 정확성을 다시 한번 확인하세요.

deploymentName

키:

KeyTypeDescriptionExample
deploymentNameStringAzure 내에서 모델의 배포를 식별하는 모델 배포 이름입니다.This does not have to be the matching OpenAI model name as is convention, but must match the actual name of your deployment on Azure.

필수:

예시:

deploymentName: "gpt-4-vision-preview"

version

키:

KeyTypeDescriptionExample
versionString모델의 버전을 지정합니다. 사용할 모델의 버전을 정의합니다.

필수:

예시:

version: "2024-02-15-preview"

기본 그룹 구성을 사용하여 모델 활성화하기

키:

KeyTypeDescriptionExample
modelsBoolean기본 그룹 구성으로 모델을 활성화합니다.When a model is enabled (`true`) without using an object, it uses the group's configuration values for deployment name and version.

예시:

models:
  gpt-4-turbo: true

이 가이드는 어떤가요?