From c80e773c60cdabe5376afe106766cf252388f765 Mon Sep 17 00:00:00 2001 From: Meng Zhang Date: Mon, 9 Oct 2023 10:37:52 -0700 Subject: [PATCH] refactor: remove options in Agent --- clients/tabby-agent/src/AgentConfig.ts | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/clients/tabby-agent/src/AgentConfig.ts b/clients/tabby-agent/src/AgentConfig.ts index 339f14b..b7d4fd7 100644 --- a/clients/tabby-agent/src/AgentConfig.ts +++ b/clients/tabby-agent/src/AgentConfig.ts @@ -75,28 +75,16 @@ const configTomlTemplate = `## Tabby agent configuration file ## You can set the server endpoint and request timeout here. # [server] # endpoint = "http://localhost:8080" # http or https URL -# requestTimeout = 30000 # ms ## You can add custom request headers, e.g. for authentication. # [server.requestHeaders] # Authorization = "Bearer eyJhbGciOiJ..........." -## Completion -## You can set the prompt context to send to the server for completion. -# [completion.prompt] -# maxPrefixLines = 20 -# maxSuffixLines = 20 - ## You can set the debounce mode for auto completion requests when typing. # [completion.debounce] # mode = "adaptive" # or "fixed" # interval = 250 # ms, only used when mode is "fixed" -## You can set the timeout for completion requests. -# [completion.timeout] -# auto = 5000 # ms, for auto completion when typing -# manually = 30000 # ms, for manually triggered completion - ## Logs ## You can set the log level here. The log file is located at ~/.tabby-client/agent/logs/. # [logs]