Back to Mem0

Together

embedchain/notebooks/together.ipynb

2.0.11.1 KB
Original Source

Cookbook for using Cohere with Embedchain

Step-1: Install embedchain package

python
!pip install embedchain[together]

You can find OPENAI_API_KEY on your OpenAI dashboard and TOGETHER_API_KEY key on your Together dashboard.

python
import os
from embedchain import App

os.environ["OPENAI_API_KEY"] = ""
os.environ["TOGETHER_API_KEY"] = ""

Step-3 Create embedchain app and define your config

python
app = App.from_config(config={
    "provider": "together",
    "config": {
        "model": "mistralai/Mixtral-8x7B-Instruct-v0.1",
        "temperature": 0.5,
        "max_tokens": 1000
    }
})

Step-4: Add data sources to your app

python
app.add("https://www.forbes.com/profile/elon-musk")
python
while(True):
    question = input("Enter question: ")
    if question in ['q', 'exit', 'quit']:
        break
    answer = app.query(question)
    print(answer)