@tearline_news · Post #12 · 13.07.2024 г., 13:13
Behold #Tearline🦉! Our #web3AI gears are in motion. The ultimate on-chain solver that embodies your vision.
TGINSIGHT SIMILAR POSTS
Изворен канал @pythonotes · Post #401 · 15 дек.
Функция asyncio.wait() это еще один способ вызвать множество асинхронных задач. Она работает в нескольких режимах. 1. Самый простой - ждем завершения всех задач async def main(): tasks = [asyncio.create_task(do_it(i)) for i in range(10)] done, pending = await asyncio.wait( tasks, return_when=asyncio.ALL_COMPLETED ) for task in done: try: print(task.result()) except Exception as e: print(e) Очень похоже на gather, но работает не так. ▫️возвращает не результаты, а два сета с объектами Task у которых можно забрать результат через task.result() если они в списке done ▫️не гарантирует порядок результатов так как оба объекта это set ▫️не выбрасывает исключение когда оно появляется, а сохраняет его в Task. Исключение появится когда попробуете забрать резултьтат. 2. Ждем завершения первой задачи, даже если там ошибка. async def main(): tasks = [asyncio.create_task(do_it(i)) for i in range(3)] done, pending = await asyncio.wait( tasks, return_when=asyncio.FIRST_COMPLETED ) # в done может быть несколько задач! for task in done: try: print(task.result()) except Exception as e: print(f"Fail: {e}") # Оставшиеся задачи в pending, как правило, нужно отменить, иначе они будут продолжать работать for task in pending: task.cancel() В сете done будут таски которые успели завершится, причем как успешно так и нет. 3. До первой ошибки. Тоже самое, но с аргументом FIRST_EXCEPTION done, pending = await asyncio.wait( tasks, return_when=asyncio.FIRST_EXCEPTION ) Функция завершается как только первая задача упадет с ошибкой. Учтите, что в любом случае done вы можете обранужить несколько задач, как с ошибками так и успешные. ↗️ Полный листинг примеров здесь #async
Hashtags
Пребарај: #web3ai
@tearline_news · Post #12 · 13.07.2024 г., 13:13
Behold #Tearline🦉! Our #web3AI gears are in motion. The ultimate on-chain solver that embodies your vision.
@edgemarketai · Post #8169 · 09.05.2026 г., 11:11
The internet rewards attention. EdgeMarket is designed to reward accuracy. We are building a decentralised validation layer where communities collectively identify signal, filter noise, and strengthen truth through time. Noise: • Clickbait • Manipulation • Speculation • Fear • Bias Signal: • Clarity • Accuracy • Alignment Maybe the future isn’t predicted. Maybe it’s discovered. $SIGNAL powers the ecosystem. Validate. Earn. Shape the future. #EdgeMarket#SIGNAL#Web3AI#TruthValidation#CollectiveIntelligence
@gpt360_announcement · Post #1549 · 08.04.2025 г., 09:44
🚨𝐆𝐏𝐓𝟑𝟔𝟎 𝐢𝐬 𝐣𝐨𝐢𝐧𝐢𝐧𝐠 𝐭𝐡𝐞 𝐇𝐲𝐫𝐚 𝐀𝐌𝐀!🚨 Hey Web3 fam! We're excited to announce that our CMO Anton Sheleg will be joining an epic AMA session hosted by Hyra101 to talk all things Web3 AI vs. centralized giants — and why this revolution is just getting started👀 ⬇️ 𝐓𝐨𝐩𝐢𝐜: AI Wars 2025: Can Web3 AI Overtake Centralized Giants? ⬇️ 𝐃𝐚𝐭𝐞: April 8, 2025 ⬇️ 𝐓𝐢𝐦𝐞: 13:00 (UTC) ⬇️ 𝐖𝐡𝐞𝐫𝐞: https://x.com/i/spaces/1OdJrDmzzrlKX ⚡️ 𝐏𝐚𝐫𝐭𝐢𝐜𝐢𝐩𝐚𝐧𝐭𝐬: GPT360, Hyra Network, GPUAI 🔥 We'll be diving deep into strategy, vision, and what’s next for AI on-chain Tag your friends, bring your questions, and see you there! #GPT360#HyraNetwork#AIWars2025#Web3AI#AMA#DecentralizedAI
@CryptoM · Post #65388 · 13.04.2026 г., 04:14
🚀 AINFT Platform Surpasses 700,000 Users, Advances in Web3 AI The AINFT platform has officially exceeded 700,000 users, according to official data. According to Odaily, the growing user base and the continuous enhancement of AI model capabilities are propelling it to become a leading AI platform in the Web3 sector. AINFT currently offers users AI models ready for production and fully supports the execution of on-chain automated workflows, facilitating a rapid transition from creative ideas to on-chain implementation. Leveraging its expanding community and open technical architecture, AINFT aims to lower the barriers to using Web3 AI, enabling more efficient deployment of innovative applications. #AINFT#700000Users#Web3#AIPlatform#AI#Blockchain#OnChain#AutomatedWorkflows#Web3AI#Innovation#Technology#Community