markgewhite commited on
Commit
bb0d99c
·
1 Parent(s): 726539c

Switched to lightweight model

Browse files
Files changed (2) hide show
  1. backend/config.py +1 -1
  2. render.yaml +2 -0
backend/config.py CHANGED
@@ -7,7 +7,7 @@ class Settings(BaseSettings):
7
  """Application settings with Kalman filter parameters"""
8
 
9
  # Embedding configuration
10
- embedding_model: str = "Qwen/Qwen3-Embedding-0.6B"
11
  cache_dir: str = "./cache"
12
 
13
  # ArXiv API settings
 
7
  """Application settings with Kalman filter parameters"""
8
 
9
  # Embedding configuration
10
+ embedding_model: str = "sentence-transformers/all-MiniLM-L6-v2"
11
  cache_dir: str = "./cache"
12
 
13
  # ArXiv API settings
render.yaml CHANGED
@@ -10,6 +10,8 @@ services:
10
 
11
  # Environment variables
12
  envVars:
 
 
13
  - key: API_HOST
14
  value: 0.0.0.0
15
  - key: API_PORT
 
10
 
11
  # Environment variables
12
  envVars:
13
+ - key: EMBEDDING_MODEL
14
+ value: sentence-transformers/all-MiniLM-L6-v2
15
  - key: API_HOST
16
  value: 0.0.0.0
17
  - key: API_PORT