File size: 677 Bytes
35676b4 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | # Fix Windows console encoding (emoji support)
$env:PYTHONUTF8 = "1"
[Console]::OutputEncoding = [System.Text.Encoding]::UTF8
$langgraph = "C:\Users\vince\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.11_qbz5n2kfra8p0\LocalCache\local-packages\Python311\Scripts\langgraph.exe"
Write-Host "Starting LangGraph Studio (dev mode)..." -ForegroundColor Cyan
Write-Host ""
Write-Host "Studio UI -> https://smith.langchain.com/studio/?baseUrl=http://127.0.0.1:2024" -ForegroundColor Green
Write-Host "API -> http://127.0.0.1:2024" -ForegroundColor Green
Write-Host "LangSmith -> https://smith.langchain.com" -ForegroundColor Green
Write-Host ""
& $langgraph dev
|