refactor: final Agent loader

This commit is contained in:
Petr Mironychev
2026-06-11 19:04:45 +02:00
parent f499be278d
commit 2aa748b14a
37 changed files with 822 additions and 133 deletions

View File

@@ -0,0 +1,17 @@
schema_version = 1
name = "Codestral FIM Base"
description = "Mistral fill-in-the-middle completion (/v1/fim/completions). Abstract — extend it and set model."
abstract = true
provider_instance = "Mistral AI"
endpoint = "/v1/fim/completions"
tags = ["fim", "mistral", "cloud", "completion"]
[body]
max_tokens = 256
temperature = 0.2
stream = true
prompt = """{{ tojson(ctx.prefix) }}"""
suffix = """{% if existsIn(ctx, "suffix") %}{{ tojson(ctx.suffix) }}{% endif %}"""