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
/** An explicit id for the model, otherwise the API will return a response with an auto-generated conversation model id. */
15
+
publicvar_id:String?
16
+
/** Name of the LLM model offered by OpenAI, Cloudflare or vLLM */
17
+
publicvarmodelName:String
18
+
/** The LLM service's API Key */
19
+
publicvarapiKey:String?
20
+
/** Typesense collection that stores the historical conversations */
21
+
publicvarhistoryCollection:String?
22
+
/** LLM service's account ID (only applicable for Cloudflare) */
23
+
publicvaraccountId:String?
24
+
/** The system prompt that contains special instructions to the LLM */
25
+
publicvarsystemPrompt:String?
26
+
/** Time interval in seconds after which the messages would be deleted. Default: 86400 (24 hours) */
27
+
publicvarttl:Int?
28
+
/** The maximum number of bytes to send to the LLM in every API call. Consult the LLM's documentation on the number of bytes supported in the context window. */
/** An explicit id for the model, otherwise the API will return a response with an auto-generated conversation model id. */
15
+
publicvar_id:String
16
+
/** Name of the LLM model offered by OpenAI, Cloudflare or vLLM */
17
+
publicvarmodelName:String?
18
+
/** The LLM service's API Key */
19
+
publicvarapiKey:String?
20
+
/** Typesense collection that stores the historical conversations */
21
+
publicvarhistoryCollection:String?
22
+
/** LLM service's account ID (only applicable for Cloudflare) */
23
+
publicvaraccountId:String?
24
+
/** The system prompt that contains special instructions to the LLM */
25
+
publicvarsystemPrompt:String?
26
+
/** Time interval in seconds after which the messages would be deleted. Default: 86400 (24 hours) */
27
+
publicvarttl:Int?
28
+
/** The maximum number of bytes to send to the LLM in every API call. Consult the LLM's documentation on the number of bytes supported in the context window. */
/** An explicit id for the model, otherwise the API will return a response with an auto-generated conversation model id. */
15
+
publicvar_id:String?
16
+
/** Name of the LLM model offered by OpenAI, Cloudflare or vLLM */
17
+
publicvarmodelName:String?
18
+
/** The LLM service's API Key */
19
+
publicvarapiKey:String?
20
+
/** Typesense collection that stores the historical conversations */
21
+
publicvarhistoryCollection:String?
22
+
/** LLM service's account ID (only applicable for Cloudflare) */
23
+
publicvaraccountId:String?
24
+
/** The system prompt that contains special instructions to the LLM */
25
+
publicvarsystemPrompt:String?
26
+
/** Time interval in seconds after which the messages would be deleted. Default: 86400 (24 hours) */
27
+
publicvarttl:Int?
28
+
/** The maximum number of bytes to send to the LLM in every API call. Consult the LLM's documentation on the number of bytes supported in the context window. */
0 commit comments