arionxiv 1.0.32__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (69) hide show
  1. arionxiv/__init__.py +40 -0
  2. arionxiv/__main__.py +10 -0
  3. arionxiv/arxiv_operations/__init__.py +0 -0
  4. arionxiv/arxiv_operations/client.py +225 -0
  5. arionxiv/arxiv_operations/fetcher.py +173 -0
  6. arionxiv/arxiv_operations/searcher.py +122 -0
  7. arionxiv/arxiv_operations/utils.py +293 -0
  8. arionxiv/cli/__init__.py +4 -0
  9. arionxiv/cli/commands/__init__.py +1 -0
  10. arionxiv/cli/commands/analyze.py +587 -0
  11. arionxiv/cli/commands/auth.py +365 -0
  12. arionxiv/cli/commands/chat.py +714 -0
  13. arionxiv/cli/commands/daily.py +482 -0
  14. arionxiv/cli/commands/fetch.py +217 -0
  15. arionxiv/cli/commands/library.py +295 -0
  16. arionxiv/cli/commands/preferences.py +426 -0
  17. arionxiv/cli/commands/search.py +254 -0
  18. arionxiv/cli/commands/settings_unified.py +1407 -0
  19. arionxiv/cli/commands/trending.py +41 -0
  20. arionxiv/cli/commands/welcome.py +168 -0
  21. arionxiv/cli/main.py +407 -0
  22. arionxiv/cli/ui/__init__.py +1 -0
  23. arionxiv/cli/ui/global_theme_manager.py +173 -0
  24. arionxiv/cli/ui/logo.py +127 -0
  25. arionxiv/cli/ui/splash.py +89 -0
  26. arionxiv/cli/ui/theme.py +32 -0
  27. arionxiv/cli/ui/theme_system.py +391 -0
  28. arionxiv/cli/utils/__init__.py +54 -0
  29. arionxiv/cli/utils/animations.py +522 -0
  30. arionxiv/cli/utils/api_client.py +583 -0
  31. arionxiv/cli/utils/api_config.py +505 -0
  32. arionxiv/cli/utils/command_suggestions.py +147 -0
  33. arionxiv/cli/utils/db_config_manager.py +254 -0
  34. arionxiv/github_actions_runner.py +206 -0
  35. arionxiv/main.py +23 -0
  36. arionxiv/prompts/__init__.py +9 -0
  37. arionxiv/prompts/prompts.py +247 -0
  38. arionxiv/rag_techniques/__init__.py +8 -0
  39. arionxiv/rag_techniques/basic_rag.py +1531 -0
  40. arionxiv/scheduler_daemon.py +139 -0
  41. arionxiv/server.py +1000 -0
  42. arionxiv/server_main.py +24 -0
  43. arionxiv/services/__init__.py +73 -0
  44. arionxiv/services/llm_client.py +30 -0
  45. arionxiv/services/llm_inference/__init__.py +58 -0
  46. arionxiv/services/llm_inference/groq_client.py +469 -0
  47. arionxiv/services/llm_inference/llm_utils.py +250 -0
  48. arionxiv/services/llm_inference/openrouter_client.py +564 -0
  49. arionxiv/services/unified_analysis_service.py +872 -0
  50. arionxiv/services/unified_auth_service.py +457 -0
  51. arionxiv/services/unified_config_service.py +456 -0
  52. arionxiv/services/unified_daily_dose_service.py +823 -0
  53. arionxiv/services/unified_database_service.py +1633 -0
  54. arionxiv/services/unified_llm_service.py +366 -0
  55. arionxiv/services/unified_paper_service.py +604 -0
  56. arionxiv/services/unified_pdf_service.py +522 -0
  57. arionxiv/services/unified_prompt_service.py +344 -0
  58. arionxiv/services/unified_scheduler_service.py +589 -0
  59. arionxiv/services/unified_user_service.py +954 -0
  60. arionxiv/utils/__init__.py +51 -0
  61. arionxiv/utils/api_helpers.py +200 -0
  62. arionxiv/utils/file_cleanup.py +150 -0
  63. arionxiv/utils/ip_helper.py +96 -0
  64. arionxiv-1.0.32.dist-info/METADATA +336 -0
  65. arionxiv-1.0.32.dist-info/RECORD +69 -0
  66. arionxiv-1.0.32.dist-info/WHEEL +5 -0
  67. arionxiv-1.0.32.dist-info/entry_points.txt +4 -0
  68. arionxiv-1.0.32.dist-info/licenses/LICENSE +21 -0
  69. arionxiv-1.0.32.dist-info/top_level.txt +1 -0
