langchain/docs/docs_skeleton/src/theme/SearchBar.js
Nicolas 8ed013d278
docs: Mendable Search Improvements (#11199)
Improvements to the Mendable UI, more accurate responses, and bug fixes.
2023-09-28 15:57:04 -07:00

36 lines
1022 B
JavaScript

/**
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
* @format
*/
import React from "react";
import { MendableSearchBar } from "@mendable/search";
import useDocusaurusContext from "@docusaurus/useDocusaurusContext";
export default function SearchBarWrapper() {
const {
siteConfig: { customFields },
} = useDocusaurusContext();
return (
<div className="mendable-search">
<MendableSearchBar
anon_key={customFields.mendableAnonKey}
style={{ accentColor: "#4F956C", darkMode: false }}
placeholder="Search"
dialogPlaceholder="How do I use a LLM Chain?"
messageSettings={{ openSourcesInNewTab: false, prettySources: true }}
searchBarStyle={{
borderColor: "#9d9ea1",
color:"#9d9ea1"
}}
askAIText="Ask Mendable AI"
isPinnable
showSimpleSearch
/>
</div>
);
}