LLMConfigColumnNames
Ingest your LLM invocation parameters for use in the Prompt Playground
Last updated
Was this helpful?
Ingest your LLM invocation parameters for use in the Prompt Playground
Last updated
Was this helpful?
Arize class to map up to 2 columns: model_column_name
and params_column_name
model_column_name
str
The contents of this column must be strings
Column name for the name of the LLM model used.
params_column_name
str
The contents of this column must be be well formatted JSON strings
Column name for the invocation parameters used at inference
0
gpt-4
{
"temperature": 0.9,
"stop":[".","?"],
"frequency_penalty":"0.0"
}
1
gpt3.5-turbo
{
"temperature": 0.7,
"stop":[".","?"],
"frequency_penalty":"0.2"
}