@@ -0,0 +1,336 @@
1
+ Metadata-Version: 2.4
2
+ Name: arionxiv
3
+ Version: 1.0.32
4
+ Summary: AI-Powered Research Paper Analysis and Management System
5
+ Home-page: https://github.com/ArionDas/ArionXiv
6
+ Author: Arion Das
7
+ Author-email: Arion Das <ariondasad@gmail.com>
8
+ Maintainer-email: Arion Das <ariondasad@gmail.com>
9
+ License: MIT
10
+ Project-URL: Homepage, https://github.com/ArionDas/ArionXiv
11
+ Project-URL: Documentation, https://github.com/ArionDas/ArionXiv#readme
12
+ Project-URL: Repository, https://github.com/ArionDas/ArionXiv
13
+ Project-URL: Bug Tracker, https://github.com/ArionDas/ArionXiv/issues
14
+ Keywords: arxiv,research,papers,ai,machine-learning,nlp,analysis,academic,scientific,publication,pdf,text-extraction,mongodb,cli,api
15
+ Platform: any
16
+ Classifier: Development Status :: 4 - Beta
17
+ Classifier: Intended Audience :: Developers
18
+ Classifier: Intended Audience :: Science/Research
19
+ Classifier: Intended Audience :: Education
20
+ Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
21
+ Classifier: Topic :: Text Processing :: Linguistic
22
+ Classifier: Topic :: Database :: Front-Ends
23
+ Classifier: License :: OSI Approved :: MIT License
24
+ Classifier: Programming Language :: Python :: 3
25
+ Classifier: Programming Language :: Python :: 3.8
26
+ Classifier: Programming Language :: Python :: 3.9
27
+ Classifier: Programming Language :: Python :: 3.10
28
+ Classifier: Programming Language :: Python :: 3.11
29
+ Classifier: Programming Language :: Python :: 3.12
30
+ Classifier: Operating System :: OS Independent
31
+ Classifier: Environment :: Console
32
+ Classifier: Environment :: Web Environment
33
+ Requires-Python: >=3.8
34
+ Description-Content-Type: text/markdown
35
+ License-File: LICENSE
36
+ Requires-Dist: rich>=13.0.0
37
+ Requires-Dist: click>=8.0.0
38
+ Requires-Dist: colorama>=0.4.6
39
+ Requires-Dist: requests>=2.31.0
40
+ Requires-Dist: aiohttp>=3.8.0
41
+ Requires-Dist: httpx>=0.24.0
42
+ Requires-Dist: PyPDF2>=3.0.0
43
+ Requires-Dist: pymupdf>=1.23.0
44
+ Requires-Dist: Pillow>=9.0.0
45
+ Requires-Dist: arxiv>=2.0.0
46
+ Requires-Dist: pydantic>=2.0.0
47
+ Requires-Dist: python-dotenv>=1.0.0
48
+ Requires-Dist: PyJWT>=2.8.0
49
+ Requires-Dist: structlog>=23.0.0
50
+ Requires-Dist: numpy<2.0.0,>=1.24.0
51
+ Requires-Dist: google-genai>=1.0.0
52
+ Requires-Dist: groq>=0.4.0
53
+ Requires-Dist: sentence-transformers>=3.0.0
54
+ Requires-Dist: torch>=2.0.0
55
+ Requires-Dist: transformers>=4.20.0
56
+ Requires-Dist: pymongo<5.0,>=4.9
57
+ Requires-Dist: motor>=3.0.0
58
+ Provides-Extra: advanced-pdf
59
+ Requires-Dist: pdfplumber>=0.10.0; extra == "advanced-pdf"
60
+ Requires-Dist: pytesseract>=0.3.10; extra == "advanced-pdf"
61
+ Requires-Dist: tabula-py>=2.9.0; extra == "advanced-pdf"
62
+ Requires-Dist: Pillow>=9.0.0; extra == "advanced-pdf"
63
+ Requires-Dist: opencv-python>=4.8.0; extra == "advanced-pdf"
64
+ Provides-Extra: enhanced-ui
65
+ Requires-Dist: inquirer>=3.1.0; extra == "enhanced-ui"
66
+ Requires-Dist: tabulate>=0.9.0; extra == "enhanced-ui"
67
+ Requires-Dist: prompt-toolkit>=3.0.0; extra == "enhanced-ui"
68
+ Requires-Dist: alive-progress>=3.1.0; extra == "enhanced-ui"
69
+ Provides-Extra: dev
70
+ Requires-Dist: pytest>=7.0.0; extra == "dev"
71
+ Requires-Dist: pytest-asyncio>=0.21.0; extra == "dev"
72
+ Requires-Dist: black>=23.0.0; extra == "dev"
73
+ Requires-Dist: flake8>=6.0.0; extra == "dev"
74
+ Requires-Dist: mypy>=1.0.0; extra == "dev"
75
+ Requires-Dist: pre-commit>=3.0.0; extra == "dev"
76
+ Provides-Extra: all
77
+ Requires-Dist: pdfplumber>=0.10.0; extra == "all"
78
+ Requires-Dist: pytesseract>=0.3.10; extra == "all"
79
+ Requires-Dist: tabula-py>=2.9.0; extra == "all"
80
+ Requires-Dist: Pillow>=9.0.0; extra == "all"
81
+ Requires-Dist: opencv-python>=4.8.0; extra == "all"
82
+ Requires-Dist: sentence-transformers>=3.0.0; extra == "all"
83
+ Requires-Dist: torch>=2.0.0; extra == "all"
84
+ Requires-Dist: transformers>=4.20.0; extra == "all"
85
+ Requires-Dist: inquirer>=3.1.0; extra == "all"
86
+ Requires-Dist: tabulate>=0.9.0; extra == "all"
87
+ Requires-Dist: prompt-toolkit>=3.0.0; extra == "all"
88
+ Requires-Dist: alive-progress>=3.1.0; extra == "all"
89
+ Dynamic: author
90
+ Dynamic: home-page
91
+ Dynamic: license-file
92
+ Dynamic: platform
93
+ Dynamic: requires-python
94
+
95
+ # ArionXiv
96
+
97
+ A command-line interface for discovering, analyzing, and interacting with research papers from arXiv.
98
+
99
+ ---
100
+
101
+ ## Installation
102
+
103
+ ```bash
104
+ pip install arionxiv
105
+ ```
106
+
107
+ If the command is not found after installation, add Python scripts to PATH:
108
+
109
+ **Windows (PowerShell):**
110
+ ```powershell
111
+ python -c "import sysconfig; p=sysconfig.get_path('scripts'); import os; os.system(f'setx PATH \"%PATH%;{p}\"')"
112
+ ```
113
+
114
+ **macOS / Linux:**
115
+ ```bash
116
+ echo "export PATH=\"\$PATH:$(python3 -c 'import sysconfig; print(sysconfig.get_path(\"scripts\"))')\"" >> ~/.bashrc && source ~/.bashrc
117
+ ```
118
+
119
+ ---
120
+
121
+ ## Getting Started
122
+
123
+ ### First Run
124
+
125
+ ```bash
126
+ arionxiv
127
+ ```
128
+
129
+ On first run, register or login to your account:
130
+
131
+ ```bash
132
+ arionxiv register # Create a new account
133
+ arionxiv login # Login to existing account
134
+ ```
135
+
136
+ That's it. No API keys or configuration required.
137
+
138
+ ---
139
+
140
+ ## Features
141
+
142
+ ### 1. Paper Search
143
+
144
+ Search arXiv with relevance scoring and filtering.
145
+
146
+ ```bash
147
+ arionxiv search "transformer architecture"
148
+ arionxiv search "reinforcement learning" --max-results 20
149
+ ```
150
+
151
+ <!-- Screenshot: search results -->
152
+
153
+ ---
154
+
155
+ ### 2. Paper Analysis
156
+
157
+ AI-powered deep analysis of research papers.
158
+
159
+ ```bash
160
+ arionxiv analyze 2301.00001
161
+ arionxiv analyze 2301.00001 --detailed
162
+ ```
163
+
164
+ <!-- Screenshot: analysis output -->
165
+
166
+ ---
167
+
168
+ ### 3. Chat with Papers
169
+
170
+ Interactive RAG-based Q&A with any paper. Supports session persistence and history.
171
+
172
+ ```bash
173
+ arionxiv chat
174
+ arionxiv chat 2301.00001
175
+ ```
176
+
177
+ **Features:**
178
+ - Context-aware responses using paper content
179
+ - Session persistence across restarts
180
+ - Chat history (last 8 Q&A pairs) on resume
181
+ - Cached embeddings for instant session loading
182
+
183
+ <!-- Screenshot: chat interface -->
184
+
185
+ ---
186
+
187
+ ### 4. Personal Library
188
+
189
+ Save papers and manage your research collection.
190
+
191
+ ```bash
192
+ arionxiv library
193
+ arionxiv settings papers
194
+ ```
195
+
196
+ <!-- Screenshot: library view -->
197
+
198
+ ---
199
+
200
+ ### 5. Daily Dose
201
+
202
+ Personalized daily paper recommendations based on your research interests.
203
+
204
+ ```bash
205
+ arionxiv daily
206
+ arionxiv daily --run
207
+ arionxiv daily --view
208
+ ```
209
+
210
+ Configure schedule and preferences:
211
+
212
+ ```bash
213
+ arionxiv settings daily
214
+ ```
215
+
216
+ <!-- Screenshot: daily dose -->
217
+
218
+ ---
219
+
220
+ ### 6. Trending Papers
221
+
222
+ Discover trending research topics and papers.
223
+
224
+ ```bash
225
+ arionxiv trending
226
+ ```
227
+
228
+ <!-- Screenshot: trending view -->
229
+
230
+ ---
231
+
232
+ ### 7. Themes
233
+
234
+ Customizable terminal interface with multiple color themes.
235
+
236
+ ```bash
237
+ arionxiv settings theme
238
+ ```
239
+
240
+ Available themes: cyan, green, magenta, yellow, red, blue, white
241
+
242
+ <!-- Screenshot: theme options -->
243
+
244
+ ---
245
+
246
+ ## Command Reference
247
+
248
+ | Command | Description |
249
+ |---------|-------------|
250
+ | `arionxiv` | Main menu |
251
+ | `arionxiv search <query>` | Search for papers |
252
+ | `arionxiv fetch <paper_id>` | Download paper PDF |
253
+ | `arionxiv analyze <paper_id>` | AI analysis |
254
+ | `arionxiv chat [paper_id]` | Chat with papers |
255
+ | `arionxiv daily` | Daily recommendations |
256
+ | `arionxiv trending` | Trending topics |
257
+ | `arionxiv library` | Saved papers |
258
+ | `arionxiv settings` | Configuration |
259
+ | `arionxiv login` | Authenticate |
260
+ | `arionxiv register` | Create account |
261
+ | `arionxiv session` | Check auth status |
262
+ | `arionxiv --help` | Show all commands |
263
+
264
+ ---
265
+
266
+ ## Configuration
267
+
268
+ ### Settings Commands
269
+
270
+ ```bash
271
+ arionxiv settings show # View all settings
272
+ arionxiv settings theme # Change color theme
273
+ arionxiv settings api # Configure optional API keys (Gemini, Groq, HuggingFace)
274
+ arionxiv settings prefs # Research preferences
275
+ arionxiv settings daily # Daily dose schedule
276
+ arionxiv settings papers # Manage saved papers
277
+ ```
278
+
279
+ ### Self-Hosting (Optional)
280
+
281
+ If you want to run your own backend instead of using the hosted service:
282
+
283
+ | Variable | Description |
284
+ |----------|-------------|
285
+ | `MONGODB_URI` | MongoDB connection string |
286
+ | `OPENROUTER_API_KEY` | OpenRouter API key |
287
+ | `JWT_SECRET_KEY` | Authentication secret |
288
+ | `GEMINI_API_KEY` | Google Gemini embeddings (optional) |
289
+ | `GROQ_API_KEY` | Fallback LLM provider (optional) |
290
+
291
+ ---
292
+
293
+ ## Optional Dependencies
294
+
295
+ ```bash
296
+ pip install arionxiv[advanced-pdf] # OCR and table extraction
297
+ pip install arionxiv[ml] # Local embeddings
298
+ pip install arionxiv[all] # All extras
299
+ ```
300
+
301
+ ---
302
+
303
+ ## Daily Dose Automation
304
+
305
+ ### GitHub Actions
306
+
307
+ 1. Fork the repository
308
+ 2. Add secrets in Settings > Secrets:
309
+ - `MONGODB_URI`
310
+ - `OPENROUTER_API_KEY`
311
+ - `JWT_SECRET_KEY`
312
+ 3. The workflow runs hourly and processes users based on their scheduled time
313
+
314
+ ---
315
+
316
+ ## Alternative Invocation
317
+
318
+ If the `arionxiv` command is not available:
319
+
320
+ ```bash
321
+ python -m arionxiv <command>
322
+ ```
323
+
324
+ ---
325
+
326
+ ## Links
327
+
328
+ - PyPI: https://pypi.org/project/arionxiv/
329
+ - GitHub: https://github.com/ArionDas/ArionXiv
330
+ - Issues: https://github.com/ArionDas/ArionXiv/issues
331
+
332
+ ---
333
+
334
+ ## License
335
+
336
+ MIT License
@@ -0,0 +1,69 @@
1
+ arionxiv/__init__.py,sha256=IT2nu4aE4FvChYNxRfPnsbS6Oa67_EdeEjRCVmGMUKw,1391
2
+ arionxiv/__main__.py,sha256=UB0WJk3GIcmmXF5ooojl5tNZgH2YrQilOX5JEckO3sg,149
3
+ arionxiv/github_actions_runner.py,sha256=ChfnEzLfHoRgq3tRJoNrMM_ILo1zAhSioyRcvJ6Gh3k,7454
4
+ arionxiv/main.py,sha256=JtD9lvmWDoPbL6K37EACyibHw-1IAfm5eRqxuLKa1QE,512
5
+ arionxiv/scheduler_daemon.py,sha256=4VFkpLjWSsv5yI5yFdw-pOX4MuTItYzENEnedp4gqwk,5483
6
+ arionxiv/server.py,sha256=VJwsF54cWslzHAz4qeVFXO0hkkpAIg_yb0700A5GYb8,36029
7
+ arionxiv/server_main.py,sha256=JEbOGWKfyJPbi169j2EoOx5kkbu1Pz8gKs_BNtJLAsU,554
8
+ arionxiv/arxiv_operations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
9
+ arionxiv/arxiv_operations/client.py,sha256=6lZy215iFLLx-h5V0pqv4NG0_iUi0I9YNC7nVImPFvM,10488
10
+ arionxiv/arxiv_operations/fetcher.py,sha256=agMF1z3AifIRPiwmJRvXs-GBaErNdYkxprJcV3e_wJg,6896
11
+ arionxiv/arxiv_operations/searcher.py,sha256=TmcZnHyFLk5IuKfQXA0pveB1JLvN68oUs9q-5qJBVsU,4536
12
+ arionxiv/arxiv_operations/utils.py,sha256=RaD7p7Dsl8lvI9UE3nEiui-4bxMaD35_-SmX9lrPf0s,12151
13
+ arionxiv/cli/__init__.py,sha256=b-1CkLrh9sgzqIe0q-9imYrXNSBnbI-P6Ugaul3L5Ew,89
14
+ arionxiv/cli/main.py,sha256=Z_9wfyB-orfj6gqFcmiUjdwuCw4yZBINNhqLSlkmotM,17117
15
+ arionxiv/cli/commands/__init__.py,sha256=BsKmwEn5wNoeVbJW6rWAeZmHAHptjtnM5af6y3fBg7c,24
16
+ arionxiv/cli/commands/analyze.py,sha256=v_OidQCpFtRz_HeW9x8gkp0BreAwof5dIoAU1hMqoao,27148
17
+ arionxiv/cli/commands/auth.py,sha256=CmoFZk8vu9BbJb4h9Efh2mPHTJQ0S9SIigam41KC-cM,16457
18
+ arionxiv/cli/commands/chat.py,sha256=wfA_lYvhGTxdpKjpnmtNR4W8ouA2dKtbCcMZjO5JK5o,34006
19
+ arionxiv/cli/commands/daily.py,sha256=Mi-cTrzvK3E2Df4ahxepXQt-gMRYToNoXH3bgz9WaUk,20357
20
+ arionxiv/cli/commands/fetch.py,sha256=_x1X8U0KgYcesX3QKk2haXA0tlmVrOIwsCX6UV9_3oc,9391
21
+ arionxiv/cli/commands/library.py,sha256=20KgMFMpU2Cb_B5hfAosWxSLZC7kkWnKM3_4zjL70VU,12626
22
+ arionxiv/cli/commands/preferences.py,sha256=Vywz-LFnVPP4g3-Adny4GaaE-CrFRtrQNUDNhOE8JhA,17613
23
+ arionxiv/cli/commands/search.py,sha256=WY7KGhOQNgTy04E6-53jzcUeb42y9T77lQPj3gqp-VE,10669
24
+ arionxiv/cli/commands/settings_unified.py,sha256=dH7npvFKyWo9BWGhMRHhaQfHfjfsh1KBiXmUJE3xNP0,63195
25
+ arionxiv/cli/commands/trending.py,sha256=i0g_08_JiYM3hxklQ32nJ9ypssJz2ALkndYW8-YxGWk,1506
26
+ arionxiv/cli/commands/welcome.py,sha256=sIxpLit5jPOjFUuOP47c52W4mqlb3I2m-rv6_pGssb4,7567
27
+ arionxiv/cli/ui/__init__.py,sha256=O5tE-PeiSH-rlsQoJ-azkxtzFgkjDhigNQyF3Z0bGgA,18
28
+ arionxiv/cli/ui/global_theme_manager.py,sha256=3JB63kZzZFUggRPjOXxPUVuYCnKAfQmdZE6RbDgE4EM,7369
29
+ arionxiv/cli/ui/logo.py,sha256=7T-l4BDEPvRZ_9gUxd6XjU6LVWOzMlAbFFF4IlhwwZE,5754
30
+ arionxiv/cli/ui/splash.py,sha256=gsxW7gN3QP_IaLAvWEmb0kwlRivh39jm2kUShqQkkBo,4576
31
+ arionxiv/cli/ui/theme.py,sha256=Ubdjx6wkPxjNChW--gL879gQso2v482rwcTx-P-ekQs,838
32
+ arionxiv/cli/ui/theme_system.py,sha256=Kd-wPFGNov9S9FR0l75ezdrEAbOI05HrlW-YT2wLku0,13127
33
+ arionxiv/cli/utils/__init__.py,sha256=GER490LrEOqDlSsqkCEdfXBjFIoDNhN0saxqC4XbbSw,1102
34
+ arionxiv/cli/utils/animations.py,sha256=9MPp0GLiA4zsJ6dQWIB8HJcp8JCDiFnc3vjIH218BMI,19180
35
+ arionxiv/cli/utils/api_client.py,sha256=Z3UDYwsX1rmkvDmbBid8zKu6BdH3loFQgWTEbmUjbsA,20805
36
+ arionxiv/cli/utils/api_config.py,sha256=U9R1Rd-TaghuNxUh-vSHxwptDFz76IYU9t3QzfTInvI,19309
37
+ arionxiv/cli/utils/command_suggestions.py,sha256=2FPoJrCu2K5Gmq_Skz7UkEJkpt8Qo2ABetyOqKSFLE0,4857
38
+ arionxiv/cli/utils/db_config_manager.py,sha256=EIDCTGZHUUNMW1qYrd83jfG9ICbu7AknqQk1vddzyXg,9653
39
+ arionxiv/prompts/__init__.py,sha256=Q8YsyyQ4Ek182xB4HYG1RBc7lrH9fXOZWjurOhjM5EQ,216
40
+ arionxiv/prompts/prompts.py,sha256=fDdzr4wtJTXomyCIVwu2yeKO1586SVQrE-sdy5umX9k,9163
41
+ arionxiv/rag_techniques/__init__.py,sha256=rQgRIQJOfG-rWwl-DRYcPRnLcafUwHJGLTRwK30fucE,172
42
+ arionxiv/rag_techniques/basic_rag.py,sha256=CWlitZhIcJBPvZ1MEVgmpC8MCQWrH1zMLP_aGUowIXw,73466
43
+ arionxiv/services/__init__.py,sha256=qVyq-zEVEPGAenybGu-CE63TSwA5E0qswKGuvzyku4U,2419
44
+ arionxiv/services/llm_client.py,sha256=wloQHt_ZDSbSJpGTb1NeD8Hofmd_2XLGLHaHtcLT4M0,818
45
+ arionxiv/services/unified_analysis_service.py,sha256=xjo_R8LDbKy5bUXT0_0j-pt7hmBWkZUZo-Z-KwEX38I,35922
46
+ arionxiv/services/unified_auth_service.py,sha256=MCuJ0r-ocjDseXYnzdEic9OQYeisIETcqEssKlFAbTM,18275
47
+ arionxiv/services/unified_config_service.py,sha256=l8cBFq6WH84ED6snn5jp4XRigfvU6UCpJ5AdywZonJk,19520
48
+ arionxiv/services/unified_daily_dose_service.py,sha256=sK01MVpuk0Y10PZ5UZaUF5R9CzScdWMX_nXWLz67u-g,36276
49
+ arionxiv/services/unified_database_service.py,sha256=QohKYRbiKF76hcvbHKxADwkJMEeGyWrM_X54_QUQ9M4,64025
50
+ arionxiv/services/unified_llm_service.py,sha256=14HLmYTPkmRJw5vgVPiB9CKC1JOveTdc7Hw5bRBzwiE,17910
51
+ arionxiv/services/unified_paper_service.py,sha256=uL0qIeVqE4KQ8UqWrWXX3E-6Ww7ZcBG-xDF8WGd-bRo,25808
52
+ arionxiv/services/unified_pdf_service.py,sha256=PRxiy7bng0u2hZMCpvrqUAm1kE6FkVOEgSLITQ96Vts,19706
53
+ arionxiv/services/unified_prompt_service.py,sha256=2_uspBWoNeJeM2t-MHjEKVF4IcMceeCw7G_2r5-gbDw,12283
54
+ arionxiv/services/unified_scheduler_service.py,sha256=M5wWWyYBRjcX4YUPbWtljtRWB_kIxz1JCi8j1E9tV30,22970
55
+ arionxiv/services/unified_user_service.py,sha256=He9W5nrveaab-hG3j4zAF3cxUm-R21dBF8q_B-VZOHU,41026
56
+ arionxiv/services/llm_inference/__init__.py,sha256=aVHl3rZ62g7wYwLx1w5hTCYNxM3-SoUkm2Mr3K4aGuI,1545
57
+ arionxiv/services/llm_inference/groq_client.py,sha256=oS4UJZDsXGC_fm9lES_JpZO5KwPHGqtuWxQ3d4cbuXw,18585
58
+ arionxiv/services/llm_inference/llm_utils.py,sha256=oiE4K-p0EjY8FTgJEBAfoMRRu5zCfuumDj91fDgSiUM,8641
59
+ arionxiv/services/llm_inference/openrouter_client.py,sha256=X47K9M-186FVNZoabYtOJsUQpw19cDatB2Su72-6OnM,22663
60
+ arionxiv/utils/__init__.py,sha256=ClLgVpCw4jq7T7w-hHoJaUf6DAjpq3ld0ikNPqd6PW0,1264
61
+ arionxiv/utils/api_helpers.py,sha256=d_ExqER_1q4PQC0OsTzVcVRCJ2ITBIIDT99mDtB5DMk,7290
62
+ arionxiv/utils/file_cleanup.py,sha256=dF5itkncJCz5qO9fpc0gpDo5HIs-RGiAIgYEcUPx_30,4970
63
+ arionxiv/utils/ip_helper.py,sha256=6idxKY7kXTkLTIHIq_EsZfI1B-ZS4DwSTsEVZMF-yiA,2991
64
+ arionxiv-1.0.32.dist-info/licenses/LICENSE,sha256=0ySk5PlwSVv_4X-UNjL8eVG2g_4B1mUGL1YXcHWAEWY,1087
65
+ arionxiv-1.0.32.dist-info/METADATA,sha256=DJpf3hq2PaysQkMIilGLMcTGkZLwmD8Fmmcm4tx4kag,8942
66
+ arionxiv-1.0.32.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
67
+ arionxiv-1.0.32.dist-info/entry_points.txt,sha256=Vy718SnuLW6OPInt9D2ZZQgxLMu8y1tXKpahjZ-8amk,144
68
+ arionxiv-1.0.32.dist-info/top_level.txt,sha256=8nDm-zwyWnZbBR0ag_Pb9x7s_lltXEW_GjLwn_v0qtg,9
69
+ arionxiv-1.0.32.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (80.9.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1,4 @@
1
+ [console_scripts]
2
+ arionxiv = arionxiv.main:main
3
+ arionxiv-scheduler = arionxiv.scheduler_daemon:main
4
+ arionxiv-server = arionxiv.server_main:main
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025 Arion Das
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1 @@
1
+ arionxiv