Python SDK for Circle Intelligence — F.I.R.E. economy real-time signal detection + RealityFutures prediction markets
Project description
Circle Intelligence SDK
Python SDK for Circle Intelligence — real-time F.I.R.E. economy signal detection via 7-agent AI cascade.
Install
pip install circle-intelligence # core (browsing, search, chat)
pip install circle-intelligence[wallet] # + wallet authentication
pip install circle-intelligence[payment] # + USDC payment flow
Quick Start
from circle_intelligence import CircleSDK
# Free tier — no auth needed
sdk = CircleSDK("https://circle.news")
signals = sdk.get_recent_signals(limit=3)
entities = sdk.get_kg_entities(search="Bitcoin")
briefs = sdk.get_briefs(limit=5)
# Premium tier — with API key
sdk = CircleSDK("https://circle.news", api_key="circ_your_key")
results = sdk.search_signals("DeFi bridge exploit")
analytics = sdk.get_kg_analytics(days=7)
response = sdk.chat(signal_id=1744, messages=[{"role": "user", "content": "What happened?"}])
Features
| Feature | Free | Premium |
|---|---|---|
| Recent signals | 6h delay, 3 max | Real-time, 100 max |
| Daily briefs | Yes | Yes |
| Knowledge graph browsing | Yes | Yes |
| KG analytics + cross-sector | No | Yes |
| Semantic search | No | Yes |
| RAG-powered chat | No | Yes |
| Simulator execution | No | Yes |
| Research creation | No | Yes |
| Depth tree details | No | Yes |
Wallet Authentication (for agents)
from eth_account import Account
from eth_account.messages import encode_defunct
private_key = "0xYOUR_PRIVATE_KEY"
wallet = Account.from_key(private_key).address
result = sdk.authenticate(
wallet_address=wallet,
sign_fn=lambda msg: Account.sign_message(
encode_defunct(text=msg), private_key
).signature.hex(),
)
Documentation
Full API reference and examples at circle.news/docs
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
circle_intelligence-0.2.0.tar.gz
(16.5 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file circle_intelligence-0.2.0.tar.gz.
File metadata
- Download URL: circle_intelligence-0.2.0.tar.gz
- Upload date:
- Size: 16.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
07b562b562053803a9ea4005cd480a468d4041fdeeb0211b298c90962c919a7e
|
|
| MD5 |
18214a4779a8020af6c803edf4828e97
|
|
| BLAKE2b-256 |
9cf2e6110efa85c62ccde734f23abfd90c367a2c02c60c82c80764e6f6ce1fff
|
File details
Details for the file circle_intelligence-0.2.0-py3-none-any.whl.
File metadata
- Download URL: circle_intelligence-0.2.0-py3-none-any.whl
- Upload date:
- Size: 16.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d19e1ab9cffc8f30d023747f44e525fd09f6df1626804d36c14168f0afb69670
|
|
| MD5 |
910e984cb85cbbf18d08d52aeb439bf0
|
|
| BLAKE2b-256 |
e9f520a70362279176f5180f1c5b5e0d68e7c645432c5a8e0524f76ccd367eac
|