Skip to content

Toronto Accelerationists

Presentation

New Description

There is an old Chinese saying, "talk does not grow rice". It is easier to talk about AI than build something that integrate into people's lives. Why talk about what can be when you can be the change you want to see in the world.

Change requires knowledge, skills, and coordination, with all this information at our fingertips knowing what to ignore is more important than knowing what one should know.

So let's get our values articulated so we can converse and build a future worth getting excited about.

OG Description

Join the Discord: https://discord.gg/j9DVjpguwd

A community for builders to come together, share what they are building, get feedback, learn new skills, and explore the ideas that will shape the next 1000 years of humanity.

e/acc or Effective Accelerationisim started as a meme on twitter that has not evolved into an online subculture that promotes building, technocapital, and the preservation of consciousness as a force within the universe.

We have both online and in person meetups tbd

Ai meetup fixes

  • Get friends and Kromar to do tutorial 
  • Research YouTube videos
  • Epic example demo people can use 

Langchain 

  • Have a frontend for people to play with embeddings 
  • Have a syncing functionality to share sets of embeddings as collections
  • Do the langchain tutorial on the browser

  • Flowise Presentation

Discussion Group

  • What is Accelerationism?
  • What AI sci fi future do you want to come true?

Notes

Intros

  • What's your name
  • What do you use AI for already
  • What do you want to use AI for
  • What do you want to build

My Answer

  • Paul Mullins
  • What do you use AI for already
    • Replaced Stack overflow
    • Use Recipes
    • Summarize PDF documents
  • What do you want to use AI for
    • Quiz me on the media I consume
    • Ingest data into a knowledge graph
  • What do I want to build
    • The Daemon

Accelerationisim

  • We build shit

Outline

  • What are LLMs (Large Language Model)
  • What is a Vector
  • What is an Embedding
  • What is a Vector Database
  • Text Chunking
  • What is RAG

Langchain

  • What is LangChain
    • LLM API's
    • Embeddings API
    • Vector Databases
    • LLM Prompt Chains
    • RAG

Tutorial Steps

  • Query Ollama or OpenAI
    • Curl
    • Langchain
  • Document Loaders
    • PDF
    • Text Files
    • HTML Pages
  • Vector Databases

 bash
curl https://ollama.newatlantis.top/api/generate \
--location --insecure --request POST \
--header 'Content-Type: application/json' \
--data-raw '{
  "model": "mistral:7b",
  "prompt": "How was the earth created?",
  "stream": false
}'


curl https://ollama.newatlantis.top/api/generate \
--location --insecure --request POST \
--header 'Content-Type: application/json' \
--data-raw '{
  "model": "llama2-uncensored",
  "prompt": "How was the earth created?",
  "stream": false
}'