Spaces:
Running
Running
File size: 743 Bytes
1daa44a |
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 |
from flask import Flask,request,render_template,request,Response,jsonify
from application.utils.convs_handler import ConvHandler
import json
pipeline_path = './pipeline.json'
with open(pipeline_path, 'r') as file:
pipeline_dict = json.load(file)
convs_dict = {
#format---> ip:{
# convId:{
# messages = [],
# }
# ...
# metadata (a list containing all convId and title in dict format) = [
# {
# "convID",
# "convTitle"
# }...]
#
}
convHandler = ConvHandler(convs_dict=convs_dict)
|