mirror of
https://github.com/Palm1r/QodeAssist.git
synced 2026-06-14 02:09:22 -04:00
23 lines
620 B
TOML
23 lines
620 B
TOML
schema_version = 1
|
|
|
|
name = "Anthropic Base Chat"
|
|
description = "Anthropic Messages API request body (/v1/messages). Abstract — extend it and set model."
|
|
abstract = true
|
|
|
|
provider_instance = "Claude"
|
|
endpoint = "/v1/messages"
|
|
enable_tools = true
|
|
cache_prompt = true
|
|
tags = ["chat", "claude", "anthropic", "cloud"]
|
|
|
|
system_prompt = """{{ agent_role() }}"""
|
|
|
|
[body]
|
|
max_tokens = 8192
|
|
temperature = 1
|
|
stream = true
|
|
system = """{% if existsIn(ctx, "system_prompt") %}{{ tojson(ctx.system_prompt) }}{% endif %}"""
|
|
messages = """
|
|
[ {% include "partials/anthropic_messages.jinja" %} ]
|
|
"""
|