You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// localhost:3284 is the default origin when you open the chat interface in your browser. localhost:3000 and 3001 are used during development.
229
272
{FlagAllowedOrigins, "o", []string{"http://localhost:3284", "http://localhost:3000", "http://localhost:3001"}, "HTTP allowed origins. Use '*' for all, comma-separated list via flag, space-separated list via AGENTAPI_ALLOWED_ORIGINS env var", "stringSlice"},
230
273
{FlagInitialPrompt, "I", "", "Initial prompt for the agent. Recommended only if the agent doesn't support initial prompt in interaction mode. Will be read from stdin if piped (e.g., echo 'prompt' | agentapi server -- my-agent)", "string"},
274
+
{FlagExperimentalACP, "", false, "Use experimental ACP transport instead of PTY", "bool"},
Idint`json:"id" doc:"Unique identifier for the message. This identifier also represents the order of the message in the conversation history."`
@@ -38,6 +54,7 @@ type StatusResponse struct {
38
54
Bodystruct {
39
55
StatusAgentStatus`json:"status" doc:"Current agent status. 'running' means that the agent is processing a message, 'stable' means that the agent is idle and waiting for input."`
40
56
AgentType mf.AgentType`json:"agent_type" doc:"Type of the agent being used by the server."`
57
+
TransportTransport`json:"transport" doc:"Backend transport being used ('acp' or 'pty')."`
0 commit comments