-
Notifications
You must be signed in to change notification settings - Fork 1
/
config.py
35 lines (35 loc) · 938 Bytes
/
config.py
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
config = {
'IQA': {
'backend': 'http://127.0.0.1:5002'
},
'general': {
'http': {
'timeout': 120
},
'dbpedia': {
# 'endpoint': 'http://dbpedia.org/sparql'
'endpoint': 'http://sda01dbpedia:[email protected]/sparql'
},
'wikidata': {
'endpoint': 'https://query.wikidata.org/sparql'
}
},
'semweb2nl': {
'endpoint': 'http://127.0.0.1:8680/semweb2nl/'
},
'EARL': {
'endpoint': 'http://sda.tech/earl/api/processQuery'
},
'Falcon': {
'endpoint': 'https://labs.tib.eu/falcon/api?mode=long'
},
'MDP': {
'endpoint': 'http://localhost:5000/link'
},
'SQG': {
'endpoint': 'http://solide-qa.cs.upb.de:9200/qg/api/v1.0/query',
# 'endpoint': 'http://localhost:5010/qg/api/v1.0/query',
'timeout': 120,
'use_sqg_cache': True
}
}