-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
7 changed files
with
410 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
{ | ||
"schema": "ptt", | ||
"context": { | ||
"contentFactory": "InMemoryContentFactory", | ||
"resolverName": "disk", | ||
"local": { | ||
"content": { | ||
"path": "../cache" | ||
}, | ||
"enumerator": { | ||
"path": "../benchmark/media_objects_tiny", | ||
"depth": "5" | ||
}, | ||
"filter": { | ||
"type": "SOURCE:IMAGE" | ||
} | ||
} | ||
}, | ||
"operators": { | ||
"enumerator": { | ||
"type": "ENUMERATOR", | ||
"factory": "FileSystemEnumerator", | ||
"mediaTypes": ["IMAGE"] | ||
}, | ||
"decoder": { | ||
"type": "DECODER", | ||
"factory": "ImageDecoder" | ||
}, | ||
"file_metadata":{ | ||
"type": "EXTRACTOR", | ||
"fieldName": "file" | ||
}, | ||
"clip": { | ||
"type": "EXTRACTOR", | ||
"fieldName": "clip" | ||
}, | ||
"ocr": { | ||
"type": "EXTRACTOR", | ||
"fieldName": "ocr" | ||
}, | ||
"caption": { | ||
"type": "EXTRACTOR", | ||
"fieldName": "caption" | ||
}, | ||
"document_type": { | ||
"type": "EXTRACTOR", | ||
"fieldName": "document_type" | ||
}, | ||
"filter": { | ||
"type": "TRANSFORMER", | ||
"factory": "TypeFilterTransformer" | ||
} | ||
}, | ||
"operations": { | ||
"enumerator-stage": {"operator": "enumerator"}, | ||
"decoder-stage": {"operator": "decoder", "inputs": ["enumerator-stage"]}, | ||
"filter-stage": {"operator": "filter", "inputs": ["decoder-stage"]}, | ||
"clip-stage": {"operator": "clip", "inputs": ["filter-stage"]}, | ||
"ocr-stage": {"operator": "ocr", "inputs": ["filter-stage"]}, | ||
"caption-stage": {"operator": "caption", "inputs": ["filter-stage"]}, | ||
"document-type-stage": {"operator": "document_type", "inputs": ["filter-stage"]}, | ||
"file-metadata-stage": {"operator": "file_metadata", "inputs": ["filter-stage"]} | ||
}, | ||
"output": [ | ||
"caption-stage", | ||
"ocr-stage", | ||
"clip-stage", | ||
"document-type-stage", | ||
"file-metadata-stage" | ||
], | ||
"mergeType": "COMBINE" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
{ | ||
"schema": "ptt", | ||
"context": { | ||
"contentFactory": "InMemoryContentFactory", | ||
"resolverName": "disk", | ||
"local": { | ||
"content": { | ||
"path": "../cache" | ||
}, | ||
"enumerator": { | ||
"path": "../benchmark/media_objects", | ||
"depth": "5" | ||
}, | ||
"filter": { | ||
"type": "SOURCE:IMAGE" | ||
} | ||
} | ||
}, | ||
"operators": { | ||
"enumerator": { | ||
"type": "ENUMERATOR", | ||
"factory": "FileSystemEnumerator", | ||
"mediaTypes": ["IMAGE"] | ||
}, | ||
"decoder": { | ||
"type": "DECODER", | ||
"factory": "ImageDecoder" | ||
}, | ||
"file_metadata":{ | ||
"type": "EXTRACTOR", | ||
"fieldName": "file" | ||
}, | ||
"clip": { | ||
"type": "EXTRACTOR", | ||
"fieldName": "clip" | ||
}, | ||
"ocr": { | ||
"type": "EXTRACTOR", | ||
"fieldName": "ocr" | ||
}, | ||
"caption": { | ||
"type": "EXTRACTOR", | ||
"fieldName": "caption" | ||
}, | ||
"document_type": { | ||
"type": "EXTRACTOR", | ||
"fieldName": "document_type" | ||
}, | ||
"filter": { | ||
"type": "TRANSFORMER", | ||
"factory": "TypeFilterTransformer" | ||
} | ||
}, | ||
"operations": { | ||
"enumerator-stage": {"operator": "enumerator"}, | ||
"decoder-stage": {"operator": "decoder", "inputs": ["enumerator-stage"]}, | ||
"filter-stage": {"operator": "filter", "inputs": ["decoder-stage"]}, | ||
"clip-stage": {"operator": "clip", "inputs": ["filter-stage"]}, | ||
"ocr-stage": {"operator": "ocr", "inputs": ["filter-stage"]}, | ||
"caption-stage": {"operator": "caption", "inputs": ["filter-stage"]}, | ||
"document-type-stage": {"operator": "document_type", "inputs": ["filter-stage"]}, | ||
"file-metadata-stage": {"operator": "file_metadata", "inputs": ["filter-stage"]} | ||
}, | ||
"output": [ | ||
"caption-stage", | ||
"ocr-stage", | ||
"clip-stage", | ||
"document-type-stage", | ||
"file-metadata-stage" | ||
], | ||
"mergeType": "COMBINE" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
{ | ||
"schema": "ptt", | ||
"context": { | ||
"contentFactory": "InMemoryContentFactory", | ||
"resolverName": "disk", | ||
"local": { | ||
"content": { | ||
"path": "../cache" | ||
}, | ||
"enumerator": { | ||
"path": "../benchmark/media_objects_tiny", | ||
"depth": "5" | ||
}, | ||
"filter": { | ||
"type": "SOURCE:VIDEO" | ||
}, | ||
"decoder": { | ||
"timeWindowMs": "2000" | ||
} | ||
} | ||
}, | ||
"operators": { | ||
"enumerator": { | ||
"type": "ENUMERATOR", | ||
"factory": "FileSystemEnumerator", | ||
"mediaTypes": [ | ||
"VIDEO" | ||
] | ||
}, | ||
"decoder": { | ||
"type": "DECODER", | ||
"factory": "VideoDecoder" | ||
}, | ||
"selector": { | ||
"type": "TRANSFORMER", | ||
"factory": "LastContentAggregator" | ||
}, | ||
"clip": { | ||
"type": "EXTRACTOR", | ||
"fieldName": "clip" | ||
}, | ||
"asr": { | ||
"type": "EXTRACTOR", | ||
"fieldName": "asr" | ||
}, | ||
"caption": { | ||
"type": "EXTRACTOR", | ||
"fieldName": "caption" | ||
}, | ||
"ocr": { | ||
"type": "EXTRACTOR", | ||
"fieldName": "ocr" | ||
}, | ||
"filter": { | ||
"type": "TRANSFORMER", | ||
"factory": "TypeFilterTransformer" | ||
} | ||
}, | ||
"operations": { | ||
"enumerator-stage": {"operator": "enumerator"}, | ||
"filter-stage": {"operator": "filter","inputs": ["enumerator-stage"]}, | ||
"decoder-stage": {"operator": "decoder","inputs": ["filter-stage"]}, | ||
"selector-stage": {"operator": "selector","inputs": ["filter-stage"]}, | ||
"asr-stage": {"operator": "asr", "inputs": ["selector-stage"]}, | ||
"caption-stage": {"operator": "caption", "inputs": ["selector-stage"]}, | ||
"clip-stage": {"operator": "clip", "inputs": ["selector-stage"]}, | ||
"ocr-stage": {"operator": "ocr", "inputs": ["selector-stage"]} | ||
}, | ||
"output": [ | ||
"asr-stage", | ||
"caption-stage", | ||
"clip-stage", | ||
"ocr-stage" | ||
], | ||
"mergeType": "COMBINE" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
{ | ||
"schema": "ptt", | ||
"context": { | ||
"contentFactory": "CachedContentFactory", | ||
"resolverName": "disk", | ||
"local": { | ||
"content": { | ||
"path": "../cache" | ||
}, | ||
"enumerator": { | ||
"path": "../benchmark/media_objects", | ||
"depth": "5" | ||
}, | ||
"filter": { | ||
"type": "SOURCE:VIDEO" | ||
}, | ||
"decoder": { | ||
"timeWindowMs": "2000" | ||
} | ||
} | ||
}, | ||
"operators": { | ||
"enumerator": { | ||
"type": "ENUMERATOR", | ||
"factory": "FileSystemEnumerator", | ||
"mediaTypes": [ | ||
"VIDEO" | ||
] | ||
}, | ||
"decoder": { | ||
"type": "DECODER", | ||
"factory": "VideoDecoder" | ||
}, | ||
"selector": { | ||
"type": "TRANSFORMER", | ||
"factory": "LastContentAggregator" | ||
}, | ||
"clip": { | ||
"type": "EXTRACTOR", | ||
"fieldName": "clip" | ||
}, | ||
"asr": { | ||
"type": "EXTRACTOR", | ||
"fieldName": "asr" | ||
}, | ||
"caption": { | ||
"type": "EXTRACTOR", | ||
"fieldName": "caption" | ||
}, | ||
"ocr": { | ||
"type": "EXTRACTOR", | ||
"fieldName": "ocr" | ||
}, | ||
"filter": { | ||
"type": "TRANSFORMER", | ||
"factory": "TypeFilterTransformer" | ||
} | ||
}, | ||
"operations": { | ||
"enumerator-stage": {"operator": "enumerator"}, | ||
"filter-stage": {"operator": "filter","inputs": ["enumerator-stage"]}, | ||
"decoder-stage": {"operator": "decoder","inputs": ["filter-stage"]}, | ||
"selector-stage": {"operator": "selector","inputs": ["filter-stage"]}, | ||
"asr-stage": {"operator": "asr", "inputs": ["selector-stage"]}, | ||
"caption-stage": {"operator": "caption", "inputs": ["selector-stage"]}, | ||
"clip-stage": {"operator": "clip", "inputs": ["selector-stage"]}, | ||
"ocr-stage": {"operator": "ocr", "inputs": ["selector-stage"]} | ||
}, | ||
"output": [ | ||
"asr-stage", | ||
"caption-stage", | ||
"clip-stage", | ||
"ocr-stage" | ||
], | ||
"mergeType": "COMBINE" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{"_type":"export","__export_format":4,"__export_date":"2024-05-29T15:26:50.453Z","__export_source":"insomnia.desktop.app:v2023.5.7","resources":[{"_id":"req_710ce9bafc974f5d968fb304ec8f0b0d","parentId":"fld_f1ea5552140b44f7aba5c10dda977029","modified":1716991471648,"created":1716988833884,"url":"localhost:7070/api/ptt/query","name":"Query: Clip(Text) -> <ret>","description":"","method":"POST","body":{"mimeType":"application/json","text":"{\n\t\t\"inputs\": {\n\t\t\t\t\"mytext\": {\"type\": \"TEXT\", \"data\": \"orange starfish on the seafloor\"}\n\t\t},\n\t\t\"operations\": {\n\t\t\t\"clip\" : {\"type\": \"RETRIEVER\", \"field\": \"clip\", \"input\": \"mytext\"},\n\t\t\t\"relations\" : {\"type\": \"TRANSFORMER\", \"transformerName\": \"RelationExpander\", \"input\": \"clip\"},\n\t\t\t\"lookup\" : {\"type\": \"TRANSFORMER\", \"transformerName\": \"FieldLookup\", \"input\": \"relations\"},\n\t\t\t\"aggregator\" : {\"type\": \"TRANSFORMER\", \"transformerName\": \"ScoreAggregator\", \"input\": \"lookup\"},\n\t\t\t\"filelookup\" : {\"type\": \"TRANSFORMER\", \"transformerName\": \"FieldLookup\", \"input\": \"aggregator\"}\n\t\t},\n\t\t\"context\": {\n\t\t\t\"global\": {\n\t\t\t\t\"limit\": \"1000\"\n\t\t\t},\n\t\t\t\"local\" : {\n\t\t\t\t\"lookup\":{\"field\": \"time\", \"keys\": \"start, end\"},\n\t\t\t\t\"relations\" :{\"outgoing\": \"partOf\"},\t\t\t\t\n\t\t\t\t\"filelookup\": {\"field\": \"file\", \"keys\": \"path\"}\n\t\t\t}\n\t\t},\n\t\t\"output\": \"filelookup\"\n}"},"parameters":[],"headers":[{"name":"Content-Type","value":"application/json"},{"name":"User-Agent","value":"Insomnia/2023.5.7"}],"authentication":{},"metaSortKey":-1716989618754,"isPrivate":false,"settingStoreCookies":true,"settingSendCookies":true,"settingDisableRenderRequestBody":false,"settingEncodeUrl":true,"settingRebuildPath":true,"settingFollowRedirects":"global","_type":"request"},{"_id":"fld_f1ea5552140b44f7aba5c10dda977029","parentId":"wrk_1a7fd1d31e4f426ea30d155a375fc77f","modified":1716988828474,"created":1716988828474,"name":"PTT-Benchmark","description":"","environment":{},"environmentPropertyOrder":null,"metaSortKey":-1716988828474,"_type":"request_group"},{"_id":"wrk_1a7fd1d31e4f426ea30d155a375fc77f","parentId":null,"modified":1699640716232,"created":1699640716232,"name":"vitrivr-engine","description":"","scope":"collection","_type":"workspace"},{"_id":"req_37d3973e5cd84d6fb37d188e2f047dd1","parentId":"fld_f1ea5552140b44f7aba5c10dda977029","modified":1716994118302,"created":1716991936483,"url":"localhost:7070/api/ptt/query","name":"Query: Asr(Text) -> <ret>","description":"","method":"POST","body":{"mimeType":"application/json","text":"{\n\t\t\"inputs\": {\n\t\t\t\t\"text\": {\"type\": \"TEXT\", \"data\": \"Zeit ist dann\"}\n\t\t},\n\t\t\"operations\": {\n\t\t\t\"feature\" : {\"type\": \"RETRIEVER\", \"field\": \"asr\", \"input\": \"text\"},\n\t\t\t\"relations\" : {\"type\": \"TRANSFORMER\", \"transformerName\": \"RelationExpander\", \"input\": \"feature\"},\n\t\t\t\"lookup\" : {\"type\": \"TRANSFORMER\", \"transformerName\": \"FieldLookup\", \"input\": \"relations\"},\n\t\t\t\"aggregator\" : {\"type\": \"TRANSFORMER\", \"transformerName\": \"ScoreAggregator\", \"input\": \"lookup\"},\n\t\t\t\"filelookup\" : {\"type\": \"TRANSFORMER\", \"transformerName\": \"FieldLookup\", \"input\": \"aggregator\"}\n\t\t},\n\t\t\"context\": {\n\t\t\t\"global\": {\n\t\t\t\t\"limit\": \"1000\"\n\t\t\t},\n\t\t\t\"local\" : {\n\t\t\t\t\"lookup\": {\"field\": \"time\", \"keys\": \"start, end\"},\n\t\t\t\t\"relations\" : {\"outgoing\": \"partOf\"},\t\t\t\t\n\t\t\t\t\"filelookup\": {\"field\": \"file\", \"keys\": \"path\"}\n\t\t\t}\n\t\t},\n\t\t\"output\": \"filelookup\"\n}"},"parameters":[],"headers":[{"name":"Content-Type","value":"application/json"},{"name":"User-Agent","value":"Insomnia/2023.5.7"}],"authentication":{},"metaSortKey":-1713676664026,"isPrivate":false,"settingStoreCookies":true,"settingSendCookies":true,"settingDisableRenderRequestBody":false,"settingEncodeUrl":true,"settingRebuildPath":true,"settingFollowRedirects":"global","_type":"request"},{"_id":"req_0da1ff6d80284cc68aec36e1f00de66e","parentId":"fld_f1ea5552140b44f7aba5c10dda977029","modified":1716994280722,"created":1716994127457,"url":"localhost:7070/api/ptt/query","name":"Query: Caption(Text) -> <ret>","description":"","method":"POST","body":{"mimeType":"application/json","text":"{\n\t\t\"inputs\": {\n\t\t\t\t\"text\": {\"type\": \"TEXT\", \"data\": \"A page\"}\n\t\t},\n\t\t\"operations\": {\n\t\t\t\"feature\" : {\"type\": \"RETRIEVER\", \"field\": \"caption\", \"input\": \"text\"},\n\t\t\t\"relations\" : {\"type\": \"TRANSFORMER\", \"transformerName\": \"RelationExpander\", \"input\": \"feature\"},\n\t\t\t\"lookup\" : {\"type\": \"TRANSFORMER\", \"transformerName\": \"FieldLookup\", \"input\": \"relations\"},\n\t\t\t\"aggregator\" : {\"type\": \"TRANSFORMER\", \"transformerName\": \"ScoreAggregator\", \"input\": \"lookup\"},\n\t\t\t\"filelookup\" : {\"type\": \"TRANSFORMER\", \"transformerName\": \"FieldLookup\", \"input\": \"aggregator\"}\n\t\t},\n\t\t\"context\": {\n\t\t\t\"global\": {\n\t\t\t\t\"limit\": \"1000\"\n\t\t\t},\n\t\t\t\"local\" : {\n\t\t\t\t\"lookup\": {\"field\": \"time\", \"keys\": \"start, end\"},\n\t\t\t\t\"relations\" : {\"outgoing\": \"partOf\"},\t\t\t\t\n\t\t\t\t\"filelookup\": {\"field\": \"file\", \"keys\": \"path\"}\n\t\t\t}\n\t\t},\n\t\t\"output\": \"filelookup\"\n}"},"parameters":[],"headers":[{"name":"Content-Type","value":"application/json"},{"name":"User-Agent","value":"Insomnia/2023.5.7"}],"authentication":{},"metaSortKey":-1712020186662,"isPrivate":false,"settingStoreCookies":true,"settingSendCookies":true,"settingDisableRenderRequestBody":false,"settingEncodeUrl":true,"settingRebuildPath":true,"settingFollowRedirects":"global","_type":"request"},{"_id":"req_e14c8167bd0d4297a4e9234f0cb84cf8","parentId":"fld_f1ea5552140b44f7aba5c10dda977029","modified":1716994559844,"created":1716994554076,"url":"localhost:7070/api/ptt/query","name":"Query: Ocr(Text) -> <ret>","description":"","method":"POST","body":{"mimeType":"application/json","text":"{\n\t\t\"inputs\": {\n\t\t\t\t\"text\": {\"type\": \"TEXT\", \"data\": \"A page\"}\n\t\t},\n\t\t\"operations\": {\n\t\t\t\"feature\" : {\"type\": \"RETRIEVER\", \"field\": \"ocr\", \"input\": \"text\"},\n\t\t\t\"relations\" : {\"type\": \"TRANSFORMER\", \"transformerName\": \"RelationExpander\", \"input\": \"feature\"},\n\t\t\t\"lookup\" : {\"type\": \"TRANSFORMER\", \"transformerName\": \"FieldLookup\", \"input\": \"relations\"},\n\t\t\t\"aggregator\" : {\"type\": \"TRANSFORMER\", \"transformerName\": \"ScoreAggregator\", \"input\": \"lookup\"},\n\t\t\t\"filelookup\" : {\"type\": \"TRANSFORMER\", \"transformerName\": \"FieldLookup\", \"input\": \"aggregator\"}\n\t\t},\n\t\t\"context\": {\n\t\t\t\"global\": {\n\t\t\t\t\"limit\": \"1000\"\n\t\t\t},\n\t\t\t\"local\" : {\n\t\t\t\t\"lookup\": {\"field\": \"time\", \"keys\": \"start, end\"},\n\t\t\t\t\"relations\" : {\"outgoing\": \"partOf\"},\t\t\t\t\n\t\t\t\t\"filelookup\": {\"field\": \"file\", \"keys\": \"path\"}\n\t\t\t}\n\t\t},\n\t\t\"output\": \"filelookup\"\n}"},"parameters":[],"headers":[{"name":"Content-Type","value":"application/json"},{"name":"User-Agent","value":"Insomnia/2023.5.7"}],"authentication":{},"metaSortKey":-1711191947980,"isPrivate":false,"settingStoreCookies":true,"settingSendCookies":true,"settingDisableRenderRequestBody":false,"settingEncodeUrl":true,"settingRebuildPath":true,"settingFollowRedirects":"global","_type":"request"},{"_id":"req_2ba307fb82ab41c3833096e150cc527b","parentId":"fld_f1ea5552140b44f7aba5c10dda977029","modified":1716995325367,"created":1716994618839,"url":"localhost:7070/api/ptt/query","name":"Query: All(Text) -> <ret>","description":"","method":"POST","body":{"mimeType":"application/json","text":"{\n\t\t\"inputs\": {\n\t\t\t\t\"clip\": {\"type\": \"TEXT\", \"data\": \"A page\"},\n\t\t\t\t\"ocr\": {\"type\": \"TEXT\", \"data\": \"A page\"},\n\t\t\t\t\"asr\": {\"type\": \"TEXT\", \"data\": \"A page\"},\n\t\t\t\t\"caption\": {\"type\": \"TEXT\", \"data\": \"A page\"}\n\t\t},\n\t\t\"operations\": {\n\t\t\t\"feature1\" : {\"type\": \"RETRIEVER\", \"field\": \"clip\", \"input\": \"clip\"},\n\t\t\t\"feature2\" : {\"type\": \"RETRIEVER\", \"field\": \"ocr\", \"input\": \"ocr\"},\n\t\t\t\"feature3\" : {\"type\": \"RETRIEVER\", \"field\": \"asr\", \"input\": \"asr\"},\n\t\t\t\"feature4\" : {\"type\": \"RETRIEVER\", \"field\": \"caption\", \"input\": \"caption\"},\n\t\t\t\"score\" : {\"type\": \"AGGREGATOR\", \"aggregatorName\": \"WeightedScoreFusion\", \"inputs\": [\"feature1\", \"feature2\",\"feature3\", \"feature4\"]},\n\t\t\t\"relations\" : {\"type\": \"TRANSFORMER\", \"transformerName\": \"RelationExpander\", \"input\": \"score\"},\n\t\t\t\"lookup\" : {\"type\": \"TRANSFORMER\", \"transformerName\": \"FieldLookup\", \"input\": \"relations\"},\n\t\t\t\"aggregator\" : {\"type\": \"TRANSFORMER\", \"transformerName\": \"ScoreAggregator\", \"input\": \"lookup\"},\n\t\t\t\"filelookup\" : {\"type\": \"TRANSFORMER\", \"transformerName\": \"FieldLookup\", \"input\": \"aggregator\"}\n\t\t},\n\t\t\"context\": {\n\t\t\t\"global\": {\n\t\t\t\t\"limit\": \"1000\"\n\t\t\t},\n\t\t\t\"local\" : {\n\t\t\t\t\"lookup\": {\"field\": \"time\", \"keys\": \"start, end\"},\n\t\t\t\t\"relations\" : {\"outgoing\": \"partOf\"},\t\t\t\t\n\t\t\t\t\"filelookup\": {\"field\": \"file\", \"keys\": \"path\"},\n\t\t\t\t\"score\": {\"weights\": \"0.5,0.2,0.2,0.1\"}\n\t\t\t}\n\t\t},\n\t\t\"output\": \"filelookup\"\n}"},"parameters":[],"headers":[{"name":"Content-Type","value":"application/json"},{"name":"User-Agent","value":"Insomnia/2023.5.7"}],"authentication":{},"metaSortKey":-1710777828639,"isPrivate":false,"settingStoreCookies":true,"settingSendCookies":true,"settingDisableRenderRequestBody":false,"settingEncodeUrl":true,"settingRebuildPath":true,"settingFollowRedirects":"global","_type":"request"},{"_id":"env_39fe09c413c6930fe51c72e599bb686d1182901b","parentId":"wrk_1a7fd1d31e4f426ea30d155a375fc77f","modified":1699640716236,"created":1699640716236,"name":"Base Environment","data":{},"dataPropertyOrder":null,"color":null,"isPrivate":false,"metaSortKey":1699640716236,"_type":"environment"},{"_id":"jar_39fe09c413c6930fe51c72e599bb686d1182901b","parentId":"wrk_1a7fd1d31e4f426ea30d155a375fc77f","modified":1699640716237,"created":1699640716237,"name":"Default Jar","cookies":[],"_type":"cookie_jar"}]} |
Oops, something went wrong.