Skip to content

Commit

Permalink
feat: use lookup_and_score
Browse files Browse the repository at this point in the history
  • Loading branch information
tokebe committed Apr 11, 2024
1 parent 55811ee commit 085d146
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,7 @@ export default class TRAPIQueryHandler {
description: `Query processed successfully, retrieved ${results.length} results.`,
schema_version: global.SCHEMA_VERSION,
biolink_version: global.BIOLINK_VERSION,
workflow: [{ id: 'lookup' }],
workflow: [{ id: 'lookup_and_score' }],
message: {
query_graph: this.originalQueryGraph,
knowledge_graph: this.knowledgeGraph.kg,
Expand Down
2 changes: 1 addition & 1 deletion src/inferred_mode/inferred_mode.ts
Original file line number Diff line number Diff line change
Expand Up @@ -498,7 +498,7 @@ export default class InferredQueryHandler {
description: '',
schema_version: global.SCHEMA_VERSION,
biolink_version: global.BIOLINK_VERSION,
workflow: [{ id: 'lookup' }],
workflow: [{ id: 'lookup_and_score' }],
message: {
query_graph: this.queryGraph,
knowledge_graph: {
Expand Down

0 comments on commit 085d146

Please sign in to comment.