mirror of
https://github.com/Palm1r/QodeAssist.git
synced 2026-06-14 10:19:16 -04:00
22 lines
608 B
TOML
22 lines
608 B
TOML
schema_version = 1
|
|
|
|
name = "Google Base Chat"
|
|
description = "Google Gemini generateContent request body. Abstract — extend it and set model/endpoint."
|
|
abstract = true
|
|
|
|
provider_instance = "Google AI"
|
|
enable_tools = true
|
|
tags = ["chat", "gemini", "google", "cloud"]
|
|
|
|
system_prompt = """{{ agent_role() }}"""
|
|
|
|
[body]
|
|
system_instruction = """{% if existsIn(ctx, "system_prompt") %}{ "parts": [ { "text": {{ tojson(ctx.system_prompt) }} } ] }{% endif %}"""
|
|
contents = """
|
|
[ {% include "partials/google_contents.jinja" %} ]
|
|
"""
|
|
|
|
[body.generationConfig]
|
|
maxOutputTokens = 8192
|
|
temperature = 1
|