Skip to content

Instantly share code, notes, and snippets.

@leolivier
leolivier / .hyper.js
Created May 19, 2019 09:17
Problem with hyper.js
// Future versions of Hyper may add additional config options,
// which will not automatically be merged into this file.
// See https://hyper.is#cfg for all currently supported options.
module.exports = {
config: {
// choose either `'stable'` for receiving highly polished,
// or `'canary'` for less polished but more frequent updates
updateChannel: 'stable',
@leolivier
leolivier / demorag.ipynb
Created October 8, 2023 18:11
demoRAG.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@leolivier
leolivier / ollama-litellm-autogen.md
Created December 2, 2023 10:23
ollama + litellm + autogen simplified
  1. install ollama

run ollama server

  1. ollama serve
  2. open new terminal

install models you want

  1. ollama pull mistral
  2. ollama pull codellama

install python modules

  1. conda create -n autogen python=3.11
  2. conda activate autogen