Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion scripts/mock

Large diffs are not rendered by default.

18 changes: 6 additions & 12 deletions src/sambanova/resources/chat/completions.py
Original file line number Diff line number Diff line change
Expand Up @@ -160,8 +160,7 @@ def create(
parameter generates many completions, it can quickly consume your token quota.
Use carefully and ensure that you have reasonable settings for `max_tokens`.

parallel_tool_calls: Whether to enable parallel function calling during tool use, This is not yet
supported by our models.
parallel_tool_calls: Whether to enable parallel function calling during tool use.

presence_penalty: Number between -2.0 and 2.0. Positive values penalize new tokens based on
whether they appear in the text so far, increasing the model's likelihood to
Expand Down Expand Up @@ -355,8 +354,7 @@ def create(
parameter generates many completions, it can quickly consume your token quota.
Use carefully and ensure that you have reasonable settings for `max_tokens`.

parallel_tool_calls: Whether to enable parallel function calling during tool use, This is not yet
supported by our models.
parallel_tool_calls: Whether to enable parallel function calling during tool use.

presence_penalty: Number between -2.0 and 2.0. Positive values penalize new tokens based on
whether they appear in the text so far, increasing the model's likelihood to
Expand Down Expand Up @@ -545,8 +543,7 @@ def create(
parameter generates many completions, it can quickly consume your token quota.
Use carefully and ensure that you have reasonable settings for `max_tokens`.

parallel_tool_calls: Whether to enable parallel function calling during tool use, This is not yet
supported by our models.
parallel_tool_calls: Whether to enable parallel function calling during tool use.

presence_penalty: Number between -2.0 and 2.0. Positive values penalize new tokens based on
whether they appear in the text so far, increasing the model's likelihood to
Expand Down Expand Up @@ -863,8 +860,7 @@ async def create(
parameter generates many completions, it can quickly consume your token quota.
Use carefully and ensure that you have reasonable settings for `max_tokens`.

parallel_tool_calls: Whether to enable parallel function calling during tool use, This is not yet
supported by our models.
parallel_tool_calls: Whether to enable parallel function calling during tool use.

presence_penalty: Number between -2.0 and 2.0. Positive values penalize new tokens based on
whether they appear in the text so far, increasing the model's likelihood to
Expand Down Expand Up @@ -1058,8 +1054,7 @@ async def create(
parameter generates many completions, it can quickly consume your token quota.
Use carefully and ensure that you have reasonable settings for `max_tokens`.

parallel_tool_calls: Whether to enable parallel function calling during tool use, This is not yet
supported by our models.
parallel_tool_calls: Whether to enable parallel function calling during tool use.

presence_penalty: Number between -2.0 and 2.0. Positive values penalize new tokens based on
whether they appear in the text so far, increasing the model's likelihood to
Expand Down Expand Up @@ -1248,8 +1243,7 @@ async def create(
parameter generates many completions, it can quickly consume your token quota.
Use carefully and ensure that you have reasonable settings for `max_tokens`.

parallel_tool_calls: Whether to enable parallel function calling during tool use, This is not yet
supported by our models.
parallel_tool_calls: Whether to enable parallel function calling during tool use.

presence_penalty: Number between -2.0 and 2.0. Positive values penalize new tokens based on
whether they appear in the text so far, increasing the model's likelihood to
Expand Down
5 changes: 1 addition & 4 deletions src/sambanova/types/chat/completion_create_params.py
Original file line number Diff line number Diff line change
Expand Up @@ -152,10 +152,7 @@ class CompletionCreateParamsBase(TypedDict, total=False):
"""

parallel_tool_calls: Optional[bool]
"""
Whether to enable parallel function calling during tool use, This is not yet
supported by our models.
"""
"""Whether to enable parallel function calling during tool use."""

presence_penalty: Optional[float]
"""Number between -2.0 and 2.0.
Expand Down
Loading