We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6ae121b commit 3beb6daCopy full SHA for 3beb6da
readmeai/core/model.py
@@ -95,8 +95,8 @@ async def _batch_prompts(
95
96
for batch in self._generate_batches(prompts, batch_size):
97
batch_responses = await asyncio.gather(
98
- *[self._process_batch(prompt) for prompt in batch]
99
- # , return_exceptions=True
+ *[self._process_batch(prompt) for prompt in batch],
+ return_exceptions=True,
100
)
101
responses.extend(batch_responses)
102
@@ -145,7 +145,7 @@ async def _set_prompt_context(
145
{
146
"repo": self.config.git.repository,
147
"dependencies": dependencies,
148
- "files": summaries,
+ "summaries": summaries,
149
},
150
),
151
(
0 commit comments