Skip to content
Merged
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
7 changes: 4 additions & 3 deletions docs/deep-search/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<p className= "subtitle">Learn more about Sourcegraph's agentic Code Search tool Deep Search.</p>

<Callout type="note">Deep Search is available for Enterprise and Enterprise Starter customers. It's not supported for BYOK users. Please reach out to your Sourcegraph account team to request access. </Callout>
<Callout type="note">Deep Search is available for Enterprise and Enterprise Starter customers. It's not supported for BYOK users. Please reach out to your Sourcegraph account team to request access.</Callout>

Deep Search is an agentic code search tool that understands natural language questions about your codebase. When a question is submitted, Deep Search performs an in-depth search and returns a detailed answer. The conversation can be continued with follow-up questions to dive deeper into relevant code.

Expand Down Expand Up @@ -61,8 +61,9 @@ Conversation sharing is disabled by default. To enable conversation sharing, ask
```


### Custom model configuration and BYOK (Bring Your Own Key)
Deep Search is only available to customers using Sourcegraph’s built-in model gateway. Customers who configure and access their own models via BYOK cannot use the Deep Search feature.
### Custom model configuration and BYOK (Bring Your Own Key)

Deep Search is only available to customers using the [Sourcegraph Model Provider](/model-provider). Customers who configure and access their own models via BYOK cannot use the Deep Search feature.

## API access

Expand Down
2 changes: 0 additions & 2 deletions docs/sla/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,6 @@ The following policy applies to both our cloud-based (managed instance) and on-p
| 2 | Medium impact: Core features are unavailable or somewhat slowed; workaround exists | Within two business days of identifying the issue | 8 AM to 5 PM PST (Monday-Friday) |
| 3 | Minimal impact: Questions or clarifications regarding features, documentation, or deployments | Within three business days of identifying the issue | 8 AM to 5 PM PST (Monday-Friday) |

<Callout type="note">Cody Free users are not eligible for email Support but can get assistance through our Community Discord.</Callout>

### Minimum Supported Version for Self-Hosted Instances

We support the current major version of the Software and the immediately preceding major version (N minus 1).
Expand Down
30 changes: 0 additions & 30 deletions src/components/Layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -44,35 +44,6 @@ function Header() {
<header
className="sticky top-0 z-50"
>
{/* Cody docs banner */}
{/*isCodyDocs && !isopenCtxDocs && <TopBanner
text="UPDATE: Starting July 23, 2025, we're making changes to Cody Free, Pro, and Enterprise Starter plans."
link="https://sourcegraph.com/blog/changes-to-cody-free-pro-and-enterprise-starter-plans"
linkText="Read here"
textColor="#ffffff"
backgroundColor="#F34E3F"
opacity='0.80'
/>*/}

{/* Pricing docs banner */}
{/*isPricingDocs && !isopenCtxDocs && <TopBanner
text="UPDATE: Starting July 23, 2025, we're making changes to Cody Free, Pro, and Enterprise Starter plans."
link="https://sourcegraph.com/blog/changes-to-cody-free-pro-and-enterprise-starter-plans"
linkText="Read here"
textColor="#ffffff"
backgroundColor="#F34E3F"
opacity='0.80'
/>*/}

{/* Openctx docs banner */}
{/* {isopenCtxDocs && <TopBanner
text="NEW: MCP is the recommended method for adding external context in Cody due to its broad community adoption and extensive tool support."
link="https://sourcegraph.com/docs/cody/capabilities/agentic-context-fetching#mcp-support"
linkText="Read docs to learn more about configuring MCP."
textColor="#ffffff"
backgroundColor="#F34E3F"
/>} */}

<div className={clsx(
'flex flex-none flex-wrap items-center justify-between bg-light-bg px-4 py-6 shadow-md shadow-slate-900/5 transition duration-500 dark:border-dark-border dark:shadow-none sm:px-6 lg:border-b lg:border-light-border lg:px-8',
isScrolled
Expand Down Expand Up @@ -129,7 +100,6 @@ export function Layout({ children }: { children: React.ReactNode }) {
<Header />

{isHomePage && <Hero />}
{/* {isHomePage && <DemoLayout />} */}

<div className="relative mx-auto flex w-full max-w-8xl flex-auto justify-center sm:px-2 lg:px-8 xl:px-12">
<div className="hidden lg:relative lg:block lg:flex-none">
Expand Down