Untitled
unknown
plain_text
2 years ago
250 B
12
Indexable
```python
import openai
openai.api_key = 'your-api-key' # Replace with your API key
response = openai.Completion.create(
engine="davinci",
prompt="Translate the following English text to French: 'Hello, how are you?'",
max_tokens=50
)
Editor is loading...