embedchain/notebooks/cohere.ipynb
!pip install embedchain[cohere]
You can find OPENAI_API_KEY on your OpenAI dashboard and COHERE_API_KEY key on your Cohere dashboard.
import os
from embedchain import App
os.environ["OPENAI_API_KEY"] = "sk-xxx"
os.environ["COHERE_API_KEY"] = "xxx"
app = App.from_config(config={
"provider": "cohere",
"config": {
"model": "gptd-instruct-tft",
"temperature": 0.5,
"max_tokens": 1000,
"top_p": 1,
"stream": False
}
})
app.add("https://www.forbes.com/profile/elon-musk")
while(True):
question = input("Enter question: ")
if question in ['q', 'exit', 'quit']:
break
answer = app.query(question)
print(answer)