Coinbase
如何购买 LiveFetch
好消息!您可以在 Coinbase 的中心化交易所购买 LiveFetch。我们已包含详细说明,以便您更轻松地购买 LiveFetch。
了解更多

这是来自去中心化交易所 (DEX) 的未经审核资产,在美国大部分地区均提供。创建免费账户,查看是否可以交易。
A small framework/module for keeping LLMs up-to-date with current events past their cut-off date.
# LiveFetch
Keyless evidence retrieval framework for grounded reasoning systems.
## Overview
LiveFetch provides deterministic, timestamped web evidence for LLM pipelines. It combines discovery, extraction, and multi-factor ranking into a single retrieval primitive that returns structured `EvidencePacket` objects.
## Architecture
```mermaid
flowchart LR
I[RetrievalIntent] --> D[Discovery]
D -->|URLs| F[Fetch]
F -->|HTML| E[Extract]
E -->|text + meta| S[Score]
S --> P[EvidencePacket]
S -.-> C[(SQLite)]
```
## Scoring Model
Documents are ranked by a weighted linear combination:
$S(d|q) = w_r * R + w_f * F + w_t * T - w_dup * D$
| Component | Weight | Description |
|-----------|--------|-------------|
| R (relevance) | 0.55 | Token overlap + fuzzy string similarity |
| F (freshness) | 0.25 | Exponential decay: $2^(-age_days / 7)$ |
| T (trust) | 0.20 | Domain-based prior (.gov=0.9, .edu=0.85, etc.) |
| D (redundancy) | 0.35 | Similarity penalty to already-selected docs |
## Installation
```bash
pip install -r requirements.txt
```
## Usage
```python
from DCC.main import LiveFetch, RetrievalIntent
intent = RetrievalIntent(
query="EU AI Act enforcement",
mode="news", # web | news | rss
max_results=5,
freshness_days=14,
need_quotes=True
)
with LiveFetch() as lf:
packets = lf.run_sync(intent)
```
## Data Structures
### RetrievalIntent
| Field | Type | Default | Description |
|-------|------|---------|-------------|
| query | str | required | Search query or RSS URL |
| mode | Literal | "news" | Discovery mode: web, news, rss |
| max_results | int | 8 | Max packets returned |
| freshness_days | int | 14 | Hard filter cutoff (None=disabled) |
| need_quotes | bool | True | Extract quotable sentences |
| allow_domains | List[str] | None | Whitelist filter |
| deny_domains | List[str] | None | Blacklist filter |
### EvidencePacket
| Field | Type | Description |
|-------|------|-------------|
| url | str | Canonical source URL |
| domain | str | Extracted domain |
| title | str | Page title |
| text | str | Extracted content (clipped to 12k chars) |
| published_at | datetime | Publication timestamp |
| fetched_at | datetime | Retrieval timestamp (UTC) |
| score | float | Composite ranking score |
| score_breakdown | Dict | Individual R/F/T/D components |
| content_sha256 | str | Content hash for deduplication |
| quotes | List[str] | Key sentences for citation |
## Extraction Pipeline
1. **trafilatura** (primary) - fast mode extraction
2. **newspaper3k** (fallback) - also provides publish date inference
3. **readability-lxml** (tertiary) - boilerplate removal + trafilatura cleanup
## Cache
SQLite with WAL mode. Schema:
```sql
CREATE TABLE docs (
url TEXT PRIMARY KEY,
content_sha256 TEXT,
fetched_at TEXT,
published_at TEXT,
title TEXT,
text TEXT
);
```
Default path: `livefetch.sqlite`
## Configuration
Class attributes on `LiveFetch`:
| Attribute | Default | Description |
|-----------|---------|-------------|
| MAX_CONCURRENCY | 6 | Parallel fetch limit |
| TIMEOUT_S | 15.0 | HTTP timeout |
| MAX_CHARS | 12000 | Content truncation |
| FRESHNESS_HALF_LIFE | 7.0 | Days for 50% freshness decay |
## Dependencies
- ddgs (DuckDuckGo search)
- httpx (async HTTP)
- trafilatura, newspaper3k, readability-lxml (extraction)
- rapidfuzz (similarity)
- tldextract (domain parsing)
- feedparser (RSS)
Source:
US$1233.56
US$1233.56
10亿 LIVEFETCH
无最大供应量
10亿 LIVEFETCH
数据不足
数据不足
数据不足
数据不足
数据不足
数据不足
LIVEFETCH 相较于市场
没有足够的数据
LIVEFETCH vs 比特币
没有足够的数据
LIVEFETCH vs 以太币
没有足够的数据
标签
网络 | 地址 | |
|---|---|---|
Solana | 9HBe4qvKaAFRRdxFvU8xcjUN6w4ZPcyi2MEcEmtwswrm |
时间 | 价格 | 更改 |
|---|---|---|
今天 | US$0.000001234 | 数据不足 |
1 天 | US$0.000001132 | |
1 周 | US$0.000001132 | |
1 个月 | US$0.000001219 | |
1 年 | US$0.00 |
信息仅供参考,不应被视为投资建议。具体内容不构成关于购买或出售特定数字资产或者采用特定投资策略的建议。Coinbase 不对所提供的任何信息或特定资产的准确性、适用性或有效性作出任何声明。
某些内容由与 Coinbase Inc. 或其任何附属公司无关的第三方准备,Coinbase 不对此类内容负责。Coinbase 对内容中的任何错误或延迟,或根据任何内容采取的任何措施概不负责。信息仅供参考,不应被视为投资建议。具体内容不构成关于购买或出售特定数字资产或者采用特定投资策略的建议。Coinbase 不对所提供的任何信息或特定资产的准确性、适用性或有效性作出任何声明。所示价格仅用于说明目的。实际加密货币价格和相关统计数据可能会有所不同。显示的数据可能反映在 Coinbase 交易平台交易的资产,并选择了其他加密货币进行交易。