Skip to content

Commit

Permalink
first commit
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolasbeglinger committed Jan 4, 2024
0 parents commit 84257b0
Show file tree
Hide file tree
Showing 19 changed files with 649 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# Python
*.pyc
*~
__pycache__

# Env
.env
myvenv/
venv/

# Datenbank
db.sqlite3

# Static Ordner im Projektverzeichnis
/static/

# macOS
._*
.DS_Store
.fseventsd
.Spotlight-V100

# Windows
Thumbs.db*
ehthumbs*.db
[Dd]esktop.ini
$RECYCLE.BIN/

# Visual Studio
.vscode/
.history/
*.code-workspace
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# noeldeke-gpt
Empty file added chat/__init__.py
Empty file.
3 changes: 3 additions & 0 deletions chat/admin.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
from django.contrib import admin

# Register your models here.
6 changes: 6 additions & 0 deletions chat/apps.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
from django.apps import AppConfig


class ChatConfig(AppConfig):
default_auto_field = 'django.db.models.BigAutoField'
name = 'chat'
290 changes: 290 additions & 0 deletions chat/handbuch.txt

Large diffs are not rendered by default.

Empty file added chat/migrations/__init__.py
Empty file.
3 changes: 3 additions & 0 deletions chat/models.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
from django.db import models

# Create your models here.
9 changes: 9 additions & 0 deletions chat/rules.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
- Du hilfst Gästen des Ferienhauses Nöldeke in Braunwald mithilfe des Handbuches, das in dieser Anfrage enthalten ist.
- Duze die Gäste (keine "sie" Form).
- Gib keine Auskunft über Informationen, die nicht explizit im Handbuch erwähnt sind.
- Wenn etwas nicht im Handbuch ist, sage, dass die Information nicht verfügbar ist und hänge den Satz "Sorry gä!" an. Du kannst auch darauf hinweisen, dass Jacques sicher gerne schon wieder von dir gestört wird.
- Keine "Sorry gä!"'s wenn du etwas gewusst hast.
- Sprich vom Nöldeke wenn möglich mit direktem Artikel ("Das Nöldeke" anstatt "Nöldeke", oder "Im Nöldeke" statt "In Nöldeke")
- Gib Infos direkt weiter (keine "im Handbuch steht geschrieben, dass...")
- Achte darauf, dass du detailliert antwortest. Auch relevante Tipps&Tricks sind wichtig.
Handbuch:
58 changes: 58 additions & 0 deletions chat/templates/chat/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
<!DOCTYPE html>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
color: #333;
text-align: center;
padding: 20px;
}

h1, h2 {
color: #444;
}

form {
margin: 20px auto;
width: 80%;
}

textarea {
width: 100%;
padding: 10px;
margin: 10px 0;
border: 1px solid #ddd;
border-radius: 4px;
box-sizing: border-box; /* So that width includes padding */
}

button {
background-color: #5cb85c;
color: white;
padding: 10px 20px;
border: none;
border-radius: 4px;
cursor: pointer;
}

button:hover {
background-color: #4cae4c;
}
</style>


<html>
<head>
<title>NöldekeGPT</title>
</head>
<body>
<h1>NöldekeGPT</h1>
<h2>Ich helfe Gästen des Nöldeke in Braunwald mit Informationen aus dem Handbuch (Version: 4.3). Verbesserungsvorschläge können gerne Nicolas gemeldet werden.</h2>
<form method="post">
{% csrf_token %}
<textarea name="user_input" placeholder="Frag mich etwas..." rows="4" cols="50"></textarea>
<button type="submit">Send</button>
</form>
<p>Response: {{ response }}</p>
</body>
</html>
3 changes: 3 additions & 0 deletions chat/tests.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
from django.test import TestCase

# Create your tests here.
6 changes: 6 additions & 0 deletions chat/urls.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
from django.urls import path
from . import views

urlpatterns = [
path('', views.index, name='index'),
]
35 changes: 35 additions & 0 deletions chat/views.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
from django.shortcuts import render
from django.conf import settings
from openai import OpenAI

client = OpenAI(api_key=settings.OPENAI_API_KEY)

def index(request):
response_message = ""

# Read the handbook file
with open('chat/handbuch.txt', 'r') as file:
handbuch = file.read()

with open('chat/rules.txt', 'r') as file:
rules = file.read()

if request.method == "POST":
user_input = request.POST.get('user_input')

# Combining handbook context with user input
combined_input = rules + "\n\n" + handbuch + "\n\nQuery:\n" + user_input

try:
completion = client.chat.completions.create(
model="gpt-4-1106-preview",
messages = [
{'role': 'user', 'content': combined_input}
],
temperature = 0 )
response_message = completion.choices[0].message.content

except Exception as e:
response_message = f"An error occurred: {str(e)}"

return render(request, 'chat/index.html', {'response': response_message})
22 changes: 22 additions & 0 deletions manage.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
#!/usr/bin/env python
"""Django's command-line utility for administrative tasks."""
import os
import sys


