chore: import upstream snapshot with attribution

This commit is contained in:
wehub-resource-sync
2026-07-13 12:39:17 +08:00
commit 4ed4e9ff99
1368 changed files with 334957 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
import asyncio
from examples.auto_mode import input_with_fallback
from .manager import ResearchManager
async def main() -> None:
query = input_with_fallback(
"What would you like to research? ",
"Impact of electric vehicles on the grid.",
)
await ResearchManager().run(query)
if __name__ == "__main__":
asyncio.run(main())