opensymphony 1.7.0

A Rust implementation of the OpenAI Symphony orchestration design
Documentation
# OpenSymphony Web Client Environment Variables
# Copy this file to .env.local for local development.

# Gateway URL for the web client.
# - When omitted or empty, the app assumes "gateway-served" mode
#   and targets the same origin for API calls.
# - Set to an explicit URL for separately deployed mode:
#   VITE_GATEWAY_URL=https://gateway.example.com
VITE_GATEWAY_URL=

# Base path for static assets.
# - Default: "/app/" (served under /app/* by the gateway).
# - Set to "/" when deploying the web app at the root of a domain.
VITE_APP_BASE_PATH=/app/

# Gateway URL used by the Vite dev-server proxy.
# - The dev server proxies /api to this URL.
# - Default: "http://127.0.0.1:3000".
VITE_DEV_GATEWAY_URL=http://127.0.0.1:3000