Fix typo.

This commit is contained in:
Raphael Mitsch 2023-12-27 13:16:17 +01:00
parent d41050baba
commit fbf255f891
2 changed files with 3 additions and 3 deletions

View File

@ -322,7 +322,7 @@ this is not enforced to allow for maximum flexibility in the framework.
#### task.parse_responses {id="task-sharding-parse-responses"}
Receives a collection of collection of LLM responses (i. e. each doc can have
Receives a collection of collections of LLM responses (i. e. each doc can have
multiple shards, each of which have exactly one prompt / prompt response) and
the original shards, parses the responses into structured information, sets the
annotations on the shards, and merges back doc shards into single docs. The

View File

@ -372,10 +372,10 @@ documents. |
| |
[`task.generate_prompts`](/api/large-language-models#task-sharding-generate-prompts)
| Takes a collection of documents, and returns a collection of collection of
| Takes a collection of documents, and returns a collection of collections of
prompt shards, which can be of type `Any`. | |
[`task.parse_responses`](/api/large-language-models#task-sharding-parse-responses)
| Takes a collection of collection of LLM responses (one per prompt shard) and
| Takes a collection of collections of LLM responses (one per prompt shard) and
the original documents, parses the responses into structured information, sets
the annotations on the doc shards, and merges those doc shards back into a
single doc instance. |