mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-01 03:27:52 +00:00
9 lines
230 B
Ruby
9 lines
230 B
Ruby
# frozen_string_literal: true
|
|
|
|
module OpenAiConstants
|
|
DEFAULT_MODEL = 'gpt-4.1-mini'
|
|
DEFAULT_ENDPOINT = 'https://api.openai.com'
|
|
DEFAULT_EMBEDDING_MODEL = 'text-embedding-3-small'
|
|
PDF_PROCESSING_MODEL = 'gpt-4.1-mini'
|
|
end
|