cite-agent 1.2.6__py3-none-any.whl → 1.2.7__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/__main__.py ADDED
@@ -0,0 +1,11 @@
1
+ #!/usr/bin/env python3
2
+ """
3
+ Entry point for python -m cite_agent
4
+ Allows running: python3 -m cite_agent
5
+ """
6
+
7
+ from cite_agent.cli import main
8
+
9
+ if __name__ == "__main__":
10
+ main()
11
+
cite_agent/__version__.py CHANGED
@@ -1 +1 @@
1
- __version__ = "1.2.6"
1
+ __version__ = "1.2.7"
cite_agent/cli.py CHANGED
@@ -609,6 +609,16 @@ class NocturnalCLI:
609
609
 
610
610
  def main():
611
611
  """Main CLI entry point"""
612
+ # Check if ~/.local/bin is in PATH and warn if not
613
+ import sys
614
+ from pathlib import Path
615
+ local_bin = Path.home() / ".local" / "bin"
616
+ if local_bin.exists() and str(local_bin) not in os.environ.get("PATH", ""):
617
+ print("⚠️ NOTE: ~/.local/bin is not in your PATH")
618
+ print(" Add this to ~/.bashrc or ~/.zshrc:")
619
+ print(' export PATH="$HOME/.local/bin:$PATH"')
620
+ print("")
621
+
612
622
  parser = argparse.ArgumentParser(
613
623
  description="Cite Agent - AI Research Assistant with real data",
614
624
  formatter_class=argparse.RawDescriptionHelpFormatter,
@@ -748,7 +758,7 @@ Examples:
748
758
 
749
759
  # Handle version
750
760
  if args.version:
751
- print("Cite Agent v1.2.6")
761
+ print("Cite Agent v1.2.7")
752
762
  print("AI Research Assistant with real data integration")
753
763
  return
754
764
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: cite-agent
3
- Version: 1.2.6
3
+ Version: 1.2.7
4
4
  Summary: Terminal AI assistant for academic research with citation verification
5
5
  Home-page: https://github.com/Spectating101/cite-agent
6
6
  Author: Cite-Agent Team
@@ -37,7 +37,7 @@ Dynamic: summary
37
37
 
38
38
  # Cite-Agent: AI Research Assistant
39
39
 
40
- [![Version](https://img.shields.io/badge/version-1.2.0-blue.svg)](https://pypi.org/project/cite-agent/)
40
+ [![Version](https://img.shields.io/badge/version-1.2.6-blue.svg)](https://pypi.org/project/cite-agent/)
41
41
  [![Python](https://img.shields.io/badge/python-3.8+-green.svg)](https://python.org)
42
42
  [![License](https://img.shields.io/badge/license-MIT-orange.svg)](LICENSE)
43
43
 
@@ -81,10 +81,34 @@ Dynamic: summary
81
81
 
82
82
  ### Installation
83
83
 
84
+ **Option 1: pipx (Recommended - handles PATH automatically)**
84
85
  ```bash
85
- pip install cite-agent
86
+ # Install pipx if you don't have it
87
+ pip install --user pipx
88
+ python3 -m pipx ensurepath
89
+
90
+ # Install cite-agent
91
+ pipx install cite-agent
92
+
93
+ # Ready to use (no PATH setup needed)
94
+ cite-agent --version
95
+ ```
96
+
97
+ **Option 2: pip (requires PATH setup)**
98
+ ```bash
99
+ # Install
100
+ pip install --user cite-agent
101
+
102
+ # Add to PATH (one-time setup)
103
+ echo 'export PATH="$HOME/.local/bin:$PATH"' >> ~/.bashrc
104
+ source ~/.bashrc
105
+
106
+ # Ready to use
107
+ cite-agent --version
86
108
  ```
87
109
 
110
+ **If cite-agent command not found:** Run `python3 -m cite_agent.cli` instead.
111
+
88
112
  ### Basic Usage
89
113
 
90
114
  ```bash
@@ -1,11 +1,12 @@
1
1
  cite_agent/__init__.py,sha256=wAXV2v8nNOmIAd0rh8196ItBl9hHWBVOBl5Re4VB77I,1645
2
- cite_agent/__version__.py,sha256=vMQK58X8_YZGKzRm0ThvPAKFtpfyejGmUnDrY9RQ13w,22
2
+ cite_agent/__main__.py,sha256=6x3lltwG-iZHeQbN12rwvdkPDfd2Rmdk71tOOaC89Mw,179
3
+ cite_agent/__version__.py,sha256=49prCLbE3fFzLfxem5rd2dr1iV4_L-bN0N4J7jxU5yA,22
3
4
  cite_agent/account_client.py,sha256=yLuzhIJoIZuXHXGbaVMzDxRATQwcy-wiaLnUrDuwUhI,5725
4
5
  cite_agent/agent_backend_only.py,sha256=H4DH4hmKhT0T3rQLAb2xnnJVjxl3pOZaljL9r6JndFY,6314
5
6
  cite_agent/ascii_plotting.py,sha256=lk8BaECs6fmjtp4iH12G09-frlRehAN7HLhHt2crers,8570
6
7
  cite_agent/auth.py,sha256=YtoGXKwcLkZQbop37iYYL9BzRWBRPlt_D9p71VGViS4,9833
7
8
  cite_agent/backend_only_client.py,sha256=WqLF8x7aXTro2Q3ehqKMsdCg53s6fNk9Hy86bGxqmmw,2561
8
- cite_agent/cli.py,sha256=8USn40f21455KG5SkWf9axLGzrbhqm609eICd_7JsN8,32247
9
+ cite_agent/cli.py,sha256=MeIuvCuGT75_5LIf7THAE3potnpd5iCATOqHFw5ExUc,32672
9
10
  cite_agent/cli_conversational.py,sha256=RAmgRNRyB8gQ8QLvWU-Tt23j2lmA34rQNT5F3_7SOq0,11141
10
11
  cite_agent/cli_enhanced.py,sha256=EAaSw9qtiYRWUXF6_05T19GCXlz9cCSz6n41ASnXIPc,7407
11
12
  cite_agent/cli_workflow.py,sha256=4oS_jW9D8ylovXbEFdsyLQONt4o0xxR4Xatfcc4tnBs,11641
@@ -21,7 +22,7 @@ cite_agent/updater.py,sha256=28Kgs6cKEB-3d-Eri411hYHv6CgywMHV0718XFw0PqI,8479
21
22
  cite_agent/web_search.py,sha256=FZCuNO7MAITiOIbpPbJyt2bzbXPzQla-9amJpnMpW_4,6520
22
23
  cite_agent/workflow.py,sha256=a0YC0Mzz4or1C5t2gZcuJBQ0uMOZrooaI8eLu2kkI0k,15086
23
24
  cite_agent/workflow_integration.py,sha256=A9ua0DN5pRtuU0cAwrUTGvqt2SXKhEHQbrHx16EGnDM,10910
24
- cite_agent-1.2.6.dist-info/licenses/LICENSE,sha256=XJkyO4IymhSUniN1ENY6lLrL2729gn_rbRlFK6_Hi9M,1074
25
+ cite_agent-1.2.7.dist-info/licenses/LICENSE,sha256=XJkyO4IymhSUniN1ENY6lLrL2729gn_rbRlFK6_Hi9M,1074
25
26
  src/__init__.py,sha256=0eEpjRfjRjOTilP66y-AbGNslBsVYr_clE-bZUzsX7s,40
26
27
  src/services/__init__.py,sha256=pTGLCH_84mz4nGtYMwQES5w-LzoSulUtx_uuNM6r-LA,4257
27
28
  src/services/simple_enhanced_main.py,sha256=IJoOplCqcVUg3GvN_BRyAhpGrLm_WEPy2jmHcNCY6R0,9257
@@ -48,8 +49,8 @@ src/services/research_service/synthesizer.py,sha256=lCcu37PWhWVNphHKaJJDIC-JQ5OI
48
49
  src/services/search_service/__init__.py,sha256=UZFXdd7r6wietQ2kESXEyGffdfBbpghquecQde7auF4,137
49
50
  src/services/search_service/indexer.py,sha256=u3-uwdAfmahWWsdebDF9i8XIyp7YtUMIHzlmBLBnPPM,7252
50
51
  src/services/search_service/search_engine.py,sha256=S9HqQ_mk-8W4d4MUOgBbEGQGV29-eSuceSFvVb4Xk-k,12500
51
- cite_agent-1.2.6.dist-info/METADATA,sha256=hxl9ydPf4V5rIKM3HMNzpzAFEVzstRa5l1r6sH6CKJc,11684
52
- cite_agent-1.2.6.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
53
- cite_agent-1.2.6.dist-info/entry_points.txt,sha256=bJ0u28nFIxQKH1PWQ2ak4PV-FAjhoxTC7YADEdDenFw,83
54
- cite_agent-1.2.6.dist-info/top_level.txt,sha256=TgOFqJTIy8vDZuOoYA2QgagkqZtfhM5Acvt_IsWzAKo,15
55
- cite_agent-1.2.6.dist-info/RECORD,,
52
+ cite_agent-1.2.7.dist-info/METADATA,sha256=T5hBq4Be52Rztz1kOAu5Zlvgkx9OK9RvRa4qhE5hA20,12231
53
+ cite_agent-1.2.7.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
54
+ cite_agent-1.2.7.dist-info/entry_points.txt,sha256=bJ0u28nFIxQKH1PWQ2ak4PV-FAjhoxTC7YADEdDenFw,83
55
+ cite_agent-1.2.7.dist-info/top_level.txt,sha256=TgOFqJTIy8vDZuOoYA2QgagkqZtfhM5Acvt_IsWzAKo,15
56
+ cite_agent-1.2.7.dist-info/RECORD,,