0% found this document useful (0 votes)
172 views1 page

Api

The document is a Python script that sends a POST request to the OpenRouter API for chat completions. It includes headers for authorization and optional site information, and sends a message asking about the content of a specific image URL. The model used for the request is 'google/gemini-2.0-flash-lite-preview-02-05:free'.

Uploaded by

ulifeas
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
172 views1 page

Api

The document is a Python script that sends a POST request to the OpenRouter API for chat completions. It includes headers for authorization and optional site information, and sends a message asking about the content of a specific image URL. The model used for the request is 'google/gemini-2.0-flash-lite-preview-02-05:free'.

Uploaded by

ulifeas
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

import requests

import json

response = requests.post(
url="https://openrouter.ai/api/v1/chat/completions",
headers={
"Authorization": "Bearer <sk-or-v1-
c005bd1347138e8fc89616f1fe16da4f296875ebd9e0e993364a5f1eef96ca9d>",
"Content-Type": "application/json",
"HTTP-Referer": "<YOUR_SITE_URL>", # Optional. Site URL for rankings on
openrouter.ai.
"X-Title": "<YOUR_SITE_NAME>", # Optional. Site title for rankings on
openrouter.ai.
},
data=json.dumps({
"model": "google/gemini-2.0-flash-lite-preview-02-05:free",
"messages": [
{
"role": "user",
"content": [
{
"type": "text",
"text": "What is in this image?"
},
{
"type": "image_url",
"image_url": {
"url":
"https://upload.wikimedia.org/wikipedia/commons/thumb/d/dd/Gfp-wisconsin-madison-
the-nature-boardwalk.jpg/2560px-Gfp-wisconsin-madison-the-nature-boardwalk.jpg"
}
}
]
}
],

})
)

You might also like