File tree Expand file tree Collapse file tree 3 files changed +12
-4
lines changed
Expand file tree Collapse file tree 3 files changed +12
-4
lines changed Original file line number Diff line number Diff line change @@ -10,13 +10,13 @@ Ensure you have PsychoPy installed:
1010
1111 pip install psychopy
1212
13- Then install psyflow (replace with actual package name if on PyPI) :
13+ Then install psyflow from PyPI:
1414
15- pip install psyflow
15+ pip install psyflow==0.1.0
1616
1717Or if you’re working from source:
1818
19- git clone https://github.com/your-org /psyflow.git
19+ git clone https://github.com/TaskBeacon /psyflow.git
2020 cd psyflow
2121 pip install -e .
2222
Original file line number Diff line number Diff line change @@ -18,8 +18,12 @@ dependencies = [
1818 " pyyaml" ,
1919 " pyserial" ,
2020 " edge-tts" ,
21+ " requests" ,
22+ " tiktoken" ,
23+ " openai" ,
24+ " google-generativeai" ,
2125]
2226dynamic = [" entry-points" ]
2327
2428[project .scripts ]
25- psyflow-init = " psyflow.cli:climain"
29+ psyflow-init = " psyflow.cli:climain"
Original file line number Diff line number Diff line change @@ -26,6 +26,10 @@ def read_version() -> str:
2626 "pyyaml" , # for YAML configuration parsing
2727 "pyserial" , # for serial port communication
2828 "edge-tts" , # for text-to-speech support
29+ "requests" , # for HTTP requests
30+ "tiktoken" , # for token counting
31+ "openai" , # OpenAI API client
32+ "google-generativeai" , # Google GenAI SDK
2933 ],
3034 entry_points = {
3135 "console_scripts" : [
You can’t perform that action at this time.
0 commit comments