Datasets:
File size: 621 Bytes
06f0c14 | 1 2 3 4 5 | {
"source_url": "https://salt.sunbird.ai/sunflower/sunflower/#__codelineno-3-1",
"chunk_id": "100_11",
"text": "ion import requests import json def chatwithsunflower ( messages , apikey , baseurl httpsapi.sunbird.ai ) Send a chat completion request to Sunflower API url f baseurl taskssunflowerinference headers Authorization f Bearer apikey , Content-Type applicationjson payload messages messages , modeltype qwen , temperature 0.3 , stream False try response requests . post ( url , headers headers , json payload , timeout 30 ) response . raiseforstatus () return response . json ("
} |