Skip to content

Commit

Permalink
0.2.7 with changelog
Browse files Browse the repository at this point in the history
- 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
rychlis committed Dec 2, 2024
1 parent c1d9022 commit 8bb3b40
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 4 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
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)
4 changes: 2 additions & 2 deletions charts/langtail/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.2.2
version: 0.2.7

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
# It is recommended to use it with quotes.
appVersion: "1.0.0"
appVersion: "1.0.3"
4 changes: 3 additions & 1 deletion charts/langtail/templates/configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@ data:
SKIP_ENV_VALIDATION: {{ .Values.SKIP_ENV_VALIDATION | toString | quote }}
SENTRY_ENABLED: {{ .Values.SENTRY_ENABLED | toString | quote }}
AUTH_URL: {{ .Values.AUTH_URL | toString | quote }}
PROMPT_API_URL: {{ .Values.PROMPT_API_URL | toString | quote }}
GITHUB_ID: {{ .Values.GITHUB_ID | toString | quote }}
GOOGLE_ID: {{ .Values.GOOGLE_ID | toString | quote }}
EMAIL_FROM: {{ .Values.EMAIL_FROM | toString | quote }}

WEB_APP_INTERNAL_URL: {{ .Values.WEB_APP_INTERNAL_URL | toString | quote }}
PROMPT_API_URL: {{ .Values.PROMPT_API_URL | toString | quote }}
5 changes: 4 additions & 1 deletion charts/langtail/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 8bb3b40

Please sign in to comment.