Skip to content

Commit

Permalink
refactor: Migrate to langchaindart.dev domain (#434)
Browse files Browse the repository at this point in the history
  • Loading branch information
davidmigloz authored May 24, 2024
1 parent e5412bd commit 6246ab1
Show file tree
Hide file tree
Showing 48 changed files with 59 additions and 59 deletions.
2 changes: 1 addition & 1 deletion docs/CNAME
Original file line number Diff line number Diff line change
@@ -1 +1 @@
langchaindart.com
langchaindart.dev
2 changes: 1 addition & 1 deletion docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ LCEL is a declarative way to compose chains. LCEL was designed from day 1 to sup

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

## Modules

Expand Down
2 changes: 1 addition & 1 deletion docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
<meta property="og:type" content="website"/>
<meta property="og:title"
content="Build powerful LLM-based Dart/Flutter applications."/>
<meta property="og:url" content="https://langchaindart.com"/>
<meta property="og:url" content="https://langchaindart.dev"/>
<meta property="og:description"
content="LangChain.dart official library documentation. Includes examples and tutorials."/>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ await stream.forEach(print);

`ChatGoogleGenerativeAI` supports tool calling.

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

Example:
```dart
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ await stream.forEach(print);

`ChatGoogleGenerativeAI` supports tool calling.

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

Example:
```dart
Expand Down
4 changes: 2 additions & 2 deletions examples/browser_summarizer/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ packages:
path: "../../packages/langchain_openai"
relative: true
source: path
version: "0.6.1"
version: "0.6.1+1"
langchain_tiktoken:
dependency: transitive
description:
Expand Down Expand Up @@ -309,7 +309,7 @@ packages:
path: "../../packages/openai_dart"
relative: true
source: path
version: "0.3.2"
version: "0.3.2+1"
path:
dependency: transitive
description:
Expand Down
2 changes: 1 addition & 1 deletion examples/docs_examples/README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# Docs examples

Examples used in https://langchaindart.com documentation.
Examples used in https://langchaindart.dev documentation.
8 changes: 4 additions & 4 deletions examples/docs_examples/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -264,14 +264,14 @@ packages:
path: "../../packages/langchain_ollama"
relative: true
source: path
version: "0.2.1"
version: "0.2.1+1"
langchain_openai:
dependency: "direct main"
description:
path: "../../packages/langchain_openai"
relative: true
source: path
version: "0.6.1"
version: "0.6.1+1"
langchain_tiktoken:
dependency: transitive
description:
Expand Down Expand Up @@ -317,14 +317,14 @@ packages:
path: "../../packages/ollama_dart"
relative: true
source: path
version: "0.1.0"
version: "0.1.0+1"
openai_dart:
dependency: "direct overridden"
description:
path: "../../packages/openai_dart"
relative: true
source: path
version: "0.3.2"
version: "0.3.2+1"
path:
dependency: transitive
description:
Expand Down
2 changes: 1 addition & 1 deletion examples/docs_examples/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: docs_examples
description: Examples used in langchaindart.com documentation.
description: Examples used in langchaindart.dev documentation.
version: 1.0.0
publish_to: none

Expand Down
2 changes: 1 addition & 1 deletion examples/hello_world_backend/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ It exposes a REST API that given a list of topics, generates a sonnet about them

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

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)
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)
blog post.

![Hello world backend](hello_world_backend.gif)
Expand Down
4 changes: 2 additions & 2 deletions examples/hello_world_backend/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ packages:
path: "../../packages/langchain_openai"
relative: true
source: path
version: "0.6.1"
version: "0.6.1+1"
langchain_tiktoken:
dependency: transitive
description:
Expand All @@ -156,7 +156,7 @@ packages:
path: "../../packages/openai_dart"
relative: true
source: path
version: "0.3.2"
version: "0.3.2+1"
path:
dependency: transitive
description:
Expand Down
2 changes: 1 addition & 1 deletion examples/hello_world_cli/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

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

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)
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)
blog post.

## Usage
Expand Down
4 changes: 2 additions & 2 deletions examples/hello_world_cli/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ packages:
path: "../../packages/langchain_openai"
relative: true
source: path
version: "0.6.1"
version: "0.6.1+1"
langchain_tiktoken:
dependency: transitive
description:
Expand All @@ -148,7 +148,7 @@ packages:
path: "../../packages/openai_dart"
relative: true
source: path
version: "0.3.2"
version: "0.3.2+1"
path:
dependency: transitive
description:
Expand Down
2 changes: 1 addition & 1 deletion examples/hello_world_flutter/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

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

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)
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)
blog post.

