Skip to content

Commit e080399

Browse files
committed
bugfix: clear some useless file and debug code
1 parent 8f97fab commit e080399

5 files changed

Lines changed: 4 additions & 119 deletions

File tree

conftest.py

Lines changed: 0 additions & 12 deletions
This file was deleted.

setup.py

Lines changed: 0 additions & 18 deletions
This file was deleted.

spectrumlab/__init__.py

Lines changed: 0 additions & 44 deletions
This file was deleted.

spectrumlab/config/base_config.py

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
# Load .env from project root directory
77
project_root = Path(__file__).parent.parent.parent
88
env_path = project_root / ".env"
9-
print(env_path)
109
load_dotenv(env_path)
1110

1211

@@ -15,7 +14,7 @@ class Config:
1514
# This api key is for testing closed MLLMs by Boyue Richdata
1615
BOYUE_API_KEY: str = os.getenv("BOYUE_API_KEY")
1716
BOYUE_BASE_URL: str = os.getenv("BOYUE_BASE_URL")
18-
17+
1918
# DeepSeek API Configuration
2019
deepseek_api_key: str = os.getenv("DEEPSEEK_API_KEY")
2120
deepseek_base_url: str = os.getenv("DEEPSEEK_BASE_URL")
@@ -46,14 +45,13 @@ class Config:
4645
gpt4_vision_api_key: str = BOYUE_API_KEY
4746
gpt4_vision_base_url: str = BOYUE_BASE_URL
4847
gpt4_vision_model_name: str = os.getenv("GPT4_VISION")
49-
48+
5049
# Grok-2-Vision
5150
grok_2_vision_api_key: str = BOYUE_API_KEY
5251
grok_2_vision_base_url: str = BOYUE_BASE_URL
5352
grok_2_vision_model_name: str = os.getenv("GROK_2_VISION")
54-
55-
# Qwen-VL-Max
53+
54+
# Qwen-VL-Max
5655
qwen_vl_api_key: str = BOYUE_API_KEY
5756
qwen_vl_base_url: str = BOYUE_BASE_URL
5857
qwen_vl_model_name: str = os.getenv("QWEN_VL")
59-

test_import.py

Lines changed: 0 additions & 39 deletions
This file was deleted.

0 commit comments

Comments
 (0)