Skip to content
Open
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
2 changes: 1 addition & 1 deletion frontend/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -1125,7 +1125,7 @@ <h3>Answer:</h3>
let questionCount = 0;

// API base URL
const API_BASE = '';
const API_BASE = window.location.origin;

// Initialize the app
document.addEventListener('DOMContentLoaded', function() {
Expand Down
3 changes: 3 additions & 0 deletions setup_env.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
#!/bin/bash
# set pip mirrors to speedup
Copy link

Copilot AI Sep 18, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The comment 'speedup' should be 'speed up' (two words) for proper grammar.

Suggested change
# set pip mirrors to speedup
# set pip mirrors to speed up

Copilot uses AI. Check for mistakes.
pip config set global.index-url https://mirrors.aliyun.com/pypi/simple
pip config set install.trusted-host mirrors.aliyun.com

# Upgrade pip
echo "📦 Upgrading pip..."
Expand Down