-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Using Langtail 1.0.3 - Mixpanel frontend tracking is disabled by default - Add WEB_APP_INTERNAL_URL default with the default ClusterIP service (fixes hosted function calls and large test runs) - Fixed workspace invite URL generation domain - Less verbose logging of LLM calls (selected model JSON)
- Loading branch information
Showing
4 changed files
with
18 additions
and
4 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# Changelog | ||
|
||
## 0.2.7 | ||
|
||
- Using Langtail 1.0.3 | ||
- Mixpanel frontend tracking is disabled by default | ||
- Add WEB_APP_INTERNAL_URL default with the default ClusterIP service (fixes hosted function calls and large test runs) | ||
- Fixed workspace invite URL generation domain | ||
- Less verbose logging of LLM calls (selected model JSON) |
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 |
---|---|---|
|
@@ -121,11 +121,14 @@ extraManifests: [] | |
SKIP_ENV_VALIDATION: "false" | ||
SENTRY_ENABLED: "true" | ||
AUTH_URL: "https://default-auth-url.com" | ||
PROMPT_API_URL: "http://langtail:3000/api/prompt-api" # Using the default service name and port | ||
GITHUB_ID: "default-github-id" | ||
GOOGLE_ID: "default-google-id" | ||
EMAIL_FROM: "[email protected]" | ||
|
||
# Internal URLs when Langtail needs to call itself | ||
WEB_APP_INTERNAL_URL: "http://langtail:3000" # Using the default service name and port | ||
PROMPT_API_URL: "http://langtail:3000/api/prompt-api" # Using the default service name and port | ||
|
||
# Secret ENVs | ||
LANGTAIL_LICENSE_KEY: "your-license-key" | ||
DATABASE_URL: "mysql://user:password@localhost:3306/database" | ||
|