-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: converts answer body to url encoded
- Loading branch information
1 parent
66186f5
commit 0d7d535
Showing
3 changed files
with
17 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
export const MICROSECONDS_BASE = 1_000_000; | ||
export const MICROSECONDS_BASE = 1_000_000 | ||
|
||
export const DEFAULT_TELEMETRY_FLUSH_INTERVAL = 5000; | ||
export const DEFAULT_TELEMETRY_FLUSH_INTERVAL = 5000 | ||
|
||
export const DEFAULT_TELEMETRY_FLUSH_SIZE = 25; | ||
export const DEFAULT_TELEMETRY_FLUSH_SIZE = 25 | ||
|
||
export const ORAMA_PROXY_ENDPOINT = "https://secure-proxy.orama.run"; | ||
export const ORAMA_PROXY_INIT_ENDPOINT = "/init"; | ||
export const ORAMA_PROXY_CHAT_ENDPOINT = "/chat"; | ||
export const ORAMA_PROXY_SUMMARY_ENDPOINT = "/summary"; | ||
export const ORAMA_PROXY_EMBEDDINGS_ENDPOINT = "/query"; | ||
export const ORAMA_PROXY_ENDPOINT = 'https://secure-proxy.orama.run' | ||
export const ORAMA_PROXY_INIT_ENDPOINT = '/init' | ||
export const ORAMA_PROXY_CHAT_ENDPOINT = '/chat' | ||
export const ORAMA_PROXY_SUMMARY_ENDPOINT = '/summary' | ||
export const ORAMA_PROXY_EMBEDDINGS_ENDPOINT = '/query' |