Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion delphi/example.env
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ HOST=localhost
PORT=8080
# Default WARN
LOG_LEVEL=INFO
MATH_ENV=dev

# LLM configuration
# Default is ollama (alternative: anthropic)
Expand Down
8 changes: 0 additions & 8 deletions delphi/polismath/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,11 +57,6 @@ def parse_args() -> argparse.Namespace:
help='Directory for data files'
)

parser.add_argument(
'--math-env',
help='Math environment (dev, prod, preprod)'
)

parser.add_argument(
'--port',
type=int,
Expand Down Expand Up @@ -118,9 +113,6 @@ def main() -> None:
if args.data_dir:
overrides['data_dir'] = args.data_dir

if args.math_env:
overrides['math-env'] = args.math_env

if args.port:
if 'server' not in overrides:
overrides['server'] = {}
Expand Down
Loading
Loading