Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings
Discussion options

e6e6a9b7bd3120a0435bf87b645fc770 what can i dp?
You must be logged in to vote

Replies: 2 comments

Comment options

Uploading 6bdde7b1b2b090fc7a487c5047b3b675.png…

You must be logged in to vote
0 replies
Comment options

Hello @langsmith. The error in your screenshot is a 403 Forbidden from LangSmith's API:

Failed to POST https://api.smith.langchain.com/runs/multipart
HTTPError('403 Client Error: Forbidden')

This means your LangSmith API key is missing, wrong, or expired. Here's what to do:

1. Get a fresh API key → go to https://smith.langchain.com → Settings → API Keys → Create API Key

2. Set these environment variables:

export LANGCHAIN_API_KEY="ls__your_key_here"
export LANGCHAIN_TRACING_V2="true"

Or if you don't need LangSmith tracing at all, just disable it:

export LANGCHAIN_TRACING_V2="false"

or in Python before your code runs:

import os
os.environ["LANGCHAIN_TRACING_V2"] = "false"
You must be logged in to vote
0 replies
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
🙏
Q&A
Labels
None yet
2 participants
Morty Proxy This is a proxified and sanitized view of the page, visit original site.