forked from tonymenzo/heptapod
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.py
More file actions
34 lines (27 loc) · 1.27 KB
/
config.py
File metadata and controls
34 lines (27 loc) · 1.27 KB
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
"""
# config.py is a part of the HEPTAPOD package.
# Copyright (C) 2025 HEPTAPOD authors (see AUTHORS for details).
# HEPTAPOD is licensed under the GNU GPL v3 or later, see LICENSE for details.
# Please respect the MCnet Guidelines, see GUIDELINES for details.
"""
# ============================================================ #
# ================== Ollama LLM Configuration ================ #
# ============================================================ #
# For local Ollama, use None (default)
# For remote Ollama server, set to "http://SERVER_IP:11434"
ollama_host = None # None = localhost:11434 (default)
# Default Ollama model to use
ollama_model = "gpt-oss:20b" # Change to your preferred model
# ============================================================ #
# =================== External dependencies ================== #
# ============================================================ #
# FeynRules PATH.
# Example: "/path/to/FeynRules_v2.3.49"
feynrules_path = "/path/to/FeynRules"
# WolframScript executable PATH.
# Example (macOS): "/Applications/Mathematica.app/Contents/MacOS/wolframscript"
# Example (Linux): "/usr/local/bin/wolframscript"
wolframscript_path = "/path/to/wolframscript"
# MadGraph5_aMC PATH.
# Example: "/path/to/MG5_aMC_v3.6.6"
mg5_path = "/path/to/MG5_aMC"