cite-agent 1.0.4__tar.gz → 1.2.4__tar.gz

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.

Potentially problematic release.


This version of cite-agent might be problematic. Click here for more details.

Files changed (98) hide show
  1. cite_agent-1.2.4/PKG-INFO +442 -0
  2. cite_agent-1.2.4/README.md +406 -0
  3. {cite_agent-1.0.4 → cite_agent-1.2.4}/cite_agent/__init__.py +1 -1
  4. {cite_agent-1.0.4 → cite_agent-1.2.4}/cite_agent/account_client.py +19 -46
  5. {cite_agent-1.0.4 → cite_agent-1.2.4}/cite_agent/agent_backend_only.py +30 -4
  6. {cite_agent-1.0.4 → cite_agent-1.2.4}/cite_agent/cli.py +397 -64
  7. cite_agent-1.2.4/cite_agent/cli_conversational.py +294 -0
  8. cite_agent-1.2.4/cite_agent/cli_workflow.py +276 -0
  9. cite_agent-1.2.4/cite_agent/enhanced_ai_agent.py +3325 -0
  10. cite_agent-1.2.4/cite_agent/session_manager.py +215 -0
  11. {cite_agent-1.0.4 → cite_agent-1.2.4}/cite_agent/setup_config.py +5 -21
  12. cite_agent-1.2.4/cite_agent/streaming_ui.py +252 -0
  13. {cite_agent-1.0.4 → cite_agent-1.2.4}/cite_agent/updater.py +50 -17
  14. cite_agent-1.2.4/cite_agent/workflow.py +427 -0
  15. cite_agent-1.2.4/cite_agent/workflow_integration.py +275 -0
  16. cite_agent-1.2.4/cite_agent.egg-info/PKG-INFO +442 -0
  17. cite_agent-1.2.4/cite_agent.egg-info/SOURCES.txt +90 -0
  18. {cite_agent-1.0.4 → cite_agent-1.2.4}/cite_agent.egg-info/requires.txt +3 -1
  19. {cite_agent-1.0.4 → cite_agent-1.2.4}/cite_agent.egg-info/top_level.txt +1 -0
  20. cite_agent-1.2.4/docs/BETA_LAUNCH_CHECKLIST.md +102 -0
  21. cite_agent-1.2.4/docs/BETA_RELEASE_CHECKLIST.md +37 -0
  22. cite_agent-1.2.4/docs/ENHANCED_CAPABILITIES.md +231 -0
  23. cite_agent-1.2.4/docs/GROQ_RATE_LIMITS.md +344 -0
  24. cite_agent-1.2.4/docs/INSTALL.md +87 -0
  25. cite_agent-1.2.4/docs/PUBLISHING_PYPI.md +86 -0
  26. cite_agent-1.2.4/docs/SECURE_PACKAGING_GUIDE.md +68 -0
  27. cite_agent-1.2.4/docs/SECURITY_AUDIT.md +29 -0
  28. cite_agent-1.2.4/docs/USER_GETTING_STARTED.md +155 -0
  29. cite_agent-1.2.4/docs/playbooks/BETA_LAUNCH_PLAYBOOK.md +105 -0
  30. cite_agent-1.2.4/requirements-dev.txt +10 -0
  31. {cite_agent-1.0.4 → cite_agent-1.2.4}/setup.py +7 -6
  32. cite_agent-1.2.4/src/__init__.py +1 -0
  33. cite_agent-1.2.4/src/services/__init__.py +132 -0
  34. cite_agent-1.2.4/src/services/auth_service/__init__.py +3 -0
  35. cite_agent-1.2.4/src/services/auth_service/auth_manager.py +33 -0
  36. cite_agent-1.2.4/src/services/graph/__init__.py +1 -0
  37. cite_agent-1.2.4/src/services/graph/knowledge_graph.py +194 -0
  38. cite_agent-1.2.4/src/services/llm_service/__init__.py +5 -0
  39. cite_agent-1.2.4/src/services/llm_service/llm_manager.py +495 -0
  40. cite_agent-1.2.4/src/services/paper_service/__init__.py +5 -0
  41. cite_agent-1.2.4/src/services/paper_service/openalex.py +231 -0
  42. cite_agent-1.2.4/src/services/performance_service/__init__.py +1 -0
  43. cite_agent-1.2.4/src/services/performance_service/rust_performance.py +395 -0
  44. cite_agent-1.2.4/src/services/research_service/__init__.py +23 -0
  45. cite_agent-1.2.4/src/services/research_service/chatbot.py +2056 -0
  46. cite_agent-1.2.4/src/services/research_service/citation_manager.py +436 -0
  47. cite_agent-1.2.4/src/services/research_service/context_manager.py +1441 -0
  48. cite_agent-1.2.4/src/services/research_service/conversation_manager.py +597 -0
  49. cite_agent-1.2.4/src/services/research_service/critical_paper_detector.py +577 -0
  50. cite_agent-1.2.4/src/services/research_service/enhanced_research.py +121 -0
  51. cite_agent-1.2.4/src/services/research_service/enhanced_synthesizer.py +375 -0
  52. cite_agent-1.2.4/src/services/research_service/query_generator.py +777 -0
  53. cite_agent-1.2.4/src/services/research_service/synthesizer.py +1273 -0
  54. cite_agent-1.2.4/src/services/search_service/__init__.py +5 -0
  55. cite_agent-1.2.4/src/services/search_service/indexer.py +186 -0
  56. cite_agent-1.2.4/src/services/search_service/search_engine.py +342 -0
  57. cite_agent-1.2.4/src/services/simple_enhanced_main.py +287 -0
  58. cite_agent-1.2.4/tests/beta_launch_test_suite.py +369 -0
  59. cite_agent-1.2.4/tests/enhanced/test_account_client.py +41 -0
  60. cite_agent-1.2.4/tests/enhanced/test_archive_agent.py +72 -0
  61. cite_agent-1.2.4/tests/enhanced/test_enhanced_agent_runtime.py +325 -0
  62. cite_agent-1.2.4/tests/enhanced/test_reasoning_engine.py +7 -0
  63. cite_agent-1.2.4/tests/enhanced/test_setup_config.py +54 -0
  64. cite_agent-1.2.4/tests/enhanced/test_tool_framework.py +6 -0
  65. cite_agent-1.2.4/tests/integration_test.py +397 -0
  66. cite_agent-1.2.4/tests/test_truth_seeking_comprehensive.py +399 -0
  67. cite_agent-1.2.4/tests/validation/test_accuracy_system.py +209 -0
  68. cite_agent-1.2.4/tests/validation/test_agent_live.py +339 -0
  69. cite_agent-1.2.4/tests/validation/test_backend_local.py +151 -0
  70. cite_agent-1.2.4/tests/validation/test_cerebras_comparison.py +135 -0
  71. cite_agent-1.2.4/tests/validation/test_improved_prompt.py +128 -0
  72. cite_agent-1.2.4/tests/validation/test_qualitative_robustness.py +541 -0
  73. cite_agent-1.2.4/tests/validation/test_qualitative_system.py +264 -0
  74. cite_agent-1.2.4/tests/validation/test_truth_seeking_chinese.py +252 -0
  75. cite_agent-1.2.4/tests/validation/test_truth_seeking_comprehensive.py +276 -0
  76. cite_agent-1.2.4/tests/validation/test_truth_seeking_real.py +290 -0
  77. cite_agent-1.2.4/tools/security_audit.py +149 -0
  78. cite_agent-1.0.4/PKG-INFO +0 -234
  79. cite_agent-1.0.4/README.md +0 -200
  80. cite_agent-1.0.4/cite_agent/__distribution__.py +0 -7
  81. cite_agent-1.0.4/cite_agent/enhanced_ai_agent.py +0 -172
  82. cite_agent-1.0.4/cite_agent.egg-info/PKG-INFO +0 -234
  83. cite_agent-1.0.4/cite_agent.egg-info/SOURCES.txt +0 -28
  84. {cite_agent-1.0.4 → cite_agent-1.2.4}/LICENSE +0 -0
  85. {cite_agent-1.0.4 → cite_agent-1.2.4}/MANIFEST.in +0 -0
  86. {cite_agent-1.0.4 → cite_agent-1.2.4}/cite_agent/ascii_plotting.py +0 -0
  87. {cite_agent-1.0.4 → cite_agent-1.2.4}/cite_agent/auth.py +0 -0
  88. {cite_agent-1.0.4 → cite_agent-1.2.4}/cite_agent/backend_only_client.py +0 -0
  89. {cite_agent-1.0.4 → cite_agent-1.2.4}/cite_agent/cli_enhanced.py +0 -0
  90. {cite_agent-1.0.4 → cite_agent-1.2.4}/cite_agent/dashboard.py +0 -0
  91. {cite_agent-1.0.4 → cite_agent-1.2.4}/cite_agent/rate_limiter.py +0 -0
  92. {cite_agent-1.0.4 → cite_agent-1.2.4}/cite_agent/telemetry.py +0 -0
  93. {cite_agent-1.0.4 → cite_agent-1.2.4}/cite_agent/ui.py +0 -0
  94. {cite_agent-1.0.4 → cite_agent-1.2.4}/cite_agent/web_search.py +0 -0
  95. {cite_agent-1.0.4 → cite_agent-1.2.4}/cite_agent.egg-info/dependency_links.txt +0 -0
  96. {cite_agent-1.0.4 → cite_agent-1.2.4}/cite_agent.egg-info/entry_points.txt +0 -0
  97. {cite_agent-1.0.4 → cite_agent-1.2.4}/requirements.txt +0 -0
  98. {cite_agent-1.0.4 → cite_agent-1.2.4}/setup.cfg +0 -0
