Track Request
Track request allows you to send your LLM request to our platform. On success, this request will return a request_id
which is necessary for track-score
Logging OpenAI Requests
You can use the following scripts to log requests made to OpenAI’s API. This will help you to track the request and response of the API.
Logging Google Requests
You can use the following scripts to log requests made to Google’s Gemini API. This will help you to track the request and response of the API.
GOOGLE_API_KEY
from hereBody
The name of the function. For example, if you are using OpenAI it should be either openai.Completion.create
or openai.ChatCompletion.create
. These are specific function signatures that PromptLayer uses to parse the request_response
. Some integration libraries use special function_name
's such as langchain.PromptLayerChatOpenAI
.
Keyword arguments that are passed into the LLM (such as OpenAI's API). Normally it should include engine
and prompt
at the very least. If you are using a chat completion or GPT-4, it should include messages
instead of prompt
.
The LLM response. This response must be formatted exactly in OpenAI's response format.
The time at which the LLM request was initiated.
The time at which the LLM request was completed.
The API key for authentication.
An array of string tags to tag this request on the PromptLayer dashboard.
The ID of the prompt in the PromptLayer Registry that you used for this request (see /prompt-templates/{identifier}
on how to get this id or you can get it from the URL in the dashboard).
The input variables you used for a template. This is used for syntax highlighting and, more importantly used, for backtesting when you want to iterate a prompt.
It is the version of the prompt that you are trying to track. This should be an integer of a prompt that you are tracking.
The ID of the group that you want to associate with this request. This is useful for tracking requests that are part of a group, such as a conversation or a session.
If you want to return the data that is associated with the request, set this to true
. This will return the request_id and the request data.
Response
The unique identifier for the tracked request.
The prompt blueprint that was used for this request.
Was this page helpful?