diff --git a/web/i18n/en-US/app.ts b/web/i18n/en-US/app.ts index 27279130b1..26f357e598 100644 --- a/web/i18n/en-US/app.ts +++ b/web/i18n/en-US/app.ts @@ -161,6 +161,10 @@ const translation = { title: 'Opik', description: 'Opik is an open-source platform for evaluating, testing, and monitoring LLM applications.', }, + weave: { + title: 'Weave', + description: 'Weave is an open-source platform for evaluating, testing, and monitoring LLM applications.', + }, inUse: 'In use', configProvider: { title: 'Config ', diff --git a/web/models/app.ts b/web/models/app.ts index b6094b85e9..8b99e552d6 100644 --- a/web/models/app.ts +++ b/web/models/app.ts @@ -1,4 +1,4 @@ -import type { LangFuseConfig, LangSmithConfig, OpikConfig, TracingProvider } from '@/app/(commonLayout)/app/(appDetailLayout)/[appId]/overview/tracing/type' +import type { LangFuseConfig, LangSmithConfig, OpikConfig, TracingProvider, WeaveConfig } from '@/app/(commonLayout)/app/(appDetailLayout)/[appId]/overview/tracing/type' import type { App, AppSSO, AppTemplate, SiteConfig } from '@/types/app' import type { Dependency } from '@/app/components/plugins/types' @@ -167,5 +167,5 @@ export type TracingStatus = { export type TracingConfig = { tracing_provider: TracingProvider - tracing_config: LangSmithConfig | LangFuseConfig | OpikConfig + tracing_config: LangSmithConfig | LangFuseConfig | OpikConfig | WeaveConfig }