webui / web_demo.py
zhangyi617's picture
Upload folder using huggingface_hub
129cd69
raw
history blame contribute delete
No virus
550 Bytes
import openai
openai.api_key = "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"
openai.api_key = "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"
response = openai.ChatCompletion.create(
model='gpt-4',
messages=[
{"role": "system", "content": "You are a helpful assistant."},
{"role": "user", "content": "Who won the world series in 2020?"},
{"role": "assistant", "content": "The Los Angeles Dodgers won the World Series in 2020."},
{"role": "user", "content": "Where was it played?"}
]
)
print(response)