def main():
"""Run administrative tasks."""
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'noeldekegpt.settings')
try:
from django.core.management import execute_from_command_line
except ImportError as exc:
raise ImportError(
"Couldn't import Django. Are you sure it's installed and "
"available on your PYTHONPATH environment variable? Did you "
"forget to activate a virtual environment?"
) from exc
execute_from_command_line(sys.argv)


if __name__ == '__main__':
main()
Empty file added noeldekegpt/__init__.py
Empty file.
16 changes: 16 additions & 0 deletions noeldekegpt/asgi.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
"""
ASGI config for noeldekegpt project.
It exposes the ASGI callable as a module-level variable named ``application``.
For more information on this file, see
https://docs.djangoproject.com/en/5.0/howto/deployment/asgi/
"""

import os

from django.core.asgi import get_asgi_application

os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'noeldekegpt.settings')

application = get_asgi_application()
126 changes: 126 additions & 0 deletions noeldekegpt/settings.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,126 @@
"""
Django settings for noeldekegpt project.
Generated by 'django-admin startproject' using Django 5.0.
For more information on this file, see
https://docs.djangoproject.com/en/5.0/topics/settings/
For the full list of settings and their values, see
https://docs.djangoproject.com/en/5.0/ref/settings/
"""

from pathlib import Path

# Build paths inside the project like this: BASE_DIR / 'subdir'.
BASE_DIR = Path(__file__).resolve().parent.parent


# Quick-start development settings - unsuitable for production
# See https://docs.djangoproject.com/en/5.0/howto/deployment/checklist/

# SECURITY WARNING: keep the secret key used in production secret!
SECRET_KEY = 'django-insecure-15ub0v16g25elwig-mo939uzuz&&engejpixili-yxy-diig6='

# SECURITY WARNING: don't run with debug turned on in production!
DEBUG = True

ALLOWED_HOSTS = []


# Application definition

INSTALLED_APPS = [
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
'chat',
]

OPENAI_API_KEY = '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'

MIDDLEWARE = [
'django.middleware.security.SecurityMiddleware',
'django.contrib.sessions.middleware.SessionMiddleware',
'django.middleware.common.CommonMiddleware',
'django.middleware.csrf.CsrfViewMiddleware',
'django.contrib.auth.middleware.AuthenticationMiddleware',
'django.contrib.messages.middleware.MessageMiddleware',
'django.middleware.clickjacking.XFrameOptionsMiddleware',
]

ROOT_URLCONF = 'noeldekegpt.urls'

TEMPLATES = [
{
'BACKEND': 'django.template.backends.django.DjangoTemplates',
'DIRS': [],
'APP_DIRS': True,
'OPTIONS': {
'context_processors': [
'django.template.context_processors.debug',
'django.template.context_processors.request',
'django.contrib.auth.context_processors.auth',
'django.contrib.messages.context_processors.messages',
],
},
},
]

WSGI_APPLICATION = 'noeldekegpt.wsgi.application'


# Database
# https://docs.djangoproject.com/en/5.0/ref/settings/#databases

DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': BASE_DIR / 'db.sqlite3',
}
}


# Password validation
# https://docs.djangoproject.com/en/5.0/ref/settings/#auth-password-validators

AUTH_PASSWORD_VALIDATORS = [
{
'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator',
},
{
'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator',
},
{
'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator',
},
{
'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator',
},
]


# Internationalization
# https://docs.djangoproject.com/en/5.0/topics/i18n/

LANGUAGE_CODE = 'en-us'

TIME_ZONE = 'UTC'

USE_I18N = True

USE_TZ = True


# Static files (CSS, JavaScript, Images)
# https://docs.djangoproject.com/en/5.0/howto/static-files/

STATIC_URL = 'static/'

# Default primary key field type
# https://docs.djangoproject.com/en/5.0/ref/settings/#default-auto-field

DEFAULT_AUTO_FIELD = 'django.db.models.BigAutoField'
23 changes: 23 additions & 0 deletions noeldekegpt/urls.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
"""
URL configuration for noeldekegpt project.
The `urlpatterns` list routes URLs to views. For more information please see:
https://docs.djangoproject.com/en/5.0/topics/http/urls/
Examples:
Function views
1. Add an import: from my_app import views
2. Add a URL to urlpatterns: path('', views.home, name='home')
Class-based views
1. Add an import: from other_app.views import Home
2. Add a URL to urlpatterns: path('', Home.as_view(), name='home')
Including another URLconf
1. Import the include() function: from django.urls import include, path
2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
"""
from django.contrib import admin
from django.urls import path, include

urlpatterns = [
path('admin/', admin.site.urls),
path('', include('chat.urls')),
]
16 changes: 16 additions & 0 deletions noeldekegpt/wsgi.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
"""
WSGI config for noeldekegpt project.
It exposes the WSGI callable as a module-level variable named ``application``.
For more information on this file, see
https://docs.djangoproject.com/en/5.0/howto/deployment/wsgi/
"""

import os

from django.core.wsgi import get_wsgi_application

os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'noeldekegpt.settings')

application = get_wsgi_application()

0 comments on commit 84257b0

Please sign in to comment.