## Usage
Expand Down
4 changes: 2 additions & 2 deletions examples/hello_world_flutter/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ packages:
path: "../../packages/langchain_openai"
relative: true
source: path
version: "0.6.1"
version: "0.6.1+1"
langchain_tiktoken:
dependency: transitive
description:
Expand Down Expand Up @@ -193,7 +193,7 @@ packages:
path: "../../packages/openai_dart"
relative: true
source: path
version: "0.3.2"
version: "0.3.2+1"
path:
dependency: transitive
description:
Expand Down
2 changes: 1 addition & 1 deletion packages/anthropic_sdk_dart/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version: 0.0.1-dev.1
repository: https://github.com/davidmigloz/langchain_dart/tree/main/packages/anthropic_sdk_dart
issue_tracker: https://github.com/davidmigloz/langchain_dart/issues?q=label:p:anthropic_sdk_dart
homepage: https://github.com/davidmigloz/langchain_dart
documentation: https://langchaindart.com
documentation: https://langchaindart.dev

topics:
- ai
Expand Down
2 changes: 1 addition & 1 deletion packages/chromadb/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version: 0.2.0
repository: https://github.com/davidmigloz/langchain_dart/tree/main/packages/chromadb
issue_tracker: https://github.com/davidmigloz/langchain_dart/issues
homepage: https://github.com/davidmigloz/langchain_dart
documentation: https://langchaindart.com
documentation: https://langchaindart.dev

topics:
- ai
Expand Down
2 changes: 1 addition & 1 deletion packages/googleai_dart/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version: 0.1.0
repository: https://github.com/davidmigloz/langchain_dart/tree/main/packages/googleai_dart
issue_tracker: https://github.com/davidmigloz/langchain_dart/issues?q=label:p:googleai_dart
homepage: https://github.com/davidmigloz/langchain_dart
documentation: https://langchaindart.com
documentation: https://langchaindart.dev

topics:
- ai
Expand Down
6 changes: 3 additions & 3 deletions packages/langchain/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@

## 0.0.13

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

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

## 0.0.1-dev.7

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

## 0.0.1-dev.1

Expand Down
4 changes: 2 additions & 2 deletions packages/langchain/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -156,9 +156,9 @@ print(res);

## Documentation

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

## Community
Expand Down
2 changes: 1 addition & 1 deletion packages/langchain/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version: 0.7.1
repository: https://github.com/davidmigloz/langchain_dart/tree/main/packages/langchain
issue_tracker: https://github.com/davidmigloz/langchain_dart/issues
homepage: https://github.com/davidmigloz/langchain_dart
documentation: https://langchaindart.com
documentation: https://langchaindart.dev

topics:
- ai
Expand Down
2 changes: 1 addition & 1 deletion packages/langchain_amazon/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version: 0.0.1-dev.1
repository: https://github.com/davidmigloz/langchain_dart/tree/main/packages/langchain_amazon
issue_tracker: https://github.com/davidmigloz/langchain_dart/issues?q=label:p:langchain_amazon
homepage: https://github.com/davidmigloz/langchain_dart
documentation: https://langchaindart.com
documentation: https://langchaindart.dev
publish_to: none # Remove when the package is ready to be published

topics:
Expand Down
2 changes: 1 addition & 1 deletion packages/langchain_anthropic/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version: 0.0.1-dev.1
repository: https://github.com/davidmigloz/langchain_dart/tree/main/packages/langchain_anthropic
issue_tracker: https://github.com/davidmigloz/langchain_dart/issues?q=label:p:langchain_anthropic
homepage: https://github.com/davidmigloz/langchain_dart
documentation: https://langchaindart.com
documentation: https://langchaindart.dev
publish_to: none # Remove when the package is ready to be published

topics:
Expand Down
2 changes: 1 addition & 1 deletion packages/langchain_chroma/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version: 0.2.0+4
repository: https://github.com/davidmigloz/langchain_dart/tree/main/packages/langchain_chroma
issue_tracker: https://github.com/davidmigloz/langchain_dart/issues?q=label:p:langchain_chroma
homepage: https://github.com/davidmigloz/langchain_dart
documentation: https://langchaindart.com
documentation: https://langchaindart.dev

topics:
- ai
Expand Down
2 changes: 1 addition & 1 deletion packages/langchain_cohere/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version: 0.0.1-dev.1
repository: https://github.com/davidmigloz/langchain_dart/tree/main/packages/langchain_cohere
issue_tracker: https://github.com/davidmigloz/langchain_dart/issues?q=label:p:langchain_cohere
homepage: https://github.com/davidmigloz/langchain_dart
documentation: https://langchaindart.com
documentation: https://langchaindart.dev
publish_to: none # Remove when the package is ready to be published

topics:
Expand Down
2 changes: 1 addition & 1 deletion packages/langchain_community/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version: 0.2.0+1
repository: https://github.com/davidmigloz/langchain_dart/tree/main/packages/langchain_community
issue_tracker: https://github.com/davidmigloz/langchain_dart/issues?q=label:p:langchain_community
homepage: https://github.com/davidmigloz/langchain_dart
documentation: https://langchaindart.com
documentation: https://langchaindart.dev

topics:
- ai
Expand Down
2 changes: 1 addition & 1 deletion packages/langchain_core/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version: 0.3.1
repository: https://github.com/davidmigloz/langchain_dart/tree/main/packages/langchain_core
issue_tracker: https://github.com/davidmigloz/langchain_dart/issues?q=label:p:langchain_core
homepage: https://github.com/davidmigloz/langchain_dart
documentation: https://langchaindart.com
documentation: https://langchaindart.dev

topics:
- ai
Expand Down
2 changes: 1 addition & 1 deletion packages/langchain_firebase/example/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ packages:
path: ".."
relative: true
source: path
version: "0.1.0"
version: "0.1.0+1"
leak_tracker:
dependency: transitive
description:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ import 'types.dart';
///
/// [ChatFirebaseVertexAI] supports tool calling.
///
/// Check the [docs](https://langchaindart.com/#/modules/model_io/models/chat_models/how_to/tools)
/// Check the [docs](https://langchaindart.dev/#/modules/model_io/models/chat_models/how_to/tools)
/// for more information on how to use tools.
///
/// Example:
Expand Down
2 changes: 1 addition & 1 deletion packages/langchain_firebase/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version: 0.1.0+1
repository: https://github.com/davidmigloz/langchain_dart/tree/main/packages/langchain_firebase
issue_tracker: https://github.com/davidmigloz/langchain_dart/issues?q=label:p:langchain_firebase
homepage: https://github.com/davidmigloz/langchain_dart
documentation: https://langchaindart.com
documentation: https://langchaindart.dev

topics:
- ai
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ import 'types.dart';
///
/// [ChatGoogleGenerativeAI] supports tool calling.
///
/// Check the [docs](https://langchaindart.com/#/modules/model_io/models/chat_models/how_to/tools)
/// Check the [docs](https://langchaindart.dev/#/modules/model_io/models/chat_models/how_to/tools)
/// for more information on how to use tools.
///
/// Example:
Expand Down
2 changes: 1 addition & 1 deletion packages/langchain_google/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version: 0.5.0
repository: https://github.com/davidmigloz/langchain_dart/tree/main/packages/langchain_google
issue_tracker: https://github.com/davidmigloz/langchain_dart/issues?q=label:p:langchain_google
homepage: https://github.com/davidmigloz/langchain_dart
documentation: https://langchaindart.com
documentation: https://langchaindart.dev

topics:
- ai
Expand Down
2 changes: 1 addition & 1 deletion packages/langchain_huggingface/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version: 0.0.1-dev.1
repository: https://github.com/davidmigloz/langchain_dart/tree/main/packages/langchain_huggingface
issue_tracker: https://github.com/davidmigloz/langchain_dart/issues?q=label:p:langchain_huggingface
homepage: https://github.com/davidmigloz/langchain_dart
documentation: https://langchaindart.com
documentation: https://langchaindart.dev
publish_to: none # Remove when the package is ready to be published

topics:
Expand Down
2 changes: 1 addition & 1 deletion packages/langchain_microsoft/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version: 0.0.1-dev.1
repository: https://github.com/davidmigloz/langchain_dart/tree/main/packages/langchain_microsoft
issue_tracker: https://github.com/davidmigloz/langchain_dart/issues?q=label:p:langchain_microsoft
homepage: https://github.com/davidmigloz/langchain_dart
documentation: https://langchaindart.com
documentation: https://langchaindart.dev
publish_to: none # Remove when the package is ready to be published

topics:
Expand Down
2 changes: 1 addition & 1 deletion packages/langchain_mistralai/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version: 0.2.0+1
repository: https://github.com/davidmigloz/langchain_dart/tree/main/packages/langchain_mistralai
issue_tracker: https://github.com/davidmigloz/langchain_dart/issues?q=label:p:langchain_mistralai
homepage: https://github.com/davidmigloz/langchain_dart
documentation: https://langchaindart.com
documentation: https://langchaindart.dev

topics:
- ai
Expand Down
2 changes: 1 addition & 1 deletion packages/langchain_ollama/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version: 0.2.1+1
repository: https://github.com/davidmigloz/langchain_dart/tree/main/packages/langchain_ollama
issue_tracker: https://github.com/davidmigloz/langchain_dart/issues?q=label:p:langchain_ollama
homepage: https://github.com/davidmigloz/langchain_dart
documentation: https://langchaindart.com
documentation: https://langchaindart.dev

topics:
- ai
Expand Down
Loading

0 comments on commit 6246ab1

Please sign in to comment.