Skip to content

Commit

Permalink
Update docs.
Browse files Browse the repository at this point in the history
  • Loading branch information
dnwpark committed Feb 26, 2025
1 parent f387c8f commit c748664
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion docs/reference/ai/extai.rst
Original file line number Diff line number Diff line change
Expand Up @@ -367,6 +367,7 @@ Anthropic (`documentation <https://docs.anthropic.com/claude/docs/models-overvie
Abstract base type for AI models.

Annotations:

* ``model_name`` - Model identifier
* ``model_provider`` - Provider identifier

Expand All @@ -377,8 +378,9 @@ Anthropic (`documentation <https://docs.anthropic.com/claude/docs/models-overvie
Abstract type for embedding models.

Annotations:

* ``embedding_model_max_input_tokens`` - Maximum tokens per input
* ``embedding_model_max_batch_tokens`` - Maximum tokens per batch
* ``embedding_model_max_batch_tokens`` - Maximum tokens per batch. Default: ``'8191'``.
* ``embedding_model_max_output_dimensions`` - Maximum embedding dimensions
* ``embedding_model_supports_shortening`` - Input shortening support flag

Expand All @@ -391,6 +393,7 @@ Anthropic (`documentation <https://docs.anthropic.com/claude/docs/models-overvie
Abstract type for text generation models.

Annotations:

* ``text_gen_model_context_window`` - Model's context window size


Expand Down Expand Up @@ -474,6 +477,7 @@ Example custom prompt configuration:
Type for chat prompt messages.

Properties:

* ``participant_role``: ChatParticipantRole (Required)
* ``participant_name``: str (Optional)
* ``content``: str (Required)
Expand All @@ -485,6 +489,7 @@ Example custom prompt configuration:
Type for chat prompt configuration.

Properties:

* ``name``: str (Required)
* ``messages``: set of ChatPromptMessage (Required)

0 comments on commit c748664

Please sign in to comment.