-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[docs]: Revamp embedchain docs (#799)
- Loading branch information
Showing
68 changed files
with
1,183 additions
and
681 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
llm: | ||
provider: anthropic | ||
model: 'claude-instant-1' | ||
config: | ||
temperature: 0.5 | ||
max_tokens: 1000 | ||
top_p: 1 | ||
stream: false |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
llm: | ||
provider: cohere | ||
model: large | ||
config: | ||
temperature: 0.5 | ||
max_tokens: 1000 | ||
top_p: 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
app: | ||
config: | ||
id: 'full-stack-app' | ||
|
||
llm: | ||
provider: openai | ||
model: 'gpt-3.5-turbo' | ||
config: | ||
temperature: 0.5 | ||
max_tokens: 1000 | ||
top_p: 1 | ||
stream: false | ||
template: | | ||
Use the following pieces of context to answer the query at the end. | ||
If you don't know the answer, just say that you don't know, don't try to make up an answer. | ||
$context | ||
Query: $query | ||
Helpful Answer: | ||
system_prompt: | | ||
Act as William Shakespeare. Answer the following questions in the style of William Shakespeare. | ||
vectordb: | ||
provider: chroma | ||
config: | ||
collection_name: 'full-stack-app' | ||
dir: db | ||
allow_reset: true | ||
|
||
embedder: | ||
provider: openai | ||
config: | ||
model: 'text-embedding-ada-002' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
llm: | ||
provider: gpt4all | ||
model: 'orca-mini-3b.ggmlv3.q4_0.bin' | ||
config: | ||
temperature: 0.5 | ||
max_tokens: 1000 | ||
top_p: 1 | ||
stream: false | ||
|
||
embedder: | ||
provider: gpt4all | ||
config: | ||
model: 'all-MiniLM-L6-v2' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
llm: | ||
provider: huggingface | ||
model: 'google/flan-t5-xxl' | ||
config: | ||
temperature: 0.5 | ||
max_tokens: 1000 | ||
top_p: 0.5 | ||
stream: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
llm: | ||
provider: jina | ||
config: | ||
temperature: 0.5 | ||
max_tokens: 1000 | ||
top_p: 1 | ||
stream: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
llm: | ||
provider: llama2 | ||
model: 'a16z-infra/llama13b-v2-chat:df7690f1994d94e96ad9d568eac121aecf50684a0b0963b25a41cc40061269e5' | ||
config: | ||
temperature: 0.5 | ||
max_tokens: 1000 | ||
top_p: 0.5 | ||
stream: false |
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
llm: | ||
provider: vertexai | ||
model: 'chat-bison' | ||
config: | ||
temperature: 0.5 | ||
top_p: 0.5 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
install: | ||
npm i -g mintlify | ||
|
||
run_local: | ||
mintlify dev | ||
|
||
troubleshoot: | ||
mintlify install | ||
|
||
.PHONY: install run_local troubleshoot |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<CardGroup cols={3}> | ||
<Card title="Slack" icon="slack" href="https://join.slack.com/t/embedchain/shared_invite/zt-22uwz3c46-Zg7cIh5rOBteT_xe1jwLDw" color="#4A154B"> | ||
Join our slack community | ||
</Card> | ||
<Card title="Discord" icon="discord" href="https://discord.gg/6PzXDgEjG5" color="#7289DA"> | ||
Join our discord community | ||
</Card> | ||
<Card title="Schedule a call" icon="calendar" href="https://cal.com/taranjeetio/ec"> | ||
Schedule a call with Embedchain founder | ||
</Card> | ||
</CardGroup> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<Tip> | ||
If you can't find the specific data source, please feel free to request through one of the following channels and help us prioritize. | ||
|
||
<CardGroup cols={2}> | ||
<Card title="Slack" icon="slack" href="https://join.slack.com/t/embedchain/shared_invite/zt-22uwz3c46-Zg7cIh5rOBteT_xe1jwLDw" color="#4A154B"> | ||
Let us know on our slack community | ||
</Card> | ||
<Card title="Discord" icon="discord" href="https://discord.gg/6PzXDgEjG5" color="#7289DA"> | ||
Let us know on discord community | ||
</Card> | ||
<Card title="GitHub" icon="github" href="https://github.com/embedchain/embedchain/issues/new?assignees=&labels=&projects=&template=feature_request.yml" color="#181717"> | ||
Open an issue on our GitHub | ||
</Card> | ||
<Card title="Schedule a call" icon="calendar" href="https://cal.com/taranjeetio/ec"> | ||
Schedule a call with Embedchain founder | ||
</Card> | ||
</CardGroup> | ||
</Tip> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<Tip> | ||
If you can't find the specific LLM you need, no need to fret. We're continuously expanding our support for additional LLMs, and you can help us prioritize by opening an issue on our GitHub or simply reaching out to us on our Slack or Discord community. | ||
|
||
<CardGroup cols={2}> | ||
<Card title="Slack" icon="slack" href="https://join.slack.com/t/embedchain/shared_invite/zt-22uwz3c46-Zg7cIh5rOBteT_xe1jwLDw" color="#4A154B"> | ||
Let us know on our slack community | ||
</Card> | ||
<Card title="Discord" icon="discord" href="https://discord.gg/6PzXDgEjG5" color="#7289DA"> | ||
Let us know on discord community | ||
</Card> | ||
<Card title="GitHub" icon="github" href="https://github.com/embedchain/embedchain/issues/new?assignees=&labels=&projects=&template=feature_request.yml" color="#181717"> | ||
Open an issue on our GitHub | ||
</Card> | ||
<Card title="Schedule a call" icon="calendar" href="https://cal.com/taranjeetio/ec"> | ||
Schedule a call with Embedchain founder | ||
</Card> | ||
</CardGroup> | ||
</Tip> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<Tip> | ||
If you can't find the specific vector database, please feel free to request through one of the following channels and help us prioritize. | ||
|
||
<CardGroup cols={2}> | ||
<Card title="Slack" icon="slack" href="https://join.slack.com/t/embedchain/shared_invite/zt-22uwz3c46-Zg7cIh5rOBteT_xe1jwLDw" color="#4A154B"> | ||
Let us know on our slack community | ||
</Card> | ||
<Card title="Discord" icon="discord" href="https://discord.gg/6PzXDgEjG5" color="#7289DA"> | ||
Let us know on discord community | ||
</Card> | ||
<Card title="GitHub" icon="github" href="https://github.com/embedchain/embedchain/issues/new?assignees=&labels=&projects=&template=feature_request.yml" color="#181717"> | ||
Open an issue on our GitHub | ||
</Card> | ||
<Card title="Schedule a call" icon="calendar" href="https://cal.com/taranjeetio/ec"> | ||
Schedule a call with Embedchain founder | ||
</Card> | ||
</CardGroup> | ||
</Tip> |
Oops, something went wrong.