mirror of
				https://github.com/hwchase17/langchain.git
				synced 2025-10-31 16:08:59 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			9 lines
		
	
	
		
			181 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			181 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| ```python
 | |
| text = "What would be a good company name for a company that makes colorful socks?"
 | |
| 
 | |
| llm.predict(text)
 | |
| # >> Feetful of Fun
 | |
| 
 | |
| chat_model.predict(text)
 | |
| # >> Socks O'Color
 | |
| ``` |