```python from langchain.llms import OpenAI llm = OpenAI(temperature=0.9) ``` And now we can pass in text and get predictions! ```python llm.predict("What would be a good company name for a company that makes colorful socks?") # >> Feetful of Fun ```