Extraction with Retries (#426)

This commit is contained in:
William FH
2024-05-13 23:58:40 -07:00
committed by GitHub
parent f146668735
commit 7092e230c0
4 changed files with 1174 additions and 1 deletions
+5 -1
View File
@@ -30,4 +30,8 @@ The following examples are useful especially if you are used to LangChain's Agen
### Alternative ways to define State
- [Pydantic State](state-model.ipynb): Use a pydantic model as your state
- [Pydantic State](state-model.ipynb): Use a pydantic model as your state
### Structured Output
- [Extraction with Re-prompting](./extraction/retries.ipynb): how to generate complex nested schemas using JSONPatch retries, for when function calling is insufficient, and regular reprompting still fails to generate valid results.