mirror of
https://github.com/Palm1r/QodeAssist.git
synced 2026-06-14 10:19:16 -04:00
21 lines
510 B
TOML
21 lines
510 B
TOML
schema_version = 1
|
|
|
|
name = "OpenAI Base Chat"
|
|
description = "OpenAI Chat Completions request body. Abstract — extend it and set provider/endpoint/model."
|
|
abstract = true
|
|
|
|
provider_instance = "OpenAI (Chat Completions)"
|
|
endpoint = "/chat/completions"
|
|
enable_tools = true
|
|
tags = ["chat", "openai", "cloud"]
|
|
|
|
system_prompt = """{{ agent_role() }}"""
|
|
|
|
[body]
|
|
max_tokens = 8192
|
|
temperature = 0.7
|
|
stream = true
|
|
messages = """
|
|
[ {% include "partials/openai_messages.jinja" %} ]
|
|
"""
|