@@ -0,0 +1,442 @@
1
+ Metadata-Version: 2.4
2
+ Name: cite-agent
3
+ Version: 1.2.4
4
+ Summary: Terminal AI assistant for academic research with citation verification
5
+ Home-page: https://github.com/Spectating101/cite-agent
6
+ Author: Cite-Agent Team
7
+ Author-email: contact@citeagent.dev
8
+ Classifier: Development Status :: 4 - Beta
9
+ Classifier: Intended Audience :: Science/Research
10
+ Classifier: License :: OSI Approved :: MIT License
11
+ Classifier: Programming Language :: Python :: 3.9
12
+ Classifier: Programming Language :: Python :: 3.10
13
+ Classifier: Programming Language :: Python :: 3.11
14
+ Classifier: Programming Language :: Python :: 3.12
15
+ Requires-Python: >=3.9
16
+ Description-Content-Type: text/markdown
17
+ License-File: LICENSE
18
+ Requires-Dist: aiohttp>=3.9.0
19
+ Requires-Dist: groq>=0.4.0
20
+ Requires-Dist: openai>=1.0.0
21
+ Requires-Dist: requests>=2.31.0
22
+ Requires-Dist: python-dotenv>=1.0.0
23
+ Requires-Dist: pydantic>=2.5.0
24
+ Requires-Dist: rich>=13.7.0
25
+ Requires-Dist: keyring>=24.3.0
26
+ Dynamic: author
27
+ Dynamic: author-email
28
+ Dynamic: classifier
29
+ Dynamic: description
30
+ Dynamic: description-content-type
31
+ Dynamic: home-page
32
+ Dynamic: license-file
33
+ Dynamic: requires-dist
34
+ Dynamic: requires-python
35
+ Dynamic: summary
36
+
37
+ # Cite-Agent: AI Research Assistant
38
+
39
+ [![Version](https://img.shields.io/badge/version-1.2.0-blue.svg)](https://pypi.org/project/cite-agent/)
40
+ [![Python](https://img.shields.io/badge/python-3.8+-green.svg)](https://python.org)
41
+ [![License](https://img.shields.io/badge/license-MIT-orange.svg)](LICENSE)
42
+
43
+ **Cite-Agent** is a sophisticated AI research assistant that combines academic research, financial data, and truth-seeking capabilities in one powerful tool. Built for researchers, academics, and professionals who need accurate, cited information.
44
+
45
+ ## 🌟 Features
46
+
47
+ ### 🔬 **Academic Research**
48
+ - Search academic papers across multiple databases
49
+ - Citation verification and quality scoring
50
+ - DOI resolution and metadata extraction
51
+ - Multi-source verification (Semantic Scholar, OpenAlex, PubMed)
52
+
53
+ ### 💰 **Financial Data**
54
+ - Real-time stock market data via FinSight API
55
+ - SEC filings and financial reports
56
+ - Company metrics and KPIs
57
+ - Historical financial analysis
58
+
59
+ ### 🎯 **Truth-Seeking AI**
60
+ - Fact-checking with source verification
61
+ - Confidence scoring for responses
62
+ - Multi-language support (English, Chinese)
63
+ - Temperature-controlled responses (0.2 for accuracy)
64
+
65
+ ### 📊 **Analytics & Tracking**
66
+ - User activity tracking
67
+ - Download analytics
68
+ - Usage statistics
69
+ - Citation quality metrics
70
+
71
+ ### 🔄 **Workflow Integration** (NEW!)
72
+ - Local paper library management
73
+ - BibTeX export for citation managers
74
+ - Clipboard integration for instant citations
75
+ - Markdown export for Obsidian/Notion
76
+ - Session history and query replay
77
+ - **Zero context switching** - stay in your flow
78
+
79
+ ## 🚀 Quick Start
80
+
81
+ ### Installation
82
+
83
+ ```bash
84
+ pip install cite-agent
85
+ ```
86
+
87
+ ### Basic Usage
88
+
89
+ ```bash
90
+ # Interactive mode
91
+ cite-agent
92
+
93
+ # Single query
94
+ cite-agent "Find research papers on machine learning in healthcare"
95
+
96
+ # Workflow integration (NEW!)
97
+ cite-agent "Find BERT paper" --save --format bibtex --copy
98
+ cite-agent --library # View saved papers
99
+ cite-agent --export-bibtex # Export to .bib file
100
+ cite-agent --history # See recent queries
101
+
102
+ # Get help
103
+ cite-agent --help
104
+ ```
105
+
106
+ ### Python API
107
+
108
+ ```python
109
+ import asyncio
110
+ from cite_agent import EnhancedNocturnalAgent, ChatRequest
111
+
112
+ async def main():
113
+ agent = EnhancedNocturnalAgent()
114
+ await agent.initialize()
115
+
116
+ request = ChatRequest(
117
+ question="What is the current state of AI in healthcare?",
118
+ user_id="user123",
119
+ conversation_id="conv456"
120
+ )
121
+
122
+ response = await agent.process_request(request)
123
+ print(response.response)
124
+ print(f"Confidence: {response.confidence_score}")
125
+ print(f"Tools used: {response.tools_used}")
126
+
127
+ await agent.close()
128
+
129
+ asyncio.run(main())
130
+ ```
131
+
132
+ ## 📖 Documentation
133
+
134
+ ### Command Line Interface
135
+
136
+ #### Basic Commands
137
+
138
+ ```bash
139
+ # Show version
140
+ cite-agent --version
141
+
142
+ # Interactive setup
143
+ cite-agent --setup
144
+
145
+ # Show tips
146
+ cite-agent --tips
147
+
148
+ # Check for updates
149
+ cite-agent --check-updates
150
+ ```
151
+
152
+ #### Query Examples
153
+
154
+ ```bash
155
+ # Academic research
156
+ cite-agent "Find papers on transformer architecture"
157
+ cite-agent "Verify this citation: Smith, J. (2023). AI in Medicine. Nature, 45(2), 123-145."
158
+
159
+ # Financial data
160
+ cite-agent "What is Apple's current revenue?"
161
+ cite-agent "Get Tesla's financial metrics for Q3 2024"
162
+
163
+ # Fact-checking
164
+ cite-agent "Is water's boiling point 100°C at standard pressure?"
165
+ cite-agent "Did Shakespeare write Harry Potter?"
166
+
167
+ # Multi-language
168
+ cite-agent "我的p值是0.05,這顯著嗎?"
169
+ cite-agent "天空是藍色的嗎?"
170
+ ```
171
+
172
+ ### Python API Reference
173
+
174
+ #### EnhancedNocturnalAgent
175
+
176
+ The main agent class for programmatic access.
177
+
178
+ ```python
179
+ class EnhancedNocturnalAgent:
180
+ async def initialize(self, force_reload: bool = False)
181
+ async def process_request(self, request: ChatRequest) -> ChatResponse
182
+ async def process_request_streaming(self, request: ChatRequest)
183
+ async def search_academic_papers(self, query: str, limit: int = 10) -> Dict[str, Any]
184
+ async def get_financial_data(self, ticker: str, metric: str, limit: int = 12) -> Dict[str, Any]
185
+ async def synthesize_research(self, paper_ids: List[str], max_words: int = 500) -> Dict[str, Any]
186
+ async def close(self)
187
+ ```
188
+
189
+ #### Data Models
190
+
191
+ ```python
192
+ @dataclass
193
+ class ChatRequest:
194
+ question: str
195
+ user_id: str = "default"
196
+ conversation_id: str = "default"
197
+ context: Dict[str, Any] = field(default_factory=dict)
198
+
199
+ @dataclass
200
+ class ChatResponse:
201
+ response: str
202
+ tools_used: List[str] = field(default_factory=list)
203
+ reasoning_steps: List[str] = field(default_factory=list)
204
+ model: str = "enhanced-nocturnal-agent"
205
+ timestamp: str = field(default_factory=lambda: datetime.now().isoformat())
206
+ tokens_used: int = 0
207
+ confidence_score: float = 0.0
208
+ execution_results: Dict[str, Any] = field(default_factory=dict)
209
+ api_results: Dict[str, Any] = field(default_factory=dict)
210
+ error_message: Optional[str] = None
211
+ ```
212
+
213
+ ### API Endpoints
214
+
215
+ #### Authentication
216
+ - `POST /api/auth/register` - Register new user
217
+ - `POST /api/auth/login` - User login
218
+ - `POST /api/auth/refresh` - Refresh token
219
+ - `GET /api/auth/me` - Get current user info
220
+ - `POST /api/auth/logout` - Logout user
221
+
222
+ #### Research
223
+ - `POST /api/search` - Search academic papers
224
+ - `POST /api/synthesize` - Synthesize research papers
225
+ - `POST /api/format` - Format citations
226
+
227
+ #### Financial Data
228
+ - `GET /v1/finance/calc/{ticker}/{metric}` - Get financial metrics
229
+ - `GET /v1/finance/kpis/{ticker}` - Get company KPIs
230
+ - `GET /v1/finance/reports/{ticker}` - Get financial reports
231
+
232
+ #### Analytics
233
+ - `GET /api/download/stats/summary` - Download statistics
234
+ - `GET /api/analytics/overview` - Usage overview
235
+ - `GET /api/analytics/users` - User statistics
236
+
237
+ #### Download Tracking
238
+ - `GET /api/download/windows` - Track Windows downloads
239
+ - `GET /api/download/macos` - Track macOS downloads
240
+ - `GET /api/download/linux` - Track Linux downloads
241
+
242
+ ## 🔧 Configuration
243
+
244
+ ### Environment Variables
245
+
246
+ ```bash
247
+ # Authentication
248
+ NOCTURNAL_ACCOUNT_EMAIL=your@email.edu
249
+ NOCTURNAL_ACCOUNT_PASSWORD=your_password
250
+
251
+ # API Configuration
252
+ NOCTURNAL_API_URL=https://cite-agent-api-720dfadd602c.herokuapp.com
253
+ ARCHIVE_API_URL=https://cite-agent-api-720dfadd602c.herokuapp.com/api
254
+ FINSIGHT_API_URL=https://cite-agent-api-720dfadd602c.herokuapp.com/v1/finance
255
+
256
+ # Optional
257
+ NOCTURNAL_DEBUG=1 # Enable debug logging
258
+ NOCTURNAL_QUERY_LIMIT=25 # Default query limit
259
+ ```
260
+
261
+ ### Session Management
262
+
263
+ Sessions are automatically managed and stored in:
264
+ - **Linux/macOS**: `~/.nocturnal_archive/session.json`
265
+ - **Windows**: `%USERPROFILE%\.nocturnal_archive\session.json`
266
+
267
+ ## 📊 Analytics & Monitoring
268
+
269
+ ### User Tracking
270
+
271
+ The system automatically tracks:
272
+ - User registrations and logins
273
+ - Query history and usage patterns
274
+ - Token consumption and costs
275
+ - Response quality and citation accuracy
276
+
277
+ ### Download Analytics
278
+
279
+ Track installer downloads across platforms:
280
+ - Windows, macOS, Linux downloads
281
+ - Geographic distribution (IP-based)
282
+ - Referrer tracking
283
+ - Download trends and patterns
284
+
285
+ ### Dashboard Access
286
+
287
+ Access the analytics dashboard at:
288
+ ```
289
+ https://cite-agent-api-720dfadd602c.herokuapp.com/dashboard
290
+ ```
291
+
292
+ ## 💰 Monetization & Pricing
293
+
294
+ ### Current Pricing Tiers
295
+
296
+ | Tier | Price | Queries/Month | Rate Limit | Features |
297
+ |------|-------|---------------|------------|----------|
298
+ | **Free** | $0 | 100 | 100/hour | Basic research, limited finance |
299
+ | **Pro** | $9/month | 1,000 | 1,000/hour | Full features, priority support |
300
+ | **Academic** | $5/month | 500 | 500/hour | Student discount, same features |
301
+ | **Enterprise** | $99/month | Unlimited | 5,000/hour | API access, custom integrations |
302
+
303
+ ### Revenue Model
304
+
305
+ - **Subscription-based**: Monthly recurring revenue
306
+ - **Usage-based**: Pay-per-query options available
307
+ - **API licensing**: Enterprise customers
308
+ - **White-label**: Custom deployments
309
+
310
+ ## 🛠️ Development
311
+
312
+ ### Local Development
313
+
314
+ ```bash
315
+ # Clone repository
316
+ git clone https://github.com/yourusername/cite-agent.git
317
+ cd cite-agent
318
+
319
+ # Install dependencies
320
+ pip install -r requirements.txt
321
+ pip install -r requirements-dev.txt
322
+
323
+ # Run tests
324
+ pytest
325
+
326
+ # Start development server
327
+ python -m cite_agent.dashboard
328
+ ```
329
+
330
+ ### Building from Source
331
+
332
+ ```bash
333
+ # Build wheel
334
+ python setup.py bdist_wheel
335
+
336
+ # Install locally
337
+ pip install dist/cite_agent-1.0.5-py3-none-any.whl
338
+ ```
339
+
340
+ ### Contributing
341
+
342
+ 1. Fork the repository
343
+ 2. Create a feature branch
344
+ 3. Make your changes
345
+ 4. Add tests
346
+ 5. Submit a pull request
347
+
348
+ ## 🔒 Security & Privacy
349
+
350
+ ### Data Protection
351
+ - All user data encrypted in transit and at rest
352
+ - JWT-based authentication with 30-day expiration
353
+ - No storage of sensitive personal information
354
+ - GDPR compliant data handling
355
+
356
+ ### API Security
357
+ - Rate limiting per user tier
358
+ - Input validation and sanitization
359
+ - SQL injection prevention
360
+ - CORS protection
361
+
362
+ ## 📈 Performance
363
+
364
+ ### Benchmarks
365
+ - **Average response time**: 2-5 seconds
366
+ - **Citation verification**: 95%+ accuracy
367
+ - **Uptime**: 99.9% SLA
368
+ - **Concurrent users**: 1000+ supported
369
+
370
+ ### Optimization
371
+ - Async/await architecture
372
+ - Connection pooling
373
+ - Response caching
374
+ - CDN distribution
375
+
376
+ ## 🐛 Troubleshooting
377
+
378
+ ### Common Issues
379
+
380
+ #### CLI Hangs on Startup
381
+ ```bash
382
+ # Clear session and reconfigure
383
+ rm -rf ~/.nocturnal_archive
384
+ cite-agent --setup
385
+ ```
386
+
387
+ #### Authentication Errors
388
+ ```bash
389
+ # Check credentials
390
+ cite-agent --setup
391
+
392
+ # Verify email format (must be academic)
393
+ # Valid: user@university.edu, student@ac.uk
394
+ # Invalid: user@gmail.com, user@company.com
395
+ ```
396
+
397
+ #### API Connection Issues
398
+ ```bash
399
+ # Check network connectivity
400
+ curl https://cite-agent-api-720dfadd602c.herokuapp.com/api/health
401
+
402
+ # Verify API keys
403
+ echo $NOCTURNAL_ACCOUNT_EMAIL
404
+ ```
405
+
406
+ ### Debug Mode
407
+
408
+ ```bash
409
+ # Enable debug logging
410
+ export NOCTURNAL_DEBUG=1
411
+ cite-agent "your query"
412
+ ```
413
+
414
+ ### Support
415
+
416
+ - **Documentation**: [Full docs](https://docs.cite-agent.com)
417
+ - **Issues**: [GitHub Issues](https://github.com/yourusername/cite-agent/issues)
418
+ - **Email**: support@cite-agent.com
419
+ - **Discord**: [Community Server](https://discord.gg/cite-agent)
420
+
421
+ ## 📄 License
422
+
423
+ This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
424
+
425
+ ## 🙏 Acknowledgments
426
+
427
+ - **OpenAlex** for academic data
428
+ - **Semantic Scholar** for research papers
429
+ - **FinSight** for financial data
430
+ - **Groq** for LLM processing
431
+ - **FastAPI** for the backend framework
432
+
433
+ ## 📞 Contact
434
+
435
+ - **Website**: https://cite-agent.com
436
+ - **Email**: contact@cite-agent.com
437
+ - **Twitter**: [@cite_agent](https://twitter.com/cite_agent)
438
+ - **LinkedIn**: [Cite-Agent](https://linkedin.com/company/cite-agent)
439
+
440
+ ---
441
+
442
+ **Made with ❤️ for the research community**