Skip to content

Commit 6246ab1

Browse files
authored
refactor: Migrate to langchaindart.dev domain (#434)
1 parent e5412bd commit 6246ab1

File tree

48 files changed

+59
-59
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+59
-59
lines changed

docs/CNAME

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
langchaindart.com
1+
langchaindart.dev

docs/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ LCEL is a declarative way to compose chains. LCEL was designed from day 1 to sup
3838

3939
- [Overview](/expression_language/expression_language): LCEL and its benefits
4040
- [Interface](/expression_language/interface): The standard interface for LCEL objects
41-
- [Cookbook](https://langchaindart.com/#/expression_language/cookbook/prompt_llm_parser): Example code for accomplishing common tasks
41+
- [Cookbook](https://langchaindart.dev/#/expression_language/cookbook/prompt_llm_parser): Example code for accomplishing common tasks
4242

4343
## Modules
4444

docs/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
<meta property="og:type" content="website"/>
4242
<meta property="og:title"
4343
content="Build powerful LLM-based Dart/Flutter applications."/>
44-
<meta property="og:url" content="https://langchaindart.com"/>
44+
<meta property="og:url" content="https://langchaindart.dev"/>
4545
<meta property="og:description"
4646
content="LangChain.dart official library documentation. Includes examples and tutorials."/>
4747

docs/modules/model_io/models/chat_models/integrations/firebase_vertex_ai.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ await stream.forEach(print);
140140

141141
`ChatGoogleGenerativeAI` supports tool calling.
142142

143-
Check the [docs](https://langchaindart.com/#/modules/model_io/models/chat_models/how_to/tools) for more information on how to use tools.
143+
Check the [docs](https://langchaindart.dev/#/modules/model_io/models/chat_models/how_to/tools) for more information on how to use tools.
144144

145145
Example:
146146
```dart

docs/modules/model_io/models/chat_models/integrations/googleai.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ await stream.forEach(print);
118118

119119
`ChatGoogleGenerativeAI` supports tool calling.
120120

121-
Check the [docs](https://langchaindart.com/#/modules/model_io/models/chat_models/how_to/tools) for more information on how to use tools.
121+
Check the [docs](https://langchaindart.dev/#/modules/model_io/models/chat_models/how_to/tools) for more information on how to use tools.
122122

123123
Example:
124124
```dart

examples/browser_summarizer/pubspec.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@ packages:
246246
path: "../../packages/langchain_openai"
247247
relative: true
248248
source: path
249-
version: "0.6.1"
249+
version: "0.6.1+1"
250250
langchain_tiktoken:
251251
dependency: transitive
252252
description:
@@ -309,7 +309,7 @@ packages:
309309
path: "../../packages/openai_dart"
310310
relative: true
311311
source: path
312-
version: "0.3.2"
312+
version: "0.3.2+1"
313313
path:
314314
dependency: transitive
315315
description:

examples/docs_examples/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# Docs examples
22

3-
Examples used in https://langchaindart.com documentation.
3+
Examples used in https://langchaindart.dev documentation.

examples/docs_examples/pubspec.lock

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -264,14 +264,14 @@ packages:
264264
path: "../../packages/langchain_ollama"
265265
relative: true
266266
source: path
267-
version: "0.2.1"
267+
version: "0.2.1+1"
268268
langchain_openai:
269269
dependency: "direct main"
270270
description:
271271
path: "../../packages/langchain_openai"
272272
relative: true
273273
source: path
274-
version: "0.6.1"
274+
version: "0.6.1+1"
275275
langchain_tiktoken:
276276
dependency: transitive
277277
description:
@@ -317,14 +317,14 @@ packages:
317317
path: "../../packages/ollama_dart"
318318
relative: true
319319
source: path
320-
version: "0.1.0"
320+
version: "0.1.0+1"
321321
openai_dart:
322322
dependency: "direct overridden"
323323
description:
324324
path: "../../packages/openai_dart"
325325
relative: true
326326
source: path
327-
version: "0.3.2"
327+
version: "0.3.2+1"
328328
path:
329329
dependency: transitive
330330
description:

examples/docs_examples/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: docs_examples
2-
description: Examples used in langchaindart.com documentation.
2+
description: Examples used in langchaindart.dev documentation.
33
version: 1.0.0
44
publish_to: none
55

examples/hello_world_backend/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ It exposes a REST API that given a list of topics, generates a sonnet about them
77

88
The HTTP server is implemented using [package:shelf](https://pub.dev/packages/shelf).
99

10-
You can find all the details in the [LangChain.dart 101: what can you build with it?](https://blog.langchaindart.com/langchain-dart-101-what-can-you-build-with-it-%EF%B8%8F-99a92ccaec5f)
10+
You can find all the details in the [LangChain.dart 101: what can you build with it?](https://blog.langchaindart.dev/langchain-dart-101-what-can-you-build-with-it-%EF%B8%8F-99a92ccaec5f)
1111
blog post.
1212

1313
![Hello world backend](hello_world_backend.gif)

examples/hello_world_backend/pubspec.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ packages:
133133
path: "../../packages/langchain_openai"
134134
relative: true
135135
source: path
136-
version: "0.6.1"
136+
version: "0.6.1+1"
137137
langchain_tiktoken:
138138
dependency: transitive
139139
description:
@@ -156,7 +156,7 @@ packages:
156156
path: "../../packages/openai_dart"
157157
relative: true
158158
source: path
159-
version: "0.3.2"
159+
version: "0.3.2+1"
160160
path:
161161
dependency: transitive
162162
description:

examples/hello_world_cli/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
This sample app demonstrates how to call an LLM from a CLI application using LangChain.dart.
44

5-
You can find all the details in the [LangChain.dart 101: what can you build with it?](https://blog.langchaindart.com/langchain-dart-101-what-can-you-build-with-it-%EF%B8%8F-99a92ccaec5f)
5+
You can find all the details in the [LangChain.dart 101: what can you build with it?](https://blog.langchaindart.dev/langchain-dart-101-what-can-you-build-with-it-%EF%B8%8F-99a92ccaec5f)
66
blog post.
77

88
## Usage

examples/hello_world_cli/pubspec.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ packages:
125125
path: "../../packages/langchain_openai"
126126
relative: true
127127
source: path
128-
version: "0.6.1"
128+
version: "0.6.1+1"
129129
langchain_tiktoken:
130130
dependency: transitive
131131
description:
@@ -148,7 +148,7 @@ packages:
148148
path: "../../packages/openai_dart"
149149
relative: true
150150
source: path
151-
version: "0.3.2"
151+
version: "0.3.2+1"
152152
path:
153153
dependency: transitive
154154
description:

examples/hello_world_flutter/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
This sample app demonstrates how to call an LLM from a Flutter application using LangChain.dart.
44

5-
You can find all the details in the [LangChain.dart 101: what can you build with it?](https://blog.langchaindart.com/langchain-dart-101-what-can-you-build-with-it-%EF%B8%8F-99a92ccaec5f)
5+
You can find all the details in the [LangChain.dart 101: what can you build with it?](https://blog.langchaindart.dev/langchain-dart-101-what-can-you-build-with-it-%EF%B8%8F-99a92ccaec5f)
66
blog post.
77

88
## Usage

examples/hello_world_flutter/pubspec.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ packages:
154154
path: "../../packages/langchain_openai"
155155
relative: true
156156
source: path
157-
version: "0.6.1"
157+
version: "0.6.1+1"
158158
langchain_tiktoken:
159159
dependency: transitive
160160
description:
@@ -193,7 +193,7 @@ packages:
193193
path: "../../packages/openai_dart"
194194
relative: true
195195
source: path
196-
version: "0.3.2"
196+
version: "0.3.2+1"
197197
path:
198198
dependency: transitive
199199
description:

packages/anthropic_sdk_dart/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version: 0.0.1-dev.1
44
repository: https://github.com/davidmigloz/langchain_dart/tree/main/packages/anthropic_sdk_dart
55
issue_tracker: https://github.com/davidmigloz/langchain_dart/issues?q=label:p:anthropic_sdk_dart
66
homepage: https://github.com/davidmigloz/langchain_dart
7-
documentation: https://langchaindart.com
7+
documentation: https://langchaindart.dev
88

99
topics:
1010
- ai

packages/chromadb/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version: 0.2.0
44
repository: https://github.com/davidmigloz/langchain_dart/tree/main/packages/chromadb
55
issue_tracker: https://github.com/davidmigloz/langchain_dart/issues
66
homepage: https://github.com/davidmigloz/langchain_dart
7-
documentation: https://langchaindart.com
7+
documentation: https://langchaindart.dev
88

99
topics:
1010
- ai

packages/googleai_dart/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version: 0.1.0
44
repository: https://github.com/davidmigloz/langchain_dart/tree/main/packages/googleai_dart
55
issue_tracker: https://github.com/davidmigloz/langchain_dart/issues?q=label:p:googleai_dart
66
homepage: https://github.com/davidmigloz/langchain_dart
7-
documentation: https://langchaindart.com
7+
documentation: https://langchaindart.dev
88

99
topics:
1010
- ai

packages/langchain/CHANGELOG.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@
153153

154154
## 0.0.13
155155

156-
> Check out the [LangChain Expression Language documentation](https://langchaindart.com/#/expression_language/interface) for more details
156+
> Check out the [LangChain Expression Language documentation](https://langchaindart.dev/#/expression_language/interface) for more details
157157
158158
- **FEAT**: Add support for JsonOutputFunctionsParser ([#165](https://github.com/davidmigloz/langchain_dart/issues/165)). ([66c8e644](https://github.com/davidmigloz/langchain_dart/commit/66c8e64410d1dbf8b75e5734cb0cbb0e43dc0615))
159159
- **FEAT**: Add support for StringOutputParser ([#164](https://github.com/davidmigloz/langchain_dart/issues/164)). ([ee29e99a](https://github.com/davidmigloz/langchain_dart/commit/ee29e99a410c3cc6a7ae263fea1cde283f904edf))
@@ -274,7 +274,7 @@
274274
- Initial public release.
275275

276276
Check out the announcement post for all the details:
277-
https://blog.langchaindart.com/introducing-langchain-dart-6b1d34fc41ef
277+
https://blog.langchaindart.dev/introducing-langchain-dart-6b1d34fc41ef
278278

279279
## 0.0.1-dev.7
280280

@@ -322,7 +322,7 @@ https://blog.langchaindart.com/introducing-langchain-dart-6b1d34fc41ef
322322
- Add support for LLMs - `BaseLLM` class (#14).
323323
- Add support for Chat models - `BaseChatModel` class (#10).
324324
- Add support for prompt templates - `PromptTemplate` class (#7).
325-
- Publish LangChain.dart documentation on http://langchaindart.com.
325+
- Publish LangChain.dart documentation on http://langchaindart.dev.
326326

327327
## 0.0.1-dev.1
328328

packages/langchain/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -156,9 +156,9 @@ print(res);
156156

157157
## Documentation
158158

159-
- [LangChain.dart documentation](https://langchaindart.com)
159+
- [LangChain.dart documentation](https://langchaindart.dev)
160160
- [Sample apps](https://github.com/davidmigloz/langchain_dart/tree/main/examples)
161-
- [LangChain.dart blog](https://blog.langchaindart.com)
161+
- [LangChain.dart blog](https://blog.langchaindart.dev)
162162
- [Project board](https://github.com/users/davidmigloz/projects/2/views/1)
163163

164164
## Community

packages/langchain/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version: 0.7.1
44
repository: https://github.com/davidmigloz/langchain_dart/tree/main/packages/langchain
55
issue_tracker: https://github.com/davidmigloz/langchain_dart/issues
66
homepage: https://github.com/davidmigloz/langchain_dart
7-
documentation: https://langchaindart.com
7+
documentation: https://langchaindart.dev
88

99
topics:
1010
- ai

packages/langchain_amazon/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version: 0.0.1-dev.1
44
repository: https://github.com/davidmigloz/langchain_dart/tree/main/packages/langchain_amazon
55
issue_tracker: https://github.com/davidmigloz/langchain_dart/issues?q=label:p:langchain_amazon
66
homepage: https://github.com/davidmigloz/langchain_dart
7-
documentation: https://langchaindart.com
7+
documentation: https://langchaindart.dev
88
publish_to: none # Remove when the package is ready to be published
99

1010
topics:

packages/langchain_anthropic/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version: 0.0.1-dev.1
44
repository: https://github.com/davidmigloz/langchain_dart/tree/main/packages/langchain_anthropic
55
issue_tracker: https://github.com/davidmigloz/langchain_dart/issues?q=label:p:langchain_anthropic
66
homepage: https://github.com/davidmigloz/langchain_dart
7-
documentation: https://langchaindart.com
7+
documentation: https://langchaindart.dev
88
publish_to: none # Remove when the package is ready to be published
99

1010
topics:

packages/langchain_chroma/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version: 0.2.0+4
44
repository: https://github.com/davidmigloz/langchain_dart/tree/main/packages/langchain_chroma
55
issue_tracker: https://github.com/davidmigloz/langchain_dart/issues?q=label:p:langchain_chroma
66
homepage: https://github.com/davidmigloz/langchain_dart
7-
documentation: https://langchaindart.com
7+
documentation: https://langchaindart.dev
88

99
topics:
1010
- ai

packages/langchain_cohere/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version: 0.0.1-dev.1
44
repository: https://github.com/davidmigloz/langchain_dart/tree/main/packages/langchain_cohere
55
issue_tracker: https://github.com/davidmigloz/langchain_dart/issues?q=label:p:langchain_cohere
66
homepage: https://github.com/davidmigloz/langchain_dart
7-
documentation: https://langchaindart.com
7+
documentation: https://langchaindart.dev
88
publish_to: none # Remove when the package is ready to be published
99

1010
topics:

packages/langchain_community/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version: 0.2.0+1
44
repository: https://github.com/davidmigloz/langchain_dart/tree/main/packages/langchain_community
55
issue_tracker: https://github.com/davidmigloz/langchain_dart/issues?q=label:p:langchain_community
66
homepage: https://github.com/davidmigloz/langchain_dart
7-
documentation: https://langchaindart.com
7+
documentation: https://langchaindart.dev
88

99
topics:
1010
- ai

packages/langchain_core/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version: 0.3.1
44
repository: https://github.com/davidmigloz/langchain_dart/tree/main/packages/langchain_core
55
issue_tracker: https://github.com/davidmigloz/langchain_dart/issues?q=label:p:langchain_core
66
homepage: https://github.com/davidmigloz/langchain_dart
7-
documentation: https://langchaindart.com
7+
documentation: https://langchaindart.dev
88

99
topics:
1010
- ai

packages/langchain_firebase/example/pubspec.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ packages:
228228
path: ".."
229229
relative: true
230230
source: path
231-
version: "0.1.0"
231+
version: "0.1.0+1"
232232
leak_tracker:
233233
dependency: transitive
234234
description:

packages/langchain_firebase/lib/src/chat_models/vertex_ai/chat_firebase_vertex_ai.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ import 'types.dart';
111111
///
112112
/// [ChatFirebaseVertexAI] supports tool calling.
113113
///
114-
/// Check the [docs](https://langchaindart.com/#/modules/model_io/models/chat_models/how_to/tools)
114+
/// Check the [docs](https://langchaindart.dev/#/modules/model_io/models/chat_models/how_to/tools)
115115
/// for more information on how to use tools.
116116
///
117117
/// Example:

packages/langchain_firebase/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version: 0.1.0+1
44
repository: https://github.com/davidmigloz/langchain_dart/tree/main/packages/langchain_firebase
55
issue_tracker: https://github.com/davidmigloz/langchain_dart/issues?q=label:p:langchain_firebase
66
homepage: https://github.com/davidmigloz/langchain_dart
7-
documentation: https://langchaindart.com
7+
documentation: https://langchaindart.dev
88

99
topics:
1010
- ai

packages/langchain_google/lib/src/chat_models/google_ai/chat_google_generative_ai.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ import 'types.dart';
118118
///
119119
/// [ChatGoogleGenerativeAI] supports tool calling.
120120
///
121-
/// Check the [docs](https://langchaindart.com/#/modules/model_io/models/chat_models/how_to/tools)
121+
/// Check the [docs](https://langchaindart.dev/#/modules/model_io/models/chat_models/how_to/tools)
122122
/// for more information on how to use tools.
123123
///
124124
/// Example:

packages/langchain_google/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version: 0.5.0
44
repository: https://github.com/davidmigloz/langchain_dart/tree/main/packages/langchain_google
55
issue_tracker: https://github.com/davidmigloz/langchain_dart/issues?q=label:p:langchain_google
66
homepage: https://github.com/davidmigloz/langchain_dart
7-
documentation: https://langchaindart.com
7+
documentation: https://langchaindart.dev
88

99
topics:
1010
- ai

packages/langchain_huggingface/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version: 0.0.1-dev.1
44
repository: https://github.com/davidmigloz/langchain_dart/tree/main/packages/langchain_huggingface
55
issue_tracker: https://github.com/davidmigloz/langchain_dart/issues?q=label:p:langchain_huggingface
66
homepage: https://github.com/davidmigloz/langchain_dart
7-
documentation: https://langchaindart.com
7+
documentation: https://langchaindart.dev
88
publish_to: none # Remove when the package is ready to be published
99

1010
topics:

packages/langchain_microsoft/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version: 0.0.1-dev.1
44
repository: https://github.com/davidmigloz/langchain_dart/tree/main/packages/langchain_microsoft
55
issue_tracker: https://github.com/davidmigloz/langchain_dart/issues?q=label:p:langchain_microsoft
66
homepage: https://github.com/davidmigloz/langchain_dart
7-
documentation: https://langchaindart.com
7+
documentation: https://langchaindart.dev
88
publish_to: none # Remove when the package is ready to be published
99

1010
topics:

packages/langchain_mistralai/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version: 0.2.0+1
44
repository: https://github.com/davidmigloz/langchain_dart/tree/main/packages/langchain_mistralai
55
issue_tracker: https://github.com/davidmigloz/langchain_dart/issues?q=label:p:langchain_mistralai
66
homepage: https://github.com/davidmigloz/langchain_dart
7-
documentation: https://langchaindart.com
7+
documentation: https://langchaindart.dev
88

99
topics:
1010
- ai

packages/langchain_ollama/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version: 0.2.1+1
44
repository: https://github.com/davidmigloz/langchain_dart/tree/main/packages/langchain_ollama
55
issue_tracker: https://github.com/davidmigloz/langchain_dart/issues?q=label:p:langchain_ollama
66
homepage: https://github.com/davidmigloz/langchain_dart
7-
documentation: https://langchaindart.com
7+
documentation: https://langchaindart.dev
88

99
topics:
1010
- ai

0 commit comments

Comments
 (0)