Spaces:
Running
Running
File size: 1,244 Bytes
b247dc4 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 |
"""Constants."""
from prompt_formatters import (
DuckDBFormatter,
MotherDuckFormatter,
DuckDBInstFormatter,
DuckDBInstNoShorthandFormatter,
RajkumarFormatter,
DuckDBChat,
DuckDBInstFormatterLlamaShort,
DuckDBInstFormatterGraniteShort,
DuckDBInstFormatterLlama,
DuckDBInstFormatterLlamaBasic,
DuckDBInstFormatterGranite,
DuckDBInstFormatterPhi,
DuckDBInstFormatterGPTmini,
DuckDBInstFormatterPhiAzure,
DuckDBInstFormatterLlamaSyntax,
)
PROMPT_FORMATTERS = {
"rajkumar": RajkumarFormatter,
"duckdb": DuckDBFormatter,
"motherduck": MotherDuckFormatter,
"duckdbinst": DuckDBInstFormatter,
"duckdbinstllamashort": DuckDBInstFormatterLlamaShort,
"duckdbinstgraniteshort": DuckDBInstFormatterGraniteShort,
"duckdbinstllama": DuckDBInstFormatterLlama,
"duckdbinstgranite": DuckDBInstFormatterGranite,
"duckdbinstnoshort": DuckDBInstNoShorthandFormatter,
"duckdbchat": DuckDBChat,
"duckdbinstphi": DuckDBInstFormatterPhi,
"duckdbinstgptmini": DuckDBInstFormatterPhi,
"duckdbinstphiazure": DuckDBInstFormatterPhiAzure,
"duckdbinstllamabasic": DuckDBInstFormatterLlamaBasic,
"duckdbinstllamasyntax": DuckDBInstFormatterLlamaSyntax
}
|