Skip to content

Commit a204204

Browse files
committed
change dummy doc id string
1 parent 5bd33e8 commit a204204

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

backend/src/app/api/v1/endpoints/query.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ async def run_query(
6060
HTTPException
6161
If there's an error processing the query.
6262
"""
63-
if request.document_id == "ffffffffffffffffffffffffffffffff":
63+
if request.document_id == "00000000000000000000000000000000":
6464
query_response = await inference_query(
6565
request.prompt.query,
6666
request.prompt.rules,

frontend/src/config/api.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ export async function runQuery(
9595
body: JSON.stringify({
9696
document_id: row.sourceData?.document?.id
9797
? row.sourceData.document.id
98-
: "ffffffffffffffffffffffffffffffff",
98+
: "00000000000000000000000000000000",
9999
prompt: {
100100
id: column.id,
101101
entity_type: column.entityType,

0 commit comments

Comments
 (0)