Files
test-small-llms/suite_settings/techniques.py
Lennart J. Kurzweg (Nx2) 2723ced901 m2
2024-08-25 20:10:53 +02:00

20 lines
457 B
Python

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