Skip to content

Commit 53a0348

Browse files
committed
minor #1207 Fix a/an grammar typos (OskarStark)
This PR was merged into the main branch. Discussion ---------- Fix a/an grammar typos | Q | A | ------------- | --- | Bug fix? | yes | New feature? | no | Docs? | no | Issues | -- | License | MIT Commits ------- b1cf3d4 Fix a/an grammar typos
2 parents d14504d + b1cf3d4 commit 53a0348

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Symfony AI consists of several lower and higher level **components** and the res
1111
* **Components**
1212
* **[Platform](src/platform/README.md)**: A unified interface to various AI platforms like OpenAI, Anthropic, Azure, Gemini, VertexAI, and more.
1313
* **[Agent](src/agent/README.md)**: Framework for building AI agents that can interact with users and perform tasks.
14-
* **[Chat](src/chat/README.md)**: An unified interface to send messages to agents and store long-term context.
14+
* **[Chat](src/chat/README.md)**: A unified interface to send messages to agents and store long-term context.
1515
* **[Store](src/store/README.md)**: Data storage abstraction with indexing and retrieval for AI applications.
1616
* **Bundles**
1717
* **[AI Bundle](src/ai-bundle/README.md)**: Symfony integration for AI Platform, Store and Agent components.

docs/bundles/ai-bundle.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ Advanced Example with Multiple Agents
8282
description: 'Provides the name of your company'
8383
method: 'foo' # Optional with default value '__invoke'
8484
85-
# Referencing a agent => agent in agent 🤯
85+
# Referencing an agent => agent in agent 🤯
8686
- agent: 'research'
8787
name: 'wikipedia_research'
8888
description: 'Can research on Wikipedia'

src/platform/src/Bridge/Mistral/Tests/Contract/ImageUrlNormalizerTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public function testSupportsNormalization()
2727
$this->assertTrue($normalizer->supportsNormalization(new ImageUrl('https://example.com/image.png'), context: [
2828
Contract::CONTEXT_MODEL => new Mistral('mistral-large-latest'),
2929
]));
30-
$this->assertFalse($normalizer->supportsNormalization('not a image url'));
30+
$this->assertFalse($normalizer->supportsNormalization('not an image url'));
3131
}
3232

3333
public function testGetSupportedTypes()

0 commit comments

Comments
 (0)