Need Help scraping API
Author: TwangyMoneyCreated Aug 14, 2023Updated May 30, 2024
Can someone help me with this I'm having trouble. It feels really complex for me to understand how this works. This is basically what I'm trying to do: async def generate_response(instructions, history=None): if history is None: data = { "model": "gpt-3.5-turbo-16k-0613", "temperature": 0.75, "messages": [ {"role": "system", "content": instructions}, ], } else: data = { "model": "gpt-3.5-turbo-16k-0613", "temperature": 0.75, "messages": [ {"role": "system", "content": instructions}, *history, ], }
endpoint = "https://gpt4.xunika.uk/api/openai/v1/chat/completions"
headers = {
"Content-Type": "application/json",
"Authorization": f"Bearer ak-wwwchatgptorguk",
}
try:
async with aiohttp.ClientSession() as session:
async with session.post(endpoint, headers=headers, json=data) as response:
response_data = await response.json()
print(f"response_data: {response.status}")
choices = response_data["choices"]
if choices:
return choices[0]["message"]["content"]
except aiohttp.ClientError as error:
print("Error making the request:", error)
How can I implement portia here so it bypasses CloudFlare and gives me my response?Source: scrapinghub/portia