File tree Expand file tree Collapse file tree 4 files changed +6
-15
lines changed
Expand file tree Collapse file tree 4 files changed +6
-15
lines changed Original file line number Diff line number Diff line change @@ -116,17 +116,8 @@ publish:
116116 @$(MAKE ) clean
117117 @echo " 🏗️ Building package..."
118118 poetry build
119- @if [ -z " $( PYPI_TOKEN) " ] && [ -z " $( PYPI_TOKEN_FROM_FILE) " ]; then \
120- echo " ❌ Error: PYPI_TOKEN not found" ; \
121- echo " Please either:" ; \
122- echo " 1. Add token to ~/.pypirc or .pypirc: [pypi]" ; \
123- echo " token = pypi_..." ; \
124- echo " 2. Add PYPI_TOKEN=... to .env file" ; \
125- echo " 3. Run: make publish PYPI_TOKEN=your_token_here" ; \
126- exit 1; \
127- fi
128- @echo " 🚀 Publishing to PyPI..." ; \
129- poetry publish --username=__token__ --password=$(or $(PYPI_TOKEN ) ,$(PYPI_TOKEN_FROM_FILE ) )
119+ @echo " 🚀 Publishing to PyPI..."
120+ poetry publish
130121 @echo " ✅ Successfully published to PyPI"
131122
132123# Test publishing
Original file line number Diff line number Diff line change @@ -189,7 +189,7 @@ poetry run mypy dialogchain
189189│ WebSocket │ │ Intent Detection │ │ WebSocket │
190190│ gRPC │ │ Entity Extraction│ │ gRPC │
191191│ CLI │ │ Dialog Management│ │ Message Bus │
192- │ Message Bus │ │ Response Gen │ │ Logging │
192+ │ Message Bus │ │ Response Gen │ │ Logging │
193193└─────────────┘ └──────────────────┘ └─────────────┘
194194```
195195
Original file line number Diff line number Diff line change 11# Simple DialogChain Configuration
22routes :
33 - name : hello_world
4- from : http://0.0.0.0:8000/hello
5- to : log:info
4+ from : timer:5s # Send a message every 5 seconds
5+ to : log:info # Log to console with INFO level
66 processors :
77 - type : transform
88 template : ' {"message": "Hello, World!"}'
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"
44
55[project ]
66name = " dialogchain"
7- version = " 0.1.5 "
7+ version = " 0.1.6 "
88description = " DialogChain - A flexible and extensible dialog processing framework"
99authors = [
1010 {name = " DialogChain Team" , email = " team@dialogchain.org" },
You can’t perform that action at this time.
0 commit comments