mirror of
https://github.com/Palm1r/QodeAssist.git
synced 2026-07-01 02:29:13 -04:00
17 lines
651 B
TOML
17 lines
651 B
TOML
schema_version = 1
|
|
|
|
extends = "OpenAI Base Responses"
|
|
name = "OpenAI Chat — Responses"
|
|
description = "OpenAI GPT-5.1 — reasoning coding chat via the Responses API. Best for agentic coding; surfaces a reasoning summary (summary=auto) as a thinking block. Uses max_output_tokens + the reasoning object (reasoning models reject temperature)."
|
|
|
|
model = "gpt-5.1"
|
|
enable_tools = true
|
|
enable_thinking = true
|
|
tags = ["chat", "openai", "responses", "cloud"]
|
|
|
|
system_prompt = """{{ read_file(":/roles/qt-cpp-developer.md") }}"""
|
|
|
|
[body]
|
|
max_output_tokens = 32000
|
|
reasoning = { effort = "high", summary = "auto" }
|