Skip to content

Commit eb11ada

Browse files
authored
Clarify docs.
1 parent 7bd4a67 commit eb11ada

File tree

5 files changed

+3
-9
lines changed

5 files changed

+3
-9
lines changed

src/Providers/OpenAiCompatibleImplementation/AbstractOpenAiCompatibleImageGenerationModel.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
* Base class for an image generation model for providers that implement OpenAI's API format.
2828
*
2929
* This abstract class is designed to work with any AI provider that offers an OpenAI-compatible
30-
* API endpoint for image generation, including but not limited to OpenAI, Google, and other
30+
* API endpoint for image generation, including but not limited to Anthropic, Google, and other
3131
* providers that have adopted OpenAI's image generation API specification as a standard interface.
3232
*
3333
* @since 0.1.0

src/Providers/OpenAiCompatibleImplementation/AbstractOpenAiCompatibleModelMetadataDirectory.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
* Base class for a model metadata directory for providers that implement OpenAI's API format.
1717
*
1818
* This abstract class is designed to work with any AI provider that offers an OpenAI-compatible
19-
* models listing endpoint, including but not limited to OpenAI, Anthropic, Google, and other
19+
* models listing endpoint, including but not limited to Anthropic, Google, and other
2020
* providers that have adopted OpenAI's models API specification as a standard interface.
2121
*
2222
* @since 0.1.0

src/Providers/OpenAiCompatibleImplementation/AbstractOpenAiCompatibleTextGenerationModel.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
* Base class for a text generation model for providers that implement OpenAI's API format.
3131
*
3232
* This abstract class is designed to work with any AI provider that offers an OpenAI-compatible
33-
* API endpoint, including but not limited to OpenAI, Anthropic, Google, and other providers
33+
* API endpoint, including but not limited to Anthropic, Google, and other providers
3434
* that have adopted OpenAI's API specification as a standard interface.
3535
*
3636
* @since 0.1.0

tests/mocks/MockOpenAiCompatibleImageGenerationModel.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,6 @@
1414

1515
/**
1616
* Mock class for AbstractOpenAiCompatibleImageGenerationModel to expose protected methods for testing.
17-
*
18-
* This mock represents an image generation model that implements OpenAI's API format,
19-
* which can be used by any AI provider offering OpenAI-compatible endpoints.
2017
*/
2118
class MockOpenAiCompatibleImageGenerationModel extends AbstractOpenAiCompatibleImageGenerationModel
2219
{

tests/unit/Providers/OpenAiCompatibleImplementation/MockOpenAiCompatibleTextGenerationModel.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,6 @@
2020

2121
/**
2222
* Mock class for testing AbstractOpenAiCompatibleTextGenerationModel.
23-
*
24-
* This mock represents a text generation model that implements OpenAI's API format,
25-
* which can be used by any AI provider offering OpenAI-compatible endpoints.
2623
*/
2724
class MockOpenAiCompatibleTextGenerationModel extends AbstractOpenAiCompatibleTextGenerationModel
2825
{

0 commit comments

Comments
 (0)