Description
temperature: (not a big deal since this is configurable)
400 - {'error': {'message': "Unsupported value: 'temperature' does not support 0.1 with this model. Only the default (1) value is supported.", 'type': 'invalid_request_error', 'param': 'temperature', 'code': 'unsupported_value'}}
stop (tokenizer.stop_sequences): this one is more tricky since it gets set by default in PromptTask
400 - {'error': {'message': "Unsupported parameter: 'stop' is not supported with this model.", 'type': 'invalid_request_error', 'param': 'stop', 'code': 'unsupported_parameter'}}
from griptape.drivers.prompt.openai_chat_prompt_driver import OpenAiChatPromptDriver
from griptape.tasks import PromptTask
task = PromptTask(prompt_driver=OpenAiChatPromptDriver(model="o4-mini"))
task.run("Hello there!")