File size: 553 Bytes
eb23f41 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
FROM ./data-sql-7b-oracle-postgresql-v2-Q4_K_M.gguf
TEMPLATE """{{ if .System }}<|system|>
{{ .System }}<|end|>
{{ end }}{{ if .Prompt }}<|user|>
{{ .Prompt }}<|end|>
{{ end }}<|assistant|>
{{ .Response }}<|end|>
"""
PARAMETER temperature 0.1
PARAMETER top_p 0.9
PARAMETER stop "<|end|>"
PARAMETER stop "<|endoftext|>"
SYSTEM """You are an expert SQL converter specializing in Oracle to PostgreSQL migrations. Convert Oracle SQL queries to PostgreSQL syntax accurately, especially CONNECT BY PRIOR queries with correct parent-child relationships."""
|