File size: 179 Bytes
5bd6c7f
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
#!/usr/bin/python3

from langchain.llms import OpenAI
import os

llm = OpenAI(temperature=0.9)

text = "Hi, Could you help me choose a Chinese name? For example"
print(llm(text))