Skip to content

Commit

Permalink
Update assistants.py
Browse files Browse the repository at this point in the history
  • Loading branch information
jlowin committed Mar 20, 2024
1 parent bb4a3b2 commit d480305
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/marvin/beta/assistants/assistants.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,9 @@ class Assistant(BaseModel, ExposeSyncMethodsMixin):
instructions (list): List of instructions for the assistant.
"""

model_config = dict(extra="forbid")
id: Optional[str] = None
name: str = "Assistant"
description: Optional[str] = None
model: str = Field(None, validate_default=True)
instructions: Optional[str] = Field(None, repr=False)
tools: list[Union[AssistantTool, Callable]] = []
Expand Down

0 comments on commit d480305

Please sign in to comment.