Metadata-Version: 2.4
Name: skimly
Version: 0.1.2
Summary: Skimly Python SDK
Project-URL: Homepage, https://example.com/skimly
Project-URL: Issues, https://example.com/skimly/issues
Author-email: Skimly <dev@skimly.ai>
License: MIT
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Python: >=3.10
Requires-Dist: requests>=2.31.0
Description-Content-Type: text/markdown

# skimly (Python)

```python
from skimly import Skimly
client = Skimly.from_env()
blob_id = client.create_blob("long text")
res = client.chat(provider="openai", model="gpt-4.1-mini",
                  messages=[{"role":"user","content":[
                    {"type":"text","text":"Summarize"},
                    {"type":"pointer","blob_id": blob_id}
                  ]}])
print(res["skimly"])
```
