-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathenvironment.sh
More file actions
43 lines (41 loc) · 2.58 KB
/
environment.sh
File metadata and controls
43 lines (41 loc) · 2.58 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
35
36
37
38
39
40
41
42
43
export SERVER_HOST=$(hostname -I | awk '{print $1}')
export CRAWL_PAGE_PORT=9000
export WEBSEARCH_PORT=9001
# =====================================================================================================================
# wiki_rag_server
# =====================================================================================================================
export WIKI_RAG_SERVER_URL="http://$SERVER_HOST:8000/retrieve"
# =====================================================================================================================
# GRM
# =====================================================================================================================
# for llm as judge
export GRM_BASE_URL="https://api.uniapi.vip/v1"
export GRM_API_KEY="api key"
export GRM_MODEL_NAME="gpt-4.1-mini"
# =====================================================================================================================
# Jina
# =====================================================================================================================
# for crawl page
export JINA_BASE_URL="https://s.jina.ai/"
export JINA_API_KEY="api key"
# =====================================================================================================================
# Serper
# =====================================================================================================================
# for web search
export WEB_SEARCH_METHOD_TYPE="serapi"
export WEB_SEARCH_SERP_NUM="10"
export WEB_SEARCH_SERPER_API_KEY="api key"
# =====================================================================================================================
# Summary Model
# =====================================================================================================================
# for summary of crawl page content
export SUMMARY_OPENAI_API_BASE_URL="api url"
export SUMMARY_OPENAI_API_KEY="api key"
export SUMMARY_MODEL="qwen2.5-72b-instruct"
# =====================================================================================================================
# Code testcases
# =====================================================================================================================
# for evaluate code val datasets
export LIVECODEBENCH_DATA_PATH="$(pwd)/data/code_agent/livecodebench_testcases"
export UNI_API_URLS="https://api.uniapi.vip/v1" # or other qwen3 api provider
export UNI_API_KEY="api key"