Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: add support regions note #323

Merged
merged 2 commits into from
Jun 19, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -44,5 +44,6 @@ The overall architecture looks like this:
## Requirements

- **You must be on AWS or GCP.** We do not support Azure at this time as we require S3 or GCS for blob storage.
- To use private endpoints, ensure that your VPC is in a ClickHouse Cloud supported [region](https://clickhouse.com/docs/en/cloud/reference/supported-regions). Otherwise, you will need to use a public endpoint we will secure with firewall rules.
- You must have a VPC that can connect to the LangSmith-managed Clickhouse service. You will need to work with our team to set up the necessary networking.
- You must have a LangSmith self-hosted instance running. You can use our managed ClickHouse service with both [Kubernetes](./installation/kubernetes) and [Docker](./installation/docker) installations.

Unchanged files with check annotations Beta

import React from "react";
import { CodeTabs } from "./InstructionsWithCode";
export function ClientInstallationCodeTabs() {

Check warning on line 4 in src/components/ClientInstallation.js

GitHub Actions / Check linting

Prefer default export on a file with single export
return (
<CodeTabs
groupId="client-language"
);
}
export function ConfigureSDKEnvironmentCodeTabs({}) {

Check warning on line 158 in src/components/QuickStart.js

GitHub Actions / Check linting

Unexpected empty object pattern
return (
<CodeTabs
tabs={[
);
}
export function ConfigureEnvironmentCodeTabs({}) {

Check warning on line 173 in src/components/QuickStart.js

GitHub Actions / Check linting

Unexpected empty object pattern
return (
<CodeTabs
tabs={[
);
}
export function LangChainQuickStartCodeTabs({}) {

Check warning on line 188 in src/components/QuickStart.js

GitHub Actions / Check linting

Unexpected empty object pattern
const simpleTSBlock = `import { ChatOpenAI } from "@langchain/openai";
import { ChatPromptTemplate } from "@langchain/core/prompts";
import { StringOutputParser } from "@langchain/core/output_parsers";
const context = "During this morning's meeting, we solved all world conflict."
await chain.invoke({ question: question, context: context });`;
const alternativeTSBlock = `import { Client } from "langsmith";

Check warning on line 206 in src/components/QuickStart.js

GitHub Actions / Check linting

'alternativeTSBlock' is assigned a value but never used
import { LangChainTracer } from "langchain/callbacks";
const client = new Client({
print(tok, end="")
# See an example run at: https://smith.langchain.com/public/3e853ad8-77ce-404d-ad4c-05726851ad0f/r`);
export function TraceableQuickStartCodeBlock({}) {

Check warning on line 284 in src/components/QuickStart.js

GitHub Actions / Check linting

Unexpected empty object pattern
return (
<CodeBlock
className={TraceableQuickStart.value}
);
}
export function TraceableThreadingCodeBlock({}) {

Check warning on line 295 in src/components/QuickStart.js

GitHub Actions / Check linting

Unexpected empty object pattern
return (
<CodeBlock
className={TraceableQuickStart.value}
);
}
export function RunTreeQuickStartCodeTabs({}) {

Check warning on line 369 in src/components/QuickStart.js

GitHub Actions / Check linting

Unexpected empty object pattern
return (
<CodeTabs
tabs={[
import React from "react";
import { CodeTabs, PythonBlock, TypeScriptBlock } from "./InstructionsWithCode";
export function RunTreeExampleCodeTabs() {

Check warning on line 4 in src/components/RunTree.js

GitHub Actions / Check linting

Prefer default export on a file with single export
return (
<CodeTabs
tabs={[
import TabItem from "@theme/TabItem";
import Tabs from "@theme/Tabs";
export function AccessRunIdBlock({}) {

Check warning on line 6 in src/components/TracingFaq.js

GitHub Actions / Check linting

Prefer default export on a file with single export
const callbackPythonBlock = `from langchain import chat_models, prompts, callbacks
chain = (
prompts.ChatPromptTemplate.from_template("Say hi to {name}")