Skip to content
Snippets Groups Projects

Updates for TREC pipelines

Merged Christopher Randolph Rhodes requested to merge int_trec into staging
4 files
+ 23
6
Compare changes
  • Side-by-side
  • Inline
Files
4
+ 15
0
@@ -22,6 +22,21 @@ def read_root():
return {'success': True}
@app.get('/paths/session')
def get_top_session_path():
return session.get_paths()['session']
@app.get('/paths/inbound')
def get_inbound_path():
return session.get_paths()['inbound_images']
@app.get('/paths/outbound')
def get_outbound_path():
return session.get_paths()['outbound_images']
@app.get('/paths')
def list_session_paths():
return session.get_paths()
Loading