Files
test-small-llms/suite_settings/techniques.py
Lennart J. Kurzweg (Nx2) 5d7ce3cf71 mf1
2024-08-26 21:20:47 +02:00

20 lines
457 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=False,
for_not_supports_tools=True,
),
572: Technique(
name="T2S", # Tool to System Messsages
for_supports_tools=False,
for_not_supports_tools=True,
),
}