mirror of
				https://github.com/lingble/chatwoot.git
				synced 2025-10-30 18:47: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
 | 
