Optimize pipeline processing so we don't wait for the completion of one generator to move onto the next.
This commit is contained in:
@@ -47,7 +47,20 @@ async def main(room_url):
|
||||
|
||||
source_queue = asyncio.Queue()
|
||||
|
||||
for month in ["January", "February"]:
|
||||
for month in [
|
||||
"January",
|
||||
"February",
|
||||
"March",
|
||||
"April",
|
||||
"May",
|
||||
"June",
|
||||
"July",
|
||||
"August",
|
||||
"September",
|
||||
"October",
|
||||
"November",
|
||||
"December",
|
||||
]:
|
||||
messages = [
|
||||
{
|
||||
"role": "system",
|
||||
|
||||
Reference in New Issue
Block a user