Skip to content
Open
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion integrations/snowflake.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,7 @@ SHOW EXTERNAL ACCESS INTEGRATIONS LIKE 'tembo_api_access_integration';
</Accordion>

<Accordion title="Self-hosted Tembo">
For self-hosted Tembo, replace `https://api.tembo.io` with your deployment's base URL in both the network rule (`VALUE_LIST`) and the Python UDF (`BASE`). The rest of the flow is identical.
For self-hosted Tembo, replace `https://api.tembo.io` with your deployment's public API base URL (for example, `https://tembo.example.com/api/public-api`) in the Python UDF (`BASE`). Update the network rule (`VALUE_LIST`) to allow your deployment's host. The rest of the flow is identical.
</Accordion>

<Accordion title="Rotating the API token">
Expand Down
2 changes: 1 addition & 1 deletion openapi.self-hosted.yml
Original file line number Diff line number Diff line change
Expand Up @@ -552,7 +552,7 @@ paths:
label: cURL
source: |-
curl -s -X POST \
"https://api.tembo.io/session/${SESSION_ID}/messages" \
"https://tembo.example.com/api/public-api/session/${SESSION_ID}/messages" \
-H "Authorization: Bearer ${API_KEY}" \
-H "Content-Type: application/json" \
-d '{"content": "Please add a regression test for this change."}'
Expand Down