v1.3.0
Co-Authored-By: Quentin Torroba <quentin.torroba@mistral.ai> Co-Authored-By: Michel Thomazo <michel.thomazo@mistral.ai> Co-Authored-By: Clément Drouin <clement.drouin@mistral.ai> Co-Authored-by: Thiago Padilha <thiago@coplane.com>
This commit is contained in:
parent
2e1e15120d
commit
078693fc64
67 changed files with 3959 additions and 819 deletions
|
|
@ -9,6 +9,7 @@ MOCK_DATA_ENV_VAR = "VIBE_MOCK_LLM_DATA"
|
|||
|
||||
def mock_llm_chunk(
|
||||
content: str = "Hello!",
|
||||
reasoning_content: str | None = None,
|
||||
role: Role = Role.assistant,
|
||||
tool_calls: list[ToolCall] | None = None,
|
||||
name: str | None = None,
|
||||
|
|
@ -19,6 +20,7 @@ def mock_llm_chunk(
|
|||
message = LLMMessage(
|
||||
role=role,
|
||||
content=content,
|
||||
reasoning_content=reasoning_content,
|
||||
tool_calls=tool_calls,
|
||||
name=name,
|
||||
tool_call_id=tool_call_id,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue