Forgot comma

This commit is contained in:
Yasir Aris M 2024-08-13 21:35:37 +07:00 committed by GitHub
parent 41d1a15ea8
commit 035a6ebfd7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -79,7 +79,7 @@ async def openai_chatbot(self, ctx: Message, strings):
try: try:
response = await ai.chat.completions.create( response = await ai.chat.completions.create(
model="gpt-4o-mini", model="gpt-4o-mini",
messages=[{"role": "user", "content": pertanyaan}] messages=[{"role": "user", "content": pertanyaan}],
temperature=0.7, temperature=0.7,
stream=True, stream=True,
) )