@BinanceAlphaAirdropTracker · Post #114 · 31.07.2025 г., 01:59
⏰#GAIA FCFS Claim with minimum 200 pts starts in about 1 minute 🎁 Airdrop: 500 $GAIA ($41)
Hashtags
TGINSIGHT SIMILAR POSTS
Изворен канал @pythonotes · Post #397 · 12 ное.
Использование Pydantic сегодня стало нормой, и это правильно. Но иногда на ревью вижу, что используют его не всегда корректно. Например, метод BaseModel.model_dump() по умолчанию не преобразует стандартные типы, такие как datetime, UUID или Decimal, в простой сериализуемый для JSON вид. Тогда пишут кастмоный сериализатор для этих типов чтобы функция json.dump() не падала с ошибкой. import uuid from datetime import datetime from decimal import Decimal from uuid import UUID from pydantic import BaseModel class MyModel(BaseModel): id: UUID date: datetime value: Decimal obj = MyModel( id=uuid.uuid4(), date=datetime.now(), value='1.23' ) print(obj.model_dump()) # не подходит для json.dump # { # 'id': UUID('4f8c1bc4-25fd-40cd-9dbe-2c73639b0dc1'), # 'date': datetime.datetime(2025, 12, 12, 12, 12, 12, 111111), # 'value': Decimal('1.23') # } # добавляем свой кастомный сериализатор json.dumps(obj.model_dump(), cls=MySerializer) # { # 'id': '4f8c1bc4-25fd-40cd-9dbe-2c73639b0dc1', # 'date': '2025-12-12T12:12:12.111111', # 'value': '1.23' # } В данном случае класс MySerializer обрабатывает datetime, UUID и Decimal. Например так: class MySerializer(json.JSONEncoder): def default(self, o): if isinstance(o, Decimal): return str(o) elif isinstance(o, datetime): return o.isoformat() elif isinstance(o, UUID): return str(o) return super().default(o) Специально для тех, кто всё еще так делает - в этом нет необходимости! Pydantic может это сделать сам, просто нужно добавить параметр mode="json". json.dumps(obj.model_dump(mode="json")) # { # 'id': '4f8c1bc4-25fd-40cd-9dbe-2c73639b0dc1', # 'date': '2012-12-12T12:12:12.111111', # 'value': '1.23' # } #pydantic#libs
Пребарај: #gaia
@BinanceAlphaAirdropTracker · Post #114 · 31.07.2025 г., 01:59
⏰#GAIA FCFS Claim with minimum 200 pts starts in about 1 minute 🎁 Airdrop: 500 $GAIA ($41)
Hashtags
@BinanceAlphaAirdropTracker · Post #111 · 30.07.2025 г., 07:59
⏰#GAIA Claim with minimum 233 pts starts in about 1 minute 🎁 Airdrop: 500 $GAIA ($41)
Hashtags
@cosmomyst · Post #511 · 21.11.2025 г., 12:21
🪐 As scientists plan for the future of interstellar travel, precision targeting has become a top priority, with research focusing on how to accurately send spacecraft toward stars like Alpha Centauri, over 4 light-years from Earth. To achieve this, astronomers use extremely detailed maps of nearby stars—created by ESA’s Gaia mission—which charts the exact positions and motions of more than a billion stars, allowing future probes to steer through space with unprecedented accuracy as they journey beyond our solar system. ✨ #spaceships⚡#navigation⚡#gaia⚡#nasa⚡#galaxy⚡#stars⚡#astronomy⚡#universe⚡#cosmos⚡#space 👉subscribe Universe Mysteries 👉more Channels
@githubtrending · Post #15145 · 14.09.2025 г., 13:00
#javascript#gaia#general_purpose#multiagent_systems#multimodel DeepResearchAgent is a smart system that uses a top-level planner to break down big tasks into smaller parts and assigns them to specialized agents like analyzers, researchers, and browser tools. It can deeply analyze data, do thorough research, and automatically gather up-to-date information from the web. It supports many AI models and tools, including image and video generation, and runs tasks efficiently with asynchronous operations. This system helps you get detailed, well-organized research results faster and with less effort by automating complex, multi-step tasks and combining many AI capabilities in one framework. https://github.com/SkyworkAI/DeepResearchAgent
@githubtrending · Post #15399 · 07.01.2026 г., 13:30
#python#agent#agent_framework#browsecomp#deep_research#futurex#gaia#hle#research_agent#search_agent#xbench MiroThinker v1.5 is the top open-source AI search agent with a 256K context window and up to 400 tool calls per task for deep web research, code execution, and multi-step reasoning. It leads benchmarks like HLE-Text (39.2%), BrowseComp (69.8%), and GAIA (80.8%), beating other free agents at low cost. You benefit by getting accurate, real-world research help—like finding arXiv papers or solving complex queries—faster and cheaper than paid tools, with full open-source access on GitHub and Hugging Face. https://github.com/MiroMindAI/MiroThinker
@venturevillagewall · Post #4020 · 29.01.2025 г., 13:00
Recent Funding Rounds Overview 🔍 Latest funding rounds: - Zhongke Era: $27.61M - R&D in industrial control tech. Learn more - EIGHT Brewing Co: $26M - Organic lager by Troy Aikman. Learn more - Oncomatryx: $26.30M - Precision drugs for cancer treatment. Learn more - Atomicwork: $25M - AI-based IT service management. Learn more - Manas AI: $24.60M - AI models for drug development. Learn more - Token Security: $20M - Machine-First Identity Security. Learn more - iPronics: $20.86M - Solid-state optical switches for AI. Learn more - Gaia: $14M - Improving IVF payments. Learn more - Astrome Technologies: $10M - 5G internet infrastructure. Learn more - Paytner Factoring: $8.97M - B2B payment services. Learn more Keep an eye on these innovative startups! #Funding#ZhongkeEra#EIGHTBrewingCo#Oncomatryx#Atomicwork#ManasAI#TokenSecurity#iPronics#Gaia#Astrome#Paytner#AI#VC