Giter Site home page Giter Site logo

fortune's Introduction

fortune

A super simple Django site recreating the unix fortune command using an LLM as an infinite fortune creator. (https://en.wikipedia.org/wiki/Fortune_(Unix))

Uses https://pypi.org/project/chatgptpy/ to communicate with a locally hosted LLM server or LLM server on the local network that uses the OpenAI api format. (Requires Python 3.9.x or newer.)

First Time Setup

sudo apt-get install python3.11

sudo apt install python3.11-venv

python3.11 -m venv env

pip install django

pip install chatgptpy

source env/bin/activate && cd fortune

django-admin startproject fortune

python manage.py migrate

Add to fortune/settings.py:

APPEND_SLASH=True

DEBUG=False if prod, DEBUG=True if dev.

ALLOWED_HOSTS=[
    '127.0.0.1',
    'fortune.whitney.rip'
]

Visible at http://127.0.0.1:8000

Development

python manage.py migrate && python manage.py runserver

Deployment via Docker

docker-compose build && docker-compose up -d && docker logs -f fortune

fortune's People

Contributors

runyanjake avatar

Stargazers

Vishesh Gupta avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.