mirror of
https://github.com/aljazceru/Auto-GPT.git
synced 2026-01-30 03:14:22 +01:00
6 lines
179 B
Python
6 lines
179 B
Python
from typing import Any
|
|
|
|
|
|
def format_numbered_list(items: list[Any], start_at: int = 1) -> str:
|
|
return "\n".join(f"{i}. {str(item)}" for i, item in enumerate(items, start_at))
|