Spaces:
Sleeping
Sleeping
File size: 54,334 Bytes
29ed661 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 |
# Android App Integration Guide for V4 Stream JSON API
> **Last Updated:** December 2024
> **API Version:** V4 (Stream JSON with Outlines)
> **Target Platform:** Android (Kotlin + Jetpack Compose)
---
## Table of Contents
- [Overview](#overview)
- [API Specifications](#api-specifications)
- [Data Models](#data-models)
- [Network Layer Implementation](#network-layer-implementation)
- [State Management](#state-management)
- [UI Components](#ui-components)
- [UI/UX Patterns](#uiux-patterns)
- [Error Handling](#error-handling)
- [Performance Optimization](#performance-optimization)
- [Testing Strategy](#testing-strategy)
- [Complete Example Flow](#complete-example-flow)
- [Appendix](#appendix)
---
## Overview
### What is V4 Stream JSON API?
The V4 API provides **structured article summarization** with guaranteed JSON schema output. It combines:
- **Backend web scraping** (no client-side overhead)
- **Structured JSON output** (title, summary, key points, category, sentiment, read time)
- **Real-time streaming** (Server-Sent Events for progressive display)
- **Three summarization styles** (Skimmer, Executive, ELI5)
### Key Benefits vs Client-Side Scraping
| Metric | Server-Side (V4) | Client-Side |
|--------|------------------|-------------|
| **Latency** | 2-5 seconds | 5-15 seconds |
| **Success Rate** | 95%+ | 60-70% |
| **Battery Impact** | Zero (no scraping) | High (WebView + JS) |
| **Data Usage** | ~10KB (summary only) | 500KB+ (full page) |
| **Caching** | Shared across users | Per-device only |
| **Updates** | Instant server-side | Requires app update |
### Response Flow
```mermaid
sequenceDiagram
participant Android as Android App
participant API as V4 API
participant Scraper as Article Scraper
participant AI as AI Model
Android->>API: POST /api/v4/scrape-and-summarize/stream-json
Note over Android,API: {"url": "...", "style": "executive"}
API->>Scraper: Scrape article
Scraper-->>API: Article text + metadata
API->>Android: SSE Event 1: Metadata
Note over Android: Display article title, author, source immediately
API->>AI: Generate structured summary
loop Streaming Tokens
AI-->>API: JSON token
API->>Android: SSE Event N: Token chunk
Note over Android: Accumulate JSON buffer
end
Android->>Android: Parse complete JSON
Note over Android: Display structured summary
```
---
## API Specifications
### Endpoint
```
POST /api/v4/scrape-and-summarize/stream-json
```
**Base URL:** `https://your-api.hf.space` (replace with your Hugging Face Space URL)
### Request Schema
```kotlin
{
"url": "https://example.com/article", // Optional: article URL (mutually exclusive with text)
"text": "Article text content...", // Optional: direct text input (mutually exclusive with url)
"style": "executive", // Required: "skimmer" | "executive" | "eli5"
"max_tokens": 1024, // Optional: 128-2048, default 1024
"include_metadata": true, // Optional: bool, default true
"use_cache": true // Optional: bool, default true
}
```
**Validation Rules:**
- **Exactly ONE** of `url` or `text` must be provided
- `url`: Must be http/https, no localhost/private IPs, max 2000 chars
- `text`: 50-50,000 characters
- `style`: Must be one of three enum values
- `max_tokens`: Range 128-2048
### Response Format (Server-Sent Events)
#### Event 1: Metadata (Optional)
```json
data: {"type":"metadata","data":{"input_type":"url","url":"https://...","title":"Article Title","author":"John Doe","date":"2024-11-30","site_name":"Tech Insights","scrape_method":"static","scrape_latency_ms":425.8,"extracted_text_length":5420,"style":"executive"}}
```
#### Events 2-N: Raw JSON Tokens
```
data: {"title": "
data: AI Revolution 2024
data: ", "main_summary": "
data: Artificial intelligence is rapidly evolving...
data: ", "key_points": [
data: "AI is transforming technology"
data: , "ML algorithms are improving"
data: ], "category": "
data: Technology
data: ", "sentiment": "
data: positive
data: ", "read_time_min": 3}
```
**Important:** Each line is a raw string token. Concatenate all tokens to form complete JSON.
#### Final JSON Structure
```json
{
"title": "AI Revolution Transforms Tech Industry in 2024",
"main_summary": "Artificial intelligence is rapidly transforming technology industries with new breakthroughs in machine learning and deep learning. The latest models show unprecedented capabilities in natural language processing and computer vision.",
"key_points": [
"AI is transforming technology across industries",
"Machine learning algorithms continue improving",
"Deep learning processes massive data efficiently"
],
"category": "Technology",
"sentiment": "positive",
"read_time_min": 3
}
```
### Summary Styles
| Style | Description | Tone | Use Case |
|-------|-------------|------|----------|
| **skimmer** | Quick 30-second read | Casual, concise | News browsing, quick updates |
| **executive** | Professional analysis | Formal, bullet points | Business articles, reports |
| **eli5** | Simple explanations | Friendly, easy | Complex topics, learning |
---
## Data Models
### Request Models
```kotlin
package com.example.summarizer.data.model
import kotlinx.serialization.SerialName
import kotlinx.serialization.Serializable
/**
* Request model for V4 structured summarization
*
* @property url Optional article URL (mutually exclusive with text)
* @property text Optional direct text input (mutually exclusive with url)
* @property style Summarization style: skimmer, executive, or eli5
* @property max_tokens Maximum tokens to generate (128-2048)
* @property include_metadata Include scraping metadata in response
* @property use_cache Use cached content for URLs
*/
@Serializable
data class SummaryRequest(
val url: String? = null,
val text: String? = null,
val style: SummaryStyle,
@SerialName("max_tokens")
val maxTokens: Int = 1024,
@SerialName("include_metadata")
val includeMetadata: Boolean = true,
@SerialName("use_cache")
val useCache: Boolean = true
) {
init {
require((url != null) xor (text != null)) {
"Exactly one of url or text must be provided"
}
require(maxTokens in 128..2048) {
"max_tokens must be between 128 and 2048"
}
}
}
/**
* Summarization style options
*/
@Serializable
enum class SummaryStyle {
@SerialName("skimmer")
SKIMMER, // 30-second read, casual tone
@SerialName("executive")
EXECUTIVE, // Professional, bullet points
@SerialName("eli5")
ELI5 // Simple, easy-to-understand
}
```
### Response Models
```kotlin
/**
* Metadata event sent as first SSE event
*/
@Serializable
data class MetadataEvent(
val type: String, // Always "metadata"
val data: ScrapingMetadata
)
/**
* Scraping metadata from article extraction
*/
@Serializable
data class ScrapingMetadata(
@SerialName("input_type")
val inputType: String, // "url" or "text"
val url: String? = null,
val title: String? = null,
val author: String? = null,
val date: String? = null,
@SerialName("site_name")
val siteName: String? = null,
@SerialName("scrape_method")
val scrapeMethod: String? = null, // "static"
@SerialName("scrape_latency_ms")
val scrapeLatencyMs: Double? = null,
@SerialName("extracted_text_length")
val extractedTextLength: Int? = null,
val style: String
)
/**
* Final structured summary output
*/
@Serializable
data class StructuredSummary(
val title: String, // 6-10 words, click-worthy title
@SerialName("main_summary")
val mainSummary: String, // 2-4 sentences
@SerialName("key_points")
val keyPoints: List<String>, // 3-5 bullet points, 8-12 words each
val category: String, // 1-2 words (e.g., "Tech", "Politics")
val sentiment: String, // "positive", "negative", or "neutral"
@SerialName("read_time_min")
val readTimeMin: Int // Estimated reading time (minutes)
)
```
### UI State Models
```kotlin
/**
* UI state for summary screen
*/
sealed class SummaryState {
/**
* Initial state, no request made
*/
object Idle : SummaryState()
/**
* Loading state with progress message
*/
data class Loading(val progress: String) : SummaryState()
/**
* Metadata received from first SSE event
*/
data class MetadataReceived(val metadata: ScrapingMetadata) : SummaryState()
/**
* Streaming JSON tokens in progress
*/
data class Streaming(
val metadata: ScrapingMetadata?,
val tokensReceived: Int
) : SummaryState()
/**
* Summary generation complete
*/
data class Success(
val metadata: ScrapingMetadata?,
val summary: StructuredSummary
) : SummaryState()
/**
* Error occurred during processing
*/
data class Error(val message: String) : SummaryState()
}
/**
* Events emitted during streaming
*/
sealed class SummaryEvent {
data class Metadata(val metadata: ScrapingMetadata) : SummaryEvent()
data class TokensReceived(val totalChars: Int) : SummaryEvent()
data class Complete(val summary: StructuredSummary) : SummaryEvent()
data class Error(val message: String) : SummaryEvent()
}
```
---
## Network Layer Implementation
### Dependencies (build.gradle.kts)
```kotlin
dependencies {
// OkHttp for SSE streaming
implementation("com.squareup.okhttp3:okhttp:4.12.0")
// Kotlin serialization
implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.6.0")
// Coroutines
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-android:1.7.3")
// Hilt for dependency injection
implementation("com.google.dagger:hilt-android:2.48")
kapt("com.google.dagger:hilt-compiler:2.48")
}
```
### Repository Implementation
```kotlin
package com.example.summarizer.data.repository
import kotlinx.coroutines.channels.awaitClose
import kotlinx.coroutines.flow.Flow
import kotlinx.coroutines.flow.callbackFlow
import kotlinx.serialization.json.Json
import kotlinx.serialization.encodeToString
import kotlinx.serialization.decodeFromString
import okhttp3.Call
import okhttp3.Callback
import okhttp3.MediaType.Companion.toMediaType
import okhttp3.OkHttpClient
import okhttp3.Request
import okhttp3.RequestBody.Companion.toRequestBody
import okhttp3.Response
import java.io.IOException
import java.net.SocketTimeoutException
import java.net.UnknownHostException
import java.util.concurrent.TimeUnit
import javax.inject.Inject
import javax.inject.Singleton
/**
* Repository for V4 structured summarization API
*/
@Singleton
class SummarizeRepository @Inject constructor(
private val okHttpClient: OkHttpClient,
private val json: Json,
private val baseUrl: String = "https://your-api.hf.space" // Inject via Hilt
) {
/**
* Stream structured summary from URL or text
*
* @param request Summary request with URL or text
* @return Flow of SummaryEvent (Metadata, TokensReceived, Complete, Error)
*/
fun streamSummary(request: SummaryRequest): Flow<SummaryEvent> = callbackFlow {
// Serialize request to JSON
val requestBody = json.encodeToString(request).toRequestBody(
"application/json".toMediaType()
)
// Build HTTP request
val httpRequest = Request.Builder()
.url("$baseUrl/api/v4/scrape-and-summarize/stream-json")
.post(requestBody)
.build()
val call = okHttpClient.newCall(httpRequest)
try {
// Execute synchronous request (blocking)
val response = call.execute()
// Check for HTTP errors
if (!response.isSuccessful) {
trySend(SummaryEvent.Error("HTTP ${response.code}: ${response.message}"))
close()
return@callbackFlow
}
// Get response body source
val source = response.body?.source() ?: run {
trySend(SummaryEvent.Error("Empty response body"))
close()
return@callbackFlow
}
// SSE parsing state
val jsonBuffer = StringBuilder()
var metadataSent = false
// Read SSE stream line by line
while (!source.exhausted()) {
val line = source.readUtf8Line() ?: break
// Parse SSE format: "data: <content>"
if (line.startsWith("data: ")) {
val data = line.substring(6) // Remove "data: " prefix
// Try parsing as metadata event (first event only)
if (!metadataSent) {
try {
val metadataEvent = json.decodeFromString<MetadataEvent>(data)
if (metadataEvent.type == "metadata") {
trySend(SummaryEvent.Metadata(metadataEvent.data))
metadataSent = true
continue
}
} catch (e: Exception) {
// Not metadata, treat as JSON token
}
}
// Accumulate JSON tokens
jsonBuffer.append(data)
trySend(SummaryEvent.TokensReceived(jsonBuffer.length))
}
}
// Parse complete JSON
val completeJson = jsonBuffer.toString()
if (completeJson.isNotBlank()) {
try {
val summary = json.decodeFromString<StructuredSummary>(completeJson)
trySend(SummaryEvent.Complete(summary))
} catch (e: Exception) {
trySend(SummaryEvent.Error("JSON parsing failed: ${e.message}"))
}
} else {
trySend(SummaryEvent.Error("No JSON received"))
}
} catch (e: SocketTimeoutException) {
trySend(SummaryEvent.Error("Request timed out. Try a shorter article."))
} catch (e: UnknownHostException) {
trySend(SummaryEvent.Error("No internet connection"))
} catch (e: IOException) {
trySend(SummaryEvent.Error("Network error: ${e.message}"))
} catch (e: Exception) {
trySend(SummaryEvent.Error(e.message ?: "Unknown error"))
} finally {
call.cancel()
}
awaitClose { call.cancel() }
}
}
```
### OkHttp Configuration (Hilt Module)
```kotlin
package com.example.summarizer.di
import dagger.Module
import dagger.Provides
import dagger.hilt.InstallIn
import dagger.hilt.components.SingletonComponent
import kotlinx.serialization.json.Json
import okhttp3.ConnectionPool
import okhttp3.OkHttpClient
import java.util.concurrent.TimeUnit
import javax.inject.Singleton
@Module
@InstallIn(SingletonComponent::class)
object NetworkModule {
@Provides
@Singleton
fun provideOkHttpClient(): OkHttpClient {
return OkHttpClient.Builder()
.connectionPool(
ConnectionPool(
maxIdleConnections = 5,
keepAliveDuration = 5,
TimeUnit.MINUTES
)
)
.readTimeout(600, TimeUnit.SECONDS) // Long timeout for streaming
.connectTimeout(30, TimeUnit.SECONDS)
.writeTimeout(30, TimeUnit.SECONDS)
.build()
}
@Provides
@Singleton
fun provideJson(): Json {
return Json {
ignoreUnknownKeys = true
isLenient = true
prettyPrint = false
}
}
@Provides
@Singleton
fun provideBaseUrl(): String {
return "https://your-api.hf.space" // Replace with your API URL
}
}
```
---
## State Management
### ViewModel Implementation
```kotlin
package com.example.summarizer.ui.viewmodel
import androidx.lifecycle.ViewModel
import androidx.lifecycle.viewModelScope
import com.example.summarizer.data.model.*
import com.example.summarizer.data.repository.SummarizeRepository
import dagger.hilt.android.lifecycle.HiltViewModel
import kotlinx.coroutines.flow.MutableStateFlow
import kotlinx.coroutines.flow.StateFlow
import kotlinx.coroutines.flow.asStateFlow
import kotlinx.coroutines.launch
import javax.inject.Inject
/**
* ViewModel for summary screen
*/
@HiltViewModel
class SummaryViewModel @Inject constructor(
private val repository: SummarizeRepository
) : ViewModel() {
private val _state = MutableStateFlow<SummaryState>(SummaryState.Idle)
val state: StateFlow<SummaryState> = _state.asStateFlow()
/**
* Summarize article from URL
*
* @param url Article URL to summarize
* @param style Summarization style
*/
fun summarizeUrl(url: String, style: SummaryStyle) {
viewModelScope.launch {
_state.value = SummaryState.Loading("Fetching article...")
repository.streamSummary(
SummaryRequest(
url = url,
style = style,
includeMetadata = true
)
).collect { event ->
handleEvent(event)
}
}
}
/**
* Summarize text directly
*
* @param text Text content to summarize
* @param style Summarization style
*/
fun summarizeText(text: String, style: SummaryStyle) {
viewModelScope.launch {
_state.value = SummaryState.Loading("Generating summary...")
repository.streamSummary(
SummaryRequest(
text = text,
style = style,
includeMetadata = false
)
).collect { event ->
handleEvent(event)
}
}
}
/**
* Handle streaming events and update state
*/
private fun handleEvent(event: SummaryEvent) {
when (event) {
is SummaryEvent.Metadata -> {
_state.value = SummaryState.MetadataReceived(event.metadata)
}
is SummaryEvent.TokensReceived -> {
val currentState = _state.value
val metadata = when (currentState) {
is SummaryState.MetadataReceived -> currentState.metadata
is SummaryState.Streaming -> currentState.metadata
else -> null
}
_state.value = SummaryState.Streaming(
metadata = metadata,
tokensReceived = event.totalChars
)
}
is SummaryEvent.Complete -> {
val metadata = when (val currentState = _state.value) {
is SummaryState.MetadataReceived -> currentState.metadata
is SummaryState.Streaming -> currentState.metadata
else -> null
}
_state.value = SummaryState.Success(
metadata = metadata,
summary = event.summary
)
}
is SummaryEvent.Error -> {
_state.value = SummaryState.Error(event.message)
}
}
}
/**
* Reset state to idle
*/
fun reset() {
_state.value = SummaryState.Idle
}
}
```
---
## UI Components
### Main Summary Screen
```kotlin
package com.example.summarizer.ui.screen
import androidx.compose.foundation.layout.*
import androidx.compose.foundation.lazy.LazyColumn
import androidx.compose.material3.*
import androidx.compose.runtime.*
import androidx.compose.ui.Modifier
import androidx.compose.ui.unit.dp
import androidx.hilt.navigation.compose.hiltViewModel
import com.example.summarizer.data.model.SummaryStyle
import com.example.summarizer.ui.viewmodel.SummaryViewModel
@Composable
fun SummaryScreen(
viewModel: SummaryViewModel = hiltViewModel()
) {
val state by viewModel.state.collectAsState()
Column(
modifier = Modifier
.fillMaxSize()
.padding(16.dp)
) {
// URL Input Section
UrlInputSection(
onSummarize = { url, style ->
viewModel.summarizeUrl(url, style)
}
)
Spacer(modifier = Modifier.height(16.dp))
// Summary Content
when (val currentState = state) {
SummaryState.Idle -> {
EmptyStateView()
}
is SummaryState.Loading -> {
LoadingView(message = currentState.progress)
}
is SummaryState.MetadataReceived -> {
MetadataCard(metadata = currentState.metadata)
Spacer(modifier = Modifier.height(8.dp))
LoadingView(message = "Generating summary...")
}
is SummaryState.Streaming -> {
currentState.metadata?.let {
MetadataCard(it)
Spacer(modifier = Modifier.height(8.dp))
}
StreamingIndicator(tokensReceived = currentState.tokensReceived)
}
is SummaryState.Success -> {
SummaryContent(
metadata = currentState.metadata,
summary = currentState.summary
)
}
is SummaryState.Error -> {
ErrorView(
message = currentState.message,
onRetry = { viewModel.reset() }
)
}
}
}
}
```
### URL Input Section
```kotlin
@Composable
fun UrlInputSection(
onSummarize: (String, SummaryStyle) -> Unit
) {
var url by remember { mutableStateOf("") }
var selectedStyle by remember { mutableStateOf(SummaryStyle.EXECUTIVE) }
Column(
modifier = Modifier.fillMaxWidth(),
verticalArrangement = Arrangement.spacedBy(12.dp)
) {
Text(
text = "Summarize Article",
style = MaterialTheme.typography.headlineMedium
)
OutlinedTextField(
value = url,
onValueChange = { url = it },
label = { Text("Article URL") },
placeholder = { Text("https://example.com/article") },
modifier = Modifier.fillMaxWidth(),
singleLine = true
)
StyleSelector(
selectedStyle = selectedStyle,
onStyleSelected = { selectedStyle = it }
)
Button(
onClick = { onSummarize(url, selectedStyle) },
modifier = Modifier.fillMaxWidth(),
enabled = url.isNotBlank()
) {
Text("Summarize")
}
}
}
@Composable
fun StyleSelector(
selectedStyle: SummaryStyle,
onStyleSelected: (SummaryStyle) -> Unit
) {
Column(
verticalArrangement = Arrangement.spacedBy(8.dp)
) {
Text(
text = "Summary Style",
style = MaterialTheme.typography.labelLarge
)
Row(
modifier = Modifier.fillMaxWidth(),
horizontalArrangement = Arrangement.spacedBy(8.dp)
) {
StyleChip(
label = "Quick (30s)",
description = "Skimmer",
isSelected = selectedStyle == SummaryStyle.SKIMMER,
onClick = { onStyleSelected(SummaryStyle.SKIMMER) },
modifier = Modifier.weight(1f)
)
StyleChip(
label = "Professional",
description = "Executive",
isSelected = selectedStyle == SummaryStyle.EXECUTIVE,
onClick = { onStyleSelected(SummaryStyle.EXECUTIVE) },
modifier = Modifier.weight(1f)
)
StyleChip(
label = "Simple",
description = "ELI5",
isSelected = selectedStyle == SummaryStyle.ELI5,
onClick = { onStyleSelected(SummaryStyle.ELI5) },
modifier = Modifier.weight(1f)
)
}
}
}
@Composable
fun StyleChip(
label: String,
description: String,
isSelected: Boolean,
onClick: () -> Unit,
modifier: Modifier = Modifier
) {
FilterChip(
selected = isSelected,
onClick = onClick,
label = {
Column {
Text(
text = label,
style = MaterialTheme.typography.labelMedium
)
Text(
text = description,
style = MaterialTheme.typography.bodySmall
)
}
},
modifier = modifier
)
}
```
### Metadata Card
```kotlin
@Composable
fun MetadataCard(metadata: ScrapingMetadata) {
Card(
modifier = Modifier.fillMaxWidth(),
colors = CardDefaults.cardColors(
containerColor = MaterialTheme.colorScheme.surfaceVariant
)
) {
Column(
modifier = Modifier.padding(16.dp),
verticalArrangement = Arrangement.spacedBy(8.dp)
) {
// Article Title
metadata.title?.let {
Text(
text = it,
style = MaterialTheme.typography.titleMedium,
fontWeight = FontWeight.Bold
)
}
// Metadata Row
Row(
modifier = Modifier.fillMaxWidth(),
horizontalArrangement = Arrangement.SpaceBetween
) {
// Author & Date
Column {
metadata.author?.let {
Text(
text = "By $it",
style = MaterialTheme.typography.bodySmall
)
}
metadata.date?.let {
Text(
text = it,
style = MaterialTheme.typography.bodySmall,
color = MaterialTheme.colorScheme.onSurfaceVariant
)
}
}
// Source & Length
Column(horizontalAlignment = Alignment.End) {
metadata.siteName?.let {
Text(
text = it,
style = MaterialTheme.typography.bodySmall
)
}
metadata.extractedTextLength?.let {
Text(
text = "${it / 1000}K chars",
style = MaterialTheme.typography.bodySmall,
color = MaterialTheme.colorScheme.onSurfaceVariant
)
}
}
}
}
}
}
```
### Summary Content (Final Result)
```kotlin
@Composable
fun SummaryContent(
metadata: ScrapingMetadata?,
summary: StructuredSummary
) {
LazyColumn(
modifier = Modifier.fillMaxSize(),
verticalArrangement = Arrangement.spacedBy(16.dp)
) {
// Metadata
metadata?.let {
item { MetadataCard(it) }
}
// Summary Header with Category, Sentiment, Read Time
item {
Row(
modifier = Modifier.fillMaxWidth(),
horizontalArrangement = Arrangement.SpaceBetween,
verticalAlignment = Alignment.CenterVertically
) {
// Category Chip
AssistChip(
onClick = { },
label = { Text(summary.category) },
leadingIcon = {
Icon(
imageVector = getCategoryIcon(summary.category),
contentDescription = null
)
}
)
// Sentiment Badge
SentimentBadge(sentiment = summary.sentiment)
// Read Time
Row(verticalAlignment = Alignment.CenterVertically) {
Icon(
imageVector = Icons.Default.Schedule,
contentDescription = null,
modifier = Modifier.size(16.dp)
)
Spacer(modifier = Modifier.width(4.dp))
Text(
text = "${summary.readTimeMin} min read",
style = MaterialTheme.typography.bodySmall
)
}
}
}
// Title
item {
Text(
text = summary.title,
style = MaterialTheme.typography.headlineSmall,
fontWeight = FontWeight.Bold
)
}
// Main Summary
item {
Card(
modifier = Modifier.fillMaxWidth(),
colors = CardDefaults.cardColors(
containerColor = MaterialTheme.colorScheme.primaryContainer
)
) {
Text(
text = summary.mainSummary,
style = MaterialTheme.typography.bodyLarge,
modifier = Modifier.padding(16.dp)
)
}
}
// Key Points Section
item {
Text(
text = "Key Points",
style = MaterialTheme.typography.titleMedium,
fontWeight = FontWeight.Bold
)
}
itemsIndexed(summary.keyPoints) { index, point ->
KeyPointItem(index = index + 1, point = point)
}
// Action Buttons
item {
Row(
modifier = Modifier.fillMaxWidth(),
horizontalArrangement = Arrangement.spacedBy(8.dp)
) {
OutlinedButton(
onClick = { /* Share */ },
modifier = Modifier.weight(1f)
) {
Icon(Icons.Default.Share, contentDescription = null)
Spacer(modifier = Modifier.width(8.dp))
Text("Share")
}
Button(
onClick = { /* Save */ },
modifier = Modifier.weight(1f)
) {
Icon(Icons.Default.BookmarkBorder, contentDescription = null)
Spacer(modifier = Modifier.width(8.dp))
Text("Save")
}
}
}
}
}
@Composable
fun KeyPointItem(index: Int, point: String) {
Row(
modifier = Modifier
.fillMaxWidth()
.padding(vertical = 8.dp)
) {
// Numbered Badge
Surface(
shape = CircleShape,
color = MaterialTheme.colorScheme.primary,
modifier = Modifier.size(24.dp)
) {
Box(contentAlignment = Alignment.Center) {
Text(
text = "$index",
style = MaterialTheme.typography.labelSmall,
color = MaterialTheme.colorScheme.onPrimary
)
}
}
Spacer(modifier = Modifier.width(12.dp))
Text(
text = point,
style = MaterialTheme.typography.bodyMedium,
modifier = Modifier.weight(1f)
)
}
}
@Composable
fun SentimentBadge(sentiment: String) {
val (color, icon) = when (sentiment.lowercase()) {
"positive" -> MaterialTheme.colorScheme.primary to Icons.Default.TrendingUp
"negative" -> MaterialTheme.colorScheme.error to Icons.Default.TrendingDown
else -> MaterialTheme.colorScheme.outline to Icons.Default.TrendingFlat
}
AssistChip(
onClick = { },
label = { Text(sentiment.replaceFirstChar { it.uppercase() }) },
leadingIcon = {
Icon(
imageVector = icon,
contentDescription = null,
tint = color
)
},
colors = AssistChipDefaults.assistChipColors(
leadingIconContentColor = color
)
)
}
```
### Loading and Error Views
```kotlin
@Composable
fun LoadingView(message: String) {
Column(
modifier = Modifier
.fillMaxWidth()
.padding(32.dp),
horizontalAlignment = Alignment.CenterHorizontally,
verticalArrangement = Arrangement.spacedBy(16.dp)
) {
CircularProgressIndicator()
Text(
text = message,
style = MaterialTheme.typography.bodyMedium,
color = MaterialTheme.colorScheme.onSurfaceVariant
)
}
}
@Composable
fun StreamingIndicator(tokensReceived: Int) {
Column(
modifier = Modifier
.fillMaxWidth()
.padding(16.dp),
horizontalAlignment = Alignment.CenterHorizontally,
verticalArrangement = Arrangement.spacedBy(12.dp)
) {
LinearProgressIndicator(modifier = Modifier.fillMaxWidth())
Text(
text = "Generating summary... ($tokensReceived characters)",
style = MaterialTheme.typography.bodyMedium,
color = MaterialTheme.colorScheme.onSurfaceVariant
)
}
}
@Composable
fun ErrorView(message: String, onRetry: () -> Unit) {
Column(
modifier = Modifier
.fillMaxWidth()
.padding(16.dp),
horizontalAlignment = Alignment.CenterHorizontally,
verticalArrangement = Arrangement.spacedBy(16.dp)
) {
Icon(
imageVector = Icons.Default.ErrorOutline,
contentDescription = null,
tint = MaterialTheme.colorScheme.error,
modifier = Modifier.size(48.dp)
)
Text(
text = "Unable to generate summary",
style = MaterialTheme.typography.titleMedium,
fontWeight = FontWeight.Bold
)
Text(
text = message,
style = MaterialTheme.typography.bodyMedium,
color = MaterialTheme.colorScheme.onSurfaceVariant,
textAlign = TextAlign.Center
)
Button(onClick = onRetry) {
Icon(Icons.Default.Refresh, contentDescription = null)
Spacer(modifier = Modifier.width(8.dp))
Text("Try Again")
}
}
}
@Composable
fun EmptyStateView() {
Column(
modifier = Modifier
.fillMaxWidth()
.padding(32.dp),
horizontalAlignment = Alignment.CenterHorizontally,
verticalArrangement = Arrangement.spacedBy(16.dp)
) {
Icon(
imageVector = Icons.Default.Article,
contentDescription = null,
modifier = Modifier.size(64.dp),
tint = MaterialTheme.colorScheme.primary
)
Text(
text = "Enter a URL to get started",
style = MaterialTheme.typography.titleMedium
)
Text(
text = "Paste any article URL and choose your preferred summary style",
style = MaterialTheme.typography.bodyMedium,
color = MaterialTheme.colorScheme.onSurfaceVariant,
textAlign = TextAlign.Center
)
}
}
```
---
## UI/UX Patterns
### Progressive Loading Flow
```mermaid
stateDiagram-v2
[*] --> Idle: Initial State
Idle --> Loading: User taps "Summarize"
Loading --> MetadataReceived: 2-3 seconds
MetadataReceived --> Streaming: Start receiving JSON
Streaming --> Success: Complete
Loading --> Error: Network/API Error
MetadataReceived --> Error: Timeout
Streaming --> Error: Parse Error
Error --> Idle: Reset/Retry
Success --> Idle: New Request
```
### Recommended UX Timeline
| Time | State | UI Display |
|------|-------|------------|
| 0s | Loading | Show spinner: "Fetching article..." |
| 2s | MetadataReceived | Display article title, author, source |
| 2-5s | Streaming | Show progress: "Generating summary... (150 chars)" |
| 5s | Success | Fade in complete structured summary |
### Animation Recommendations
```kotlin
// Fade in summary content
LaunchedEffect(key1 = state) {
if (state is SummaryState.Success) {
// Animate key points appearing one by one
summary.keyPoints.forEachIndexed { index, _ ->
delay(100 * index.toLong())
// Trigger recomposition to show next point
}
}
}
// Shimmer effect for metadata card while loading
@Composable
fun ShimmerMetadataCard() {
val infiniteTransition = rememberInfiniteTransition()
val alpha by infiniteTransition.animateFloat(
initialValue = 0.3f,
targetValue = 0.7f,
animationSpec = infiniteRepeatable(
animation = tween(1000),
repeatMode = RepeatMode.Reverse
)
)
Card(
modifier = Modifier.fillMaxWidth(),
colors = CardDefaults.cardColors(
containerColor = MaterialTheme.colorScheme.surfaceVariant.copy(alpha = alpha)
)
) {
// Placeholder content
}
}
```
---
## Error Handling
### HTTP Error Mapping
| HTTP Code | Meaning | User-Friendly Message |
|-----------|---------|----------------------|
| 400 | Bad Request | "Invalid request. Please check your input." |
| 422 | Validation Error | "Invalid URL or text format. Please try again." |
| 429 | Rate Limited | "Too many requests. Please wait a moment and try again." |
| 500 | Server Error | "Service temporarily unavailable. Please try again later." |
| 502 | Bad Gateway | "Unable to access article. Try a different URL." |
| 504 | Gateway Timeout | "Request took too long. Try a shorter article or different URL." |
### Network Error Handling
```kotlin
sealed class NetworkError {
data class HttpError(val code: Int, val message: String) : NetworkError()
data class ConnectionError(val message: String) : NetworkError()
data class TimeoutError(val message: String) : NetworkError()
data class ParseError(val message: String) : NetworkError()
data class UnknownError(val message: String) : NetworkError()
}
fun Throwable.toUserFriendlyMessage(): String {
return when (this) {
is SocketTimeoutException -> "Request timed out. Try a shorter article."
is UnknownHostException -> "No internet connection. Please check your network."
is IOException -> "Network error. Please check your connection."
is kotlinx.serialization.SerializationException -> "Invalid response from server. Please try again."
else -> message ?: "An unexpected error occurred."
}
}
```
### Error Retry Logic
```kotlin
class SummarizeRepositoryWithRetry(
private val baseRepository: SummarizeRepository,
private val maxRetries: Int = 3,
private val retryDelayMs: Long = 1000
) {
fun streamSummaryWithRetry(request: SummaryRequest): Flow<SummaryEvent> = flow {
var currentAttempt = 0
var lastError: Throwable? = null
while (currentAttempt < maxRetries) {
try {
baseRepository.streamSummary(request).collect { event ->
emit(event)
if (event is SummaryEvent.Complete) {
return@flow // Success, exit
}
}
return@flow // Completed successfully
} catch (e: Exception) {
lastError = e
currentAttempt++
if (currentAttempt < maxRetries) {
delay(retryDelayMs * currentAttempt) // Exponential backoff
}
}
}
// All retries failed
emit(SummaryEvent.Error(lastError?.toUserFriendlyMessage() ?: "Unknown error"))
}
}
```
---
## Performance Optimization
### 1. Response Caching
```kotlin
package com.example.summarizer.data.cache
import android.util.LruCache
import com.example.summarizer.data.model.StructuredSummary
import javax.inject.Inject
import javax.inject.Singleton
/**
* In-memory cache for summaries
*/
@Singleton
class SummaryCache @Inject constructor() {
private val cache = LruCache<String, CachedSummary>(50) // Cache up to 50 summaries
fun get(key: String): StructuredSummary? {
return cache.get(key)?.takeIf { it.isValid() }?.summary
}
fun put(key: String, summary: StructuredSummary) {
cache.put(key, CachedSummary(summary, System.currentTimeMillis()))
}
fun clear() {
cache.evictAll()
}
}
data class CachedSummary(
val summary: StructuredSummary,
val timestamp: Long,
val ttlMs: Long = 3600_000 // 1 hour TTL
) {
fun isValid(): Boolean {
return System.currentTimeMillis() - timestamp < ttlMs
}
}
```
### 2. Repository with Caching
```kotlin
@Singleton
class CachedSummarizeRepository @Inject constructor(
private val baseRepository: SummarizeRepository,
private val cache: SummaryCache
) {
fun streamSummary(request: SummaryRequest): Flow<SummaryEvent> = flow {
// Generate cache key
val cacheKey = request.url ?: request.text?.take(100)
// Check cache first (for URLs only)
if (request.url != null && cacheKey != null) {
val cached = cache.get(cacheKey)
if (cached != null) {
emit(SummaryEvent.Complete(cached))
return@flow
}
}
// Cache miss, stream from API
baseRepository.streamSummary(request).collect { event ->
emit(event)
// Cache successful results
if (event is SummaryEvent.Complete && cacheKey != null) {
cache.put(cacheKey, event.summary)
}
}
}
}
```
### 3. Connection Pooling
Already configured in `NetworkModule.provideOkHttpClient()`:
```kotlin
ConnectionPool(
maxIdleConnections = 5,
keepAliveDuration = 5,
TimeUnit.MINUTES
)
```
### 4. Lazy Loading
Display metadata immediately while summary streams - makes app feel 2-3x faster:
```kotlin
// In ViewModel
when (event) {
is SummaryEvent.Metadata -> {
// Show metadata card immediately (2s latency)
_state.value = SummaryState.MetadataReceived(event.metadata)
}
is SummaryEvent.Complete -> {
// Show summary after streaming complete (5s total latency)
_state.value = SummaryState.Success(...)
}
}
```
---
## Testing Strategy
### Unit Tests
```kotlin
package com.example.summarizer.ui.viewmodel
import app.cash.turbine.test
import com.example.summarizer.data.model.*
import com.example.summarizer.data.repository.SummarizeRepository
import io.mockk.*
import kotlinx.coroutines.flow.flowOf
import kotlinx.coroutines.test.runTest
import org.junit.Before
import org.junit.Test
import kotlin.test.assertEquals
import kotlin.test.assertTrue
class SummaryViewModelTest {
private lateinit var repository: SummarizeRepository
private lateinit var viewModel: SummaryViewModel
@Before
fun setup() {
repository = mockk()
viewModel = SummaryViewModel(repository)
}
@Test
fun `metadata received before summary completes`() = runTest {
// Given
val metadata = ScrapingMetadata(
inputType = "url",
title = "Test Article",
style = "executive"
)
val summary = StructuredSummary(
title = "Test",
mainSummary = "Summary",
keyPoints = listOf("Point 1"),
category = "Tech",
sentiment = "positive",
readTimeMin = 3
)
coEvery { repository.streamSummary(any()) } returns flowOf(
SummaryEvent.Metadata(metadata),
SummaryEvent.TokensReceived(50),
SummaryEvent.Complete(summary)
)
// When
viewModel.summarizeUrl("https://test.com", SummaryStyle.EXECUTIVE)
// Then
viewModel.state.test {
assertEquals(SummaryState.Loading::class, awaitItem()::class)
assertEquals(SummaryState.MetadataReceived::class, awaitItem()::class)
assertEquals(SummaryState.Streaming::class, awaitItem()::class)
val successState = awaitItem()
assertTrue(successState is SummaryState.Success)
assertEquals(metadata, successState.metadata)
assertEquals(summary, successState.summary)
}
}
@Test
fun `error handling displays error message`() = runTest {
// Given
coEvery { repository.streamSummary(any()) } returns flowOf(
SummaryEvent.Error("Network error")
)
// When
viewModel.summarizeUrl("https://test.com", SummaryStyle.EXECUTIVE)
// Then
viewModel.state.test {
assertEquals(SummaryState.Loading::class, awaitItem()::class)
val errorState = awaitItem()
assertTrue(errorState is SummaryState.Error)
assertEquals("Network error", errorState.message)
}
}
}
```
### Integration Tests
```kotlin
package com.example.summarizer.data.repository
import kotlinx.coroutines.flow.toList
import kotlinx.coroutines.test.runTest
import kotlinx.serialization.json.Json
import okhttp3.OkHttpClient
import okhttp3.mockwebserver.MockResponse
import okhttp3.mockwebserver.MockWebServer
import org.junit.After
import org.junit.Before
import org.junit.Test
import kotlin.test.assertEquals
import kotlin.test.assertTrue
class SummarizeRepositoryIntegrationTest {
private lateinit var mockWebServer: MockWebServer
private lateinit var repository: SummarizeRepository
@Before
fun setup() {
mockWebServer = MockWebServer()
mockWebServer.start()
repository = SummarizeRepository(
okHttpClient = OkHttpClient(),
json = Json { ignoreUnknownKeys = true },
baseUrl = mockWebServer.url("/").toString()
)
}
@After
fun tearDown() {
mockWebServer.shutdown()
}
@Test
fun `streaming JSON is parsed correctly`() = runTest {
// Given
val mockResponse = MockResponse()
.setResponseCode(200)
.setBody("""
data: {"type":"metadata","data":{"input_type":"url","title":"Test","style":"executive"}}
data: {"title":"
data: Test Article
data: ","main_summary":"
data: This is a test
data: ","key_points":["Point 1"],"category":"Tech","sentiment":"positive","read_time_min":3}
""".trimIndent())
mockWebServer.enqueue(mockResponse)
// When
val request = SummaryRequest(
url = "https://test.com",
style = SummaryStyle.EXECUTIVE
)
val events = repository.streamSummary(request).toList()
// Then
assertEquals(3, events.size)
assertTrue(events[0] is SummaryEvent.Metadata)
assertTrue(events[1] is SummaryEvent.TokensReceived)
assertTrue(events[2] is SummaryEvent.Complete)
val completeEvent = events[2] as SummaryEvent.Complete
assertEquals("Test Article", completeEvent.summary.title)
assertEquals("Tech", completeEvent.summary.category)
}
}
```
---
## Complete Example Flow
### User Journey
```
1. User opens app
ββ> Display EmptyStateView with instructions
2. User enters URL: "https://example.com/ai-revolution"
ββ> Enable "Summarize" button
3. User selects style: "Executive"
ββ> Highlight selected chip
4. User taps "Summarize"
ββ> [0-2s] Show LoadingView: "Fetching article..."
β ββ> Display CircularProgressIndicator
β
ββ> [2s] Receive metadata event
β ββ> Show MetadataCard with:
β - Title: "AI Revolution Transforms Tech Industry"
β - Author: "John Doe"
β - Source: "Tech Insights"
β - Date: "2024-11-30"
β - Length: "5.4K chars"
β ββ> Show LoadingView: "Generating summary..."
β
ββ> [2-5s] Stream JSON tokens
β ββ> Update StreamingIndicator: "Generating summary... (150 chars)"
β ββ> Increment progress as tokens arrive
β
ββ> [5s] Summary complete
ββ> Fade in SummaryContent:
ββ> Category chip: "Technology" (with icon)
ββ> Sentiment badge: "Positive" (green, trending up icon)
ββ> Read time: "3 min read"
ββ> Title: "AI Revolution Transforms Tech Industry in 2024"
ββ> Main summary card (blue background):
β "Artificial intelligence is rapidly transforming..."
ββ> Key points section:
β 1. AI is transforming technology across industries
β 2. Machine learning algorithms continue improving
β 3. Deep learning processes massive data efficiently
ββ> Action buttons: [Share] [Save]
5. User taps "Share"
ββ> Open share sheet with formatted summary text
6. User taps "Save"
ββ> Save to local database for offline access
```
---
## Appendix
### A. Icon Mapping Helper
```kotlin
import androidx.compose.material.icons.Icons
import androidx.compose.material.icons.filled.*
import androidx.compose.ui.graphics.vector.ImageVector
fun getCategoryIcon(category: String): ImageVector {
return when (category.lowercase()) {
"tech", "technology" -> Icons.Default.Computer
"business", "finance" -> Icons.Default.Business
"politics", "government" -> Icons.Default.Gavel
"sports" -> Icons.Default.Sports
"health", "medical" -> Icons.Default.LocalHospital
"science" -> Icons.Default.Science
"entertainment" -> Icons.Default.Theaters
"education" -> Icons.Default.School
else -> Icons.Default.Article
}
}
```
### B. Share Functionality
```kotlin
fun shareSummary(context: Context, summary: StructuredSummary, metadata: ScrapingMetadata?) {
val shareText = buildString {
appendLine(summary.title)
appendLine()
appendLine(summary.mainSummary)
appendLine()
appendLine("Key Points:")
summary.keyPoints.forEachIndexed { index, point ->
appendLine("${index + 1}. $point")
}
appendLine()
appendLine("Category: ${summary.category}")
appendLine("Read time: ${summary.readTimeMin} min")
metadata?.url?.let {
appendLine()
appendLine("Source: $it")
}
appendLine()
appendLine("Summarized with [App Name]")
}
val sendIntent = Intent().apply {
action = Intent.ACTION_SEND
putExtra(Intent.EXTRA_TEXT, shareText)
type = "text/plain"
}
val shareIntent = Intent.createChooser(sendIntent, "Share Summary")
context.startActivity(shareIntent)
}
```
### C. Environment Configuration
```kotlin
// local.properties (not committed to git)
BASE_URL=https://your-api.hf.space
// build.gradle.kts
android {
defaultConfig {
val properties = Properties()
properties.load(project.rootProject.file("local.properties").inputStream())
buildConfigField(
"String",
"BASE_URL",
"\"${properties.getProperty("BASE_URL")}\""
)
}
}
// Usage in NetworkModule
@Provides
@Singleton
fun provideBaseUrl(): String {
return BuildConfig.BASE_URL
}
```
### D. Proguard Rules
```proguard
# OkHttp
-dontwarn okhttp3.**
-keep class okhttp3.** { *; }
# Kotlinx Serialization
-keepattributes *Annotation*, InnerClasses
-dontnote kotlinx.serialization.AnnotationsKt
-keepclassmembers class kotlinx.serialization.json.** {
*** Companion;
}
-keepclasseswithmembers class kotlinx.serialization.json.** {
kotlinx.serialization.KSerializer serializer(...);
}
-keep,includedescriptorclasses class com.example.summarizer.**$$serializer { *; }
-keepclassmembers class com.example.summarizer.** {
*** Companion;
}
-keepclasseswithmembers class com.example.summarizer.** {
kotlinx.serialization.KSerializer serializer(...);
}
```
### E. Performance Monitoring
```kotlin
// Add timing metrics to track performance
class MetricsRepository @Inject constructor() {
fun trackSummaryLatency(
url: String,
scrapeLatencyMs: Double?,
totalLatencyMs: Long
) {
// Send to analytics (Firebase, etc.)
FirebaseAnalytics.getInstance(context).logEvent("summary_completed") {
param("url_domain", Uri.parse(url).host ?: "unknown")
param("scrape_latency_ms", scrapeLatencyMs ?: 0.0)
param("total_latency_ms", totalLatencyMs.toDouble())
}
}
}
```
---
## Summary
This guide provides everything needed to integrate the V4 Stream JSON API into your Android app:
**Key Takeaways:**
1. **Use OkHttp** for SSE streaming with long timeouts (600s)
2. **Parse in two phases**: Metadata first β accumulate JSON tokens β parse complete JSON
3. **Progressive UI**: Show metadata immediately (2s), summary follows (5s total)
4. **Structured display**: Leverage category, sentiment, read time for rich UI
5. **Error resilience**: Handle network errors, timeouts, malformed JSON gracefully
6. **Performance**: Cache summaries locally, reuse connections, lazy load UI
**Performance Gains:**
- 2-5s server-side vs 5-15s client-side
- 95%+ success rate vs 60-70% on mobile
- Zero battery drain from scraping
- ~10KB data usage vs 500KB+ full article
**Next Steps:**
1. Replace `https://your-api.hf.space` with your actual API URL
2. Implement share and save functionality
3. Add analytics tracking
4. Test with real articles
5. Optimize UI animations and transitions
For questions or issues, refer to the [main API documentation](CLAUDE.md) or contact the backend team.
|