mirror of
				https://github.com/nomic-ai/gpt4all.git
				synced 2025-11-04 07:55:24 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
		
			266 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			266 B
		
	
	
	
		
			Python
		
	
	
	
	
	
from api_v1.routes import chat, completions, engines, health
 | 
						|
from fastapi import APIRouter
 | 
						|
 | 
						|
router = APIRouter()
 | 
						|
 | 
						|
router.include_router(chat.router)
 | 
						|
router.include_router(completions.router)
 | 
						|
router.include_router(engines.router)
 | 
						|
router.include_router(health.router)
 |