mirror of
				https://github.com/lingble/chatwoot.git
				synced 2025-11-04 04:57:51 +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
 |