cite-agent 1.0.5__py3-none-any.whl → 1.2.3__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.
Potentially problematic release.
This version of cite-agent might be problematic. Click here for more details.
- cite_agent/cli.py +374 -39
- cite_agent/cli_workflow.py +276 -0
- cite_agent/enhanced_ai_agent.py +527 -80
- cite_agent/session_manager.py +215 -0
- cite_agent/updater.py +50 -17
- cite_agent/workflow.py +427 -0
- cite_agent/workflow_integration.py +275 -0
- cite_agent-1.2.3.dist-info/METADATA +442 -0
- {cite_agent-1.0.5.dist-info → cite_agent-1.2.3.dist-info}/RECORD +13 -9
- cite_agent-1.0.5.dist-info/METADATA +0 -235
- {cite_agent-1.0.5.dist-info → cite_agent-1.2.3.dist-info}/WHEEL +0 -0
- {cite_agent-1.0.5.dist-info → cite_agent-1.2.3.dist-info}/entry_points.txt +0 -0
- {cite_agent-1.0.5.dist-info → cite_agent-1.2.3.dist-info}/licenses/LICENSE +0 -0
- {cite_agent-1.0.5.dist-info → cite_agent-1.2.3.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,442 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: cite-agent
|
|
3
|
+
Version: 1.2.3
|
|
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
|
+
[](https://pypi.org/project/cite-agent/)
|
|
40
|
+
[](https://python.org)
|
|
41
|
+
[](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**
|
|
@@ -4,19 +4,23 @@ cite_agent/agent_backend_only.py,sha256=H4DH4hmKhT0T3rQLAb2xnnJVjxl3pOZaljL9r6Jn
|
|
|
4
4
|
cite_agent/ascii_plotting.py,sha256=lk8BaECs6fmjtp4iH12G09-frlRehAN7HLhHt2crers,8570
|
|
5
5
|
cite_agent/auth.py,sha256=CYBNv8r1_wfdhsx-YcWOiXCiKvPBymaMca6w7JV__FQ,9809
|
|
6
6
|
cite_agent/backend_only_client.py,sha256=WqLF8x7aXTro2Q3ehqKMsdCg53s6fNk9Hy86bGxqmmw,2561
|
|
7
|
-
cite_agent/cli.py,sha256=
|
|
7
|
+
cite_agent/cli.py,sha256=P2tZ7g3qD65N1FGlBnEll8jgC_L3UiPNdU05plpNkV0,31858
|
|
8
8
|
cite_agent/cli_conversational.py,sha256=RAmgRNRyB8gQ8QLvWU-Tt23j2lmA34rQNT5F3_7SOq0,11141
|
|
9
9
|
cite_agent/cli_enhanced.py,sha256=EAaSw9qtiYRWUXF6_05T19GCXlz9cCSz6n41ASnXIPc,7407
|
|
10
|
+
cite_agent/cli_workflow.py,sha256=4oS_jW9D8ylovXbEFdsyLQONt4o0xxR4Xatfcc4tnBs,11641
|
|
10
11
|
cite_agent/dashboard.py,sha256=VGV5XQU1PnqvTsxfKMcue3j2ri_nvm9Be6O5aVays_w,10502
|
|
11
|
-
cite_agent/enhanced_ai_agent.py,sha256=
|
|
12
|
+
cite_agent/enhanced_ai_agent.py,sha256=hNpKUOfu7_C2-A0vQS8jPmrSO_UympdAQ9MGYhwU_fY,146938
|
|
12
13
|
cite_agent/rate_limiter.py,sha256=-0fXx8Tl4zVB4O28n9ojU2weRo-FBF1cJo9Z5jC2LxQ,10908
|
|
14
|
+
cite_agent/session_manager.py,sha256=jD2v_owu7m0tS_Qly0g2XGnqupfE8Dv9sqkeoAeidj0,7999
|
|
13
15
|
cite_agent/setup_config.py,sha256=kNZNr5cZmCXr43rGWNenNJXZ1Kfz7PrdLXpAqxM7WgM,16404
|
|
14
16
|
cite_agent/streaming_ui.py,sha256=N6TWOo7GVQ_Ynfw73JCfrdGcLIU-PwbS3GbsHQHegmg,7810
|
|
15
17
|
cite_agent/telemetry.py,sha256=55kXdHvI24ZsEkbFtihcjIfJt2oiSXcEpLzTxQ3KCdQ,2916
|
|
16
18
|
cite_agent/ui.py,sha256=r1OAeY3NSeqhAjJYmEBH9CaennBuibFAz1Mur6YF80E,6134
|
|
17
|
-
cite_agent/updater.py,sha256=
|
|
19
|
+
cite_agent/updater.py,sha256=BLNF2zsd-uxXx5qh3uuBcbeAsGeb6Ad2dQbyrHqISKU,8478
|
|
18
20
|
cite_agent/web_search.py,sha256=j-BRhT8EBC6BEPgACQPeVwB1SVGKDz4XLM7sowacvSc,6587
|
|
19
|
-
cite_agent
|
|
21
|
+
cite_agent/workflow.py,sha256=a0YC0Mzz4or1C5t2gZcuJBQ0uMOZrooaI8eLu2kkI0k,15086
|
|
22
|
+
cite_agent/workflow_integration.py,sha256=A9ua0DN5pRtuU0cAwrUTGvqt2SXKhEHQbrHx16EGnDM,10910
|
|
23
|
+
cite_agent-1.2.3.dist-info/licenses/LICENSE,sha256=XJkyO4IymhSUniN1ENY6lLrL2729gn_rbRlFK6_Hi9M,1074
|
|
20
24
|
src/__init__.py,sha256=0eEpjRfjRjOTilP66y-AbGNslBsVYr_clE-bZUzsX7s,40
|
|
21
25
|
src/services/__init__.py,sha256=pTGLCH_84mz4nGtYMwQES5w-LzoSulUtx_uuNM6r-LA,4257
|
|
22
26
|
src/services/simple_enhanced_main.py,sha256=IJoOplCqcVUg3GvN_BRyAhpGrLm_WEPy2jmHcNCY6R0,9257
|
|
@@ -43,8 +47,8 @@ src/services/research_service/synthesizer.py,sha256=lCcu37PWhWVNphHKaJJDIC-JQ5OI
|
|
|
43
47
|
src/services/search_service/__init__.py,sha256=UZFXdd7r6wietQ2kESXEyGffdfBbpghquecQde7auF4,137
|
|
44
48
|
src/services/search_service/indexer.py,sha256=u3-uwdAfmahWWsdebDF9i8XIyp7YtUMIHzlmBLBnPPM,7252
|
|
45
49
|
src/services/search_service/search_engine.py,sha256=S9HqQ_mk-8W4d4MUOgBbEGQGV29-eSuceSFvVb4Xk-k,12500
|
|
46
|
-
cite_agent-1.
|
|
47
|
-
cite_agent-1.
|
|
48
|
-
cite_agent-1.
|
|
49
|
-
cite_agent-1.
|
|
50
|
-
cite_agent-1.
|
|
50
|
+
cite_agent-1.2.3.dist-info/METADATA,sha256=0Yb0ily4Ko8QT4Zf5M5ztx8EasqOl-axwEHzhR4iiUM,11657
|
|
51
|
+
cite_agent-1.2.3.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
52
|
+
cite_agent-1.2.3.dist-info/entry_points.txt,sha256=bJ0u28nFIxQKH1PWQ2ak4PV-FAjhoxTC7YADEdDenFw,83
|
|
53
|
+
cite_agent-1.2.3.dist-info/top_level.txt,sha256=TgOFqJTIy8vDZuOoYA2QgagkqZtfhM5Acvt_IsWzAKo,15
|
|
54
|
+
cite_agent-1.2.3.dist-info/RECORD,,
|