Files
test-small-llms/suite_settings/techniques.py
Lennart J. Kurzweg (Nx2) 209c5850e9 values ++
2024-08-27 17:36:51 +02:00

20 lines
455 B
Python

from libs.classes import Technique
techniques = {
1: Technique(
name="Native",
for_supports_tools=True,
for_not_supports_tools=False,
),
903: Technique(
name="LSM", # Long System Message
for_supports_tools=True,
for_not_supports_tools=True,
),
572: Technique(
name="T2S", # Tool to System Messsages
for_supports_tools=True,
for_not_supports_tools=True,
),
}