Skip to content
Snippets Groups Projects
Commit d2ce81db authored by Sharat Patil's avatar Sharat Patil
Browse files

mbugfix

parent eb4cfdc3
Branches
Tags
No related merge requests found
......@@ -114,8 +114,8 @@ async def process_query2(query):
async def api_call2(*args):
n=int(len(args)/2)
llm_queries=args[:n]
full_llm_queries=args[n:]
llm_queries=list(args[:n])
full_llm_queries=list(args[n:])
tasks=[]
for llm_query in llm_queries:
llm_query_loaded = json.loads(llm_query)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment