We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Using langchain, I should be able to prompt Ollama's openhermes (or another, faster, model?) to summarise the transcript created by Whisper.
I think these are the relevant Langchain docs.
As long as the Ollama server is running, basic prompting can be achieved by:
from langchain_community.llms import Ollama llm = Ollama(model="llama2") llm("<Prompt here>")
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Using langchain, I should be able to prompt Ollama's openhermes (or another, faster, model?) to summarise the transcript created by Whisper.
I think these are the relevant Langchain docs.
As long as the Ollama server is running, basic prompting can be achieved by:
The text was updated successfully, but these errors were encountered: