This is an automated email from the ASF dual-hosted git repository.
xtsong pushed a commit to branch release-0.2
in repository https://gitbox.apache.org/repos/asf/flink-agents.git
The following commit(s) were added to refs/heads/release-0.2 by this push:
new 38b6a44b [hotfix] Fix typos in documentation (#500)
38b6a44b is described below
commit 38b6a44b322965b19c3d7a0bfa2c3e6b0cd387a1
Author: Weiqing Yang <[email protected]>
AuthorDate: Tue Jan 27 23:51:52 2026 -0800
[hotfix] Fix typos in documentation (#500)
---
docs/content/docs/development/chat_models.md | 2 +-
docs/content/docs/development/embedding_models.md | 2 +-
docs/content/docs/faq/faq.md | 2 +-
docs/content/docs/get-started/installation.md | 2 +-
4 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/docs/content/docs/development/chat_models.md
b/docs/content/docs/development/chat_models.md
index 7cecea68..f379149a 100644
--- a/docs/content/docs/development/chat_models.md
+++ b/docs/content/docs/development/chat_models.md
@@ -468,7 +468,7 @@ class MyAgent(Agent):
@staticmethod
def my_chat_model() -> ResourceDescriptor:
return ResourceDescriptor(
- clazz=ResourceName.ChatModel.OLLAMA_CONNECTION,
+ clazz=ResourceName.ChatModel.OLLAMA_SETUP,
connection="ollama_connection",
model="qwen3:8b",
temperature=0.7,
diff --git a/docs/content/docs/development/embedding_models.md
b/docs/content/docs/development/embedding_models.md
index 17826116..4781e43a 100644
--- a/docs/content/docs/development/embedding_models.md
+++ b/docs/content/docs/development/embedding_models.md
@@ -25,7 +25,7 @@ under the License.
# Embedding Models
{{< hint info >}}
-This page covers text-based embedding models. Flink agents does not currently
support multimodal embeddings.
+This page covers text-based embedding models. Flink Agents does not currently
support multimodal embeddings.
{{< /hint >}}
## Overview
diff --git a/docs/content/docs/faq/faq.md b/docs/content/docs/faq/faq.md
index 6260008f..c892ea8b 100644
--- a/docs/content/docs/faq/faq.md
+++ b/docs/content/docs/faq/faq.md
@@ -63,7 +63,7 @@ To use cross-language resources, please test the
functionality by deploying to a
When choosing between Flink Agents' Java API and Python API, besides the
team's experience and preferences, there's another thing needs to be
considered. Flink Agents provides built-in integration supports for many
echosystem providers. Some of these supports are in only one language. While
you can still use them when building agents in another language, leveraging
Flink Agents' cross-language supports, this comes with a limitation of not
supporting async execution, which may bring perfo [...]
-The following matrix shows the native integration support status of providers
over languages. For those marked as ❌, cross-langauge is needed thus async
execution is not supported.
+The following matrix shows the native integration support status of providers
over languages. For those marked as ❌, cross-language is needed thus async
execution is not supported.
**Chat Models**
diff --git a/docs/content/docs/get-started/installation.md
b/docs/content/docs/get-started/installation.md
index 0ca156d5..768a1cd5 100644
--- a/docs/content/docs/get-started/installation.md
+++ b/docs/content/docs/get-started/installation.md
@@ -192,7 +192,7 @@ For execution in IDE, enable the feature `add dependencies
with provided scope t
<groupId>org.apache.flink</groupId>
<artifactId>flink-agents-api</artifactId>
<version>${flink-agents.version}</version>
- <scope>provide</scope>
+ <scope>provided</scope>
</dependency>
<!-- Flink Core API -->
<dependency>