Skip to content

Commit

Permalink
Fixed CLI error
Browse files Browse the repository at this point in the history
  • Loading branch information
VRSEN committed Mar 4, 2024
1 parent 931f302 commit b7bee78
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion agency_swarm/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def main():
# genesis-agency
genesis_parser = subparsers.add_parser('genesis', help='Start genesis agency.')
genesis_parser.add_argument('--openai_key', default=None, type=str, help='OpenAI API key.')
genesis_parser.add_argument('--with_browsing', default=False, type=bool, action='store_true',
genesis_parser.add_argument('--with_browsing', default=False, action='store_true',
help='Enable browsing agent.')

args = parser.parse_args()
Expand Down

0 comments on commit b7bee78

Please sign in to comment.