David Miguel Lozano
David Miguel Lozano
Adds `WidgetStateOutlinedBorder.resolveWith(myCallback)` static method to make `WidgetStateOutlinedBorder` easier to use. Resolves #139430 Example: ```dart Chip( label: const Text('Transceiver'), shape: WidgetStateOutlinedBorder.resolveWith((Set states) { if (states.contains(WidgetState.selected)) { return const StadiumBorder( side: BorderSide(color:...
The `format` field was being ignored when using `Schema.number`or `Schema.integer` factories.
The `quote` property is marked as required, but the server doesn't include them in all the cases. https://github.com/openai/openai-openapi/blob/893ba52242dbd5387a97b96444ee1c742cfce9bd/openapi.yaml#L11362-L11397 Example of response that doesn't include it: ```json { "id": "msg_Fn6zTxxx", "object":...
When creating a vector store, the [name is not required](https://platform.openai.com/docs/api-reference/vector-stores/create). However, the `VectorStoreObject` does not support a `null` name. The server does support nullable names. If you don't provide a...
https://js.langchain.com/v0.2/docs/how_to/#callbacks
LangChain resources: - https://python.langchain.com/v0.2/docs/integrations/providers/sqlite - https://python.langchain.com/v0.2/docs/integrations/vectorstores/sqlitevss/ Dart resources: - https://github.com/asg017/sqlite-vec - https://github.com/simolus3/sqlite3.dart Example: - https://github.com/rodydavis/flutter_sqlite_document_search ~~Blocking issue on web:~~ - ~~https://github.com/simolus3/sqlite3.dart/issues/247~~
`.withRetry`: to add retry logic to an existing runnable. Ref: - https://js.langchain.com/v0.2/docs/how_to/lcel_cheatsheet/#add-retries
- https://js.langchain.com/v0.2/docs/how_to/tool_calls_multimodal/#audio-input - https://glaforge.dev/posts/2024/07/25/analyzing-videos-audios-and-pdfs-with-gemini-in-langchain4j/
One of the main challenges LangChain.dart faces compared to its peers in other ecosystems is the lack of learning materials. The idea of this issue is to collect a list...
In an effort to improve our docs, we would like to align them with the official LangChain doc structure (which has recently been [completely rembumped](https://blog.langchain.dev/documentation-refresh-for-langchain-v0-2/) using the [diátaxis methodology](https://diataxis.fr/)). As...