Skip to content

Commit

Permalink
Changed default model to the latest gpt-4 preview
Browse files Browse the repository at this point in the history
  • Loading branch information
VRSEN committed Feb 1, 2024
1 parent c8068fb commit fc06238
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion agency_swarm/agents/agent.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def __init__(self, id: str = None, name: str = None, description: str = None, in
tools: List[Union[Type[BaseTool], Type[Retrieval], Type[CodeInterpreter]]] = None,
files_folder: Union[List[str], str] = None, schemas_folder: Union[List[str], str] = None,
api_headers: Dict[str, Dict[str, str]] = None, api_params: Dict[str, Dict[str, str]] = None,
file_ids: List[str] = None, metadata: Dict[str, str] = None, model: str = "gpt-4-1106-preview"):
file_ids: List[str] = None, metadata: Dict[str, str] = None, model: str = "gpt-4-turbo-preview"):
"""
Initializes an Agent with specified attributes, tools, and OpenAI client.
Expand Down

0 comments on commit fc06238

Please sign in to comment.