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
4 changes: 4 additions & 0 deletions mostlyai/mock/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -836,6 +836,10 @@ def supports_structured_outputs(model: str) -> bool:

llm_output_format = LLMOutputFormat.JSON if supports_structured_outputs(llm_config.model) else LLMOutputFormat.CSV

# Callers pass batch_size=None explicitly; that overrides the parameter default unless normalized here.
if batch_size is None:
batch_size = 20

previous_rows = deque(maxlen=previous_rows_size)

# derive data for augmentation
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ litellm-proxy = [
"litellm[proxy]>=1.67.0",
]
mcp = [
"fastmcp>=2.0.0,<3.0.0",
"fastmcp>=3.0.0,<4.0.0",
]

[dependency-groups]
Expand Down
Loading