Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ DESKTOP_RELEASE_TAURI_CONFIG ?= src-tauri/tauri.macos.release.conf.json
DESKTOP_RELEASE_TAURI_CONFIG_FLAGS ?= --config $(DESKTOP_RELEASE_TAURI_CONFIG) $(if $(LIVEAGENT_TAURI_VERSION_CONFIG),--config $(LIVEAGENT_TAURI_VERSION_CONFIG))

DEV_GATEWAY_TOKEN ?= dev-token
DEV_GATEWAY_HTTP_ADDR ?= :8080
DEV_GATEWAY_HTTP_ADDR ?= :50052
DEV_GATEWAY_GRPC_ADDR ?= :50051
DEV_WEBUI_PROXY_API ?= http://localhost:8080
DEV_WEBUI_PROXY_API ?= http://localhost:50052
GATEWAY_DOCKER_IMAGE ?= liveagent-gateway:local
RELEASE_TAG ?=

Expand Down
1 change: 1 addition & 0 deletions crates/agent-gateway/internal/handler/types.go
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ type ChatRequestBody struct {
Workdir string `json:"workdir,omitempty"`
SelectedSystemTools []string `json:"selected_system_tools,omitempty"`
UploadedFiles []ChatUploadedFileBody `json:"uploaded_files,omitempty"`
QueuePolicy string `json:"queue_policy,omitempty"`
}

type CancelChatRequestBody struct {
Expand Down
Loading